Skip to content

Commit

Permalink
Update to Source 3.3.0.3
Browse files Browse the repository at this point in the history
source code updated to 3.3.0.3 and added missing resource files thanks to JoseJohnen for reporting.
  • Loading branch information
gregstein committed May 10, 2019
1 parent 3e46ab1 commit df22b16
Show file tree
Hide file tree
Showing 278 changed files with 29,952 additions and 3,364 deletions.
12 changes: 6 additions & 6 deletions WindowsFormsApplication3/AoE2Tools.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace WindowsFormsApplication3
public partial class AoE2Tools : KryptonForm
{
private MessageBoxIcon _mbIcon = MessageBoxIcon.Information;
private MessageBoxIcon _mbIcon2 = MessageBoxIcon.Warning;
//private MessageBoxIcon _mbIcon2 = MessageBoxIcon.Warning;
private MessageBoxButtons _mbButtons = MessageBoxButtons.OK;
public const int WM_NCLBUTTONDOWN = 0xA1;
public const int HT_CAPTION = 0x2;
Expand Down Expand Up @@ -490,8 +490,8 @@ private void kryptonCheckButton3_Click(object sender, EventArgs e)
System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
startInfo.FileName = "cmd.exe";
startInfo.Arguments = "/c" + "\"" + Directory.GetCurrentDirectory() + "\\data\\perf\\mouse.exe" + "\"" + " -opt";
//File.WriteAllText(System.IO.Path.GetTempPath() + "\\e-m.bat", "\"" + Directory.GetCurrentDirectory() + "\\data\\perf\\mouse.exe" + "\"" + " -opt");
startInfo.Arguments = "/c" + "\"" + System.IO.Path.GetDirectoryName(Application.ExecutablePath) + "\\data\\perf\\mouse.exe" + "\"" + " -opt";
//File.WriteAllText(System.IO.Path.GetTempPath() + "\\e-m.bat", "\"" + System.IO.Path.GetDirectoryName(Application.ExecutablePath) + "\\data\\perf\\mouse.exe" + "\"" + " -opt");
startInfo.Verb = "runas";
process.StartInfo = startInfo;
process.Start();
Expand All @@ -518,8 +518,8 @@ private void kryptonCheckButton3_Click(object sender, EventArgs e)
System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
startInfo.FileName = "cmd.exe";
startInfo.Arguments = "/c" + "\"" + Directory.GetCurrentDirectory() + "\\data\\perf\\mouse.exe" + "\"" + " -unopt";
//File.WriteAllText(System.IO.Path.GetTempPath() + "\\e-m.bat", "\"" + Directory.GetCurrentDirectory() + "\\data\\perf\\mouse.exe" + "\"" + " -unopt");
startInfo.Arguments = "/c" + "\"" + System.IO.Path.GetDirectoryName(Application.ExecutablePath) + "\\data\\perf\\mouse.exe" + "\"" + " -unopt";
//File.WriteAllText(System.IO.Path.GetTempPath() + "\\e-m.bat", "\"" + System.IO.Path.GetDirectoryName(Application.ExecutablePath) + "\\data\\perf\\mouse.exe" + "\"" + " -unopt");
startInfo.Verb = "runas";
process.StartInfo = startInfo;
process.Start();
Expand Down Expand Up @@ -1545,7 +1545,7 @@ public void HDToTC_Check()
if (dialogResult == DialogResult.Yes)
{
//Invoke Mover
Process.Start(Directory.GetCurrentDirectory() + "\\AoE2Tools Mover.exe");
Process.Start(System.IO.Path.GetDirectoryName(Application.ExecutablePath) + "\\AoE2Tools Mover.exe");
}
else if (dialogResult == DialogResult.No)
{
Expand Down
16 changes: 14 additions & 2 deletions WindowsFormsApplication3/App.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>

<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /></startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Xml" publicKeyToken="b77a5c561934e089" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
225 changes: 134 additions & 91 deletions WindowsFormsApplication3/Conv.Designer.cs

Large diffs are not rendered by default.

435 changes: 332 additions & 103 deletions WindowsFormsApplication3/Conv.cs

Large diffs are not rendered by default.

248 changes: 248 additions & 0 deletions WindowsFormsApplication3/DrVoobly.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit df22b16

Please sign in to comment.