Check for Tequila.exe instead of icon.exe in the installation path. Version 1.0.0.20.

Reverted size change on the Settings window.
This commit is contained in:
Leandro Pardini
2016-07-26 13:09:35 -03:00
parent 19bafe02b6
commit 8980ebc07a
3 changed files with 4 additions and 4 deletions

View File

@@ -13,7 +13,7 @@ namespace Tequila
public static bool SetupNeeded {
get {
return GamePath == "" || !File.Exists(Path.Combine(GamePath, "icon.exe"));
return GamePath == "" || !File.Exists(Path.Combine(GamePath, "Tequila.exe"));
}
}

View File

@@ -279,7 +279,7 @@
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnOK;
this.ClientSize = new System.Drawing.Size(384, 384);
this.ClientSize = new System.Drawing.Size(384, 362);
this.ControlBox = false;
this.Controls.Add(this.groupBox4);
this.Controls.Add(this.groupBox3);

View File

@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.19")]
[assembly: AssemblyFileVersion("1.0.0.19")]
[assembly: AssemblyVersion("1.0.0.20")]
[assembly: AssemblyFileVersion("1.0.0.20")]