Skip to content

Commit 305107c

Browse files
committed
add extra checks for user settings and bump version to release
1 parent faa50f9 commit 305107c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Ps3DiscDumper/Dumper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ namespace Ps3DiscDumper
2626
{
2727
public class Dumper: IDisposable
2828
{
29-
public const string Version = "3.3.2b2";
29+
public const string Version = "3.3.2";
3030

3131
private static readonly Regex VersionParts = new Regex(@"(?<ver>\d+(\.\d+){0,2})[ \-]*(?<pre>.*)", RegexOptions.Singleline | RegexOptions.ExplicitCapture);
3232
private static readonly HashSet<char> InvalidChars = new(Path.GetInvalidFileNameChars().Concat(Path.GetInvalidPathChars()));

UI.WinForms.Msil/Forms/MainForm.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,9 @@ private void MainForm_Load(object sender, EventArgs e)
107107
updateCheckWorker.DoWork += (o, evtArgs) => evtArgs.Result = Dumper.CheckUpdatesAsync().ConfigureAwait(false).GetAwaiter().GetResult();
108108
updateCheckWorker.RunWorkerCompleted += ShowUpdateCheckResults;
109109
updateCheckWorker.RunWorkerAsync();
110+
111+
if (string.IsNullOrEmpty(settings.OutputDir) || string.IsNullOrEmpty(settings.IrdDir) || string.IsNullOrWhiteSpace(settings.DumpNameTemplate))
112+
settingsButton_Click(sender, e);
110113
}
111114

112115
private void settingsButton_Click(object sender, EventArgs e)

0 commit comments

Comments
 (0)