v1.7 Released

Minor Bug Fix...
This commit is contained in:
Paolo 2018-10-24 10:19:46 +02:00 committed by GitHub
commit eff9c84b80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 17 additions and 5 deletions

View file

@ -200,7 +200,7 @@
this.MinimumSize = new System.Drawing.Size(448, 122); this.MinimumSize = new System.Drawing.Size(448, 122);
this.Name = "Form1"; this.Name = "Form1";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Win 1337 Apply Patch File v1.6..."; this.Text = "Win 1337 Apply Patch File v1.7...";
this.Load += new System.EventHandler(this.DFoX_Load); this.Load += new System.EventHandler(this.DFoX_Load);
this.ResumeLayout(false); this.ResumeLayout(false);
this.PerformLayout(); this.PerformLayout();

View file

@ -58,12 +58,18 @@ namespace Win_1337_Patch
Properties.Settings.Default["urlexe"] = exe; Properties.Settings.Default["urlexe"] = exe;
Properties.Settings.Default.Save(); Properties.Settings.Default.Save();
} }
else
{
t1337.Text = "Select .1337 File...";
f1337 = String.Empty;
}
} }
} }
catch catch
{ {
return; //Nothing;
} }
return;
} }
private void t1337_DragEnter(object sender, DragEventArgs e) private void t1337_DragEnter(object sender, DragEventArgs e)
@ -102,11 +108,17 @@ namespace Win_1337_Patch
Properties.Settings.Default["urlexe"] = exe; Properties.Settings.Default["urlexe"] = exe;
Properties.Settings.Default.Save(); Properties.Settings.Default.Save();
} }
else
{
t1337.Text = "Select .1337 File...";
f1337 = String.Empty;
}
} }
catch catch
{ {
return; //Nothing;
} }
return;
} }
private void Esci_Click(object sender, EventArgs e) private void Esci_Click(object sender, EventArgs e)
{ {

View file

@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// È possibile specificare tutti i valori oppure impostare valori predefiniti per i numeri relativi alla revisione e alla build // È possibile specificare tutti i valori oppure impostare valori predefiniti per i numeri relativi alla revisione e alla build
// usando l'asterisco '*' come illustrato di seguito: // usando l'asterisco '*' come illustrato di seguito:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.6.0.0")] [assembly: AssemblyVersion("1.7.0.0")]
[assembly: AssemblyFileVersion("1.6.0.0")] [assembly: AssemblyFileVersion("1.7.0.0")]