File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff 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 ( ) ) ) ;
Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments