finalized exe Track

This commit is contained in:
HeshamTB 2018-09-01 14:11:08 +03:00
parent bc83f16ab2
commit d6c9b23f19
3 changed files with 14 additions and 11 deletions

View File

@ -18,17 +18,18 @@ namespace OWTrack
InitializeComponent();
loadSave();
checkStatus();
label4.Text = Program.version.ToString();
Text = "OWTrack " + Program.version.ToString();
update();
label4.Text = Program.Version.ToString();
Text = "OWTrack " + Program.Version.ToString();
}
private void checkStatus()
{
Time.Text = DateTime.Now.ToString("h:mm tt");
status.Text = NOT_RUNNING;
status.ForeColor = Color.Red;
try
{
Time.Text = DateTime.Now.ToString("h:mm tt");
status.Text = NOT_RUNNING;
status.ForeColor = Color.Red;
if (tr.owRunning())
{
status.Text = IS_RUNNING;
@ -75,7 +76,7 @@ namespace OWTrack
}
}
void getGamePath()
private void getGamePath()
{
openFileDialog1.Title = "Select Overwatch.exe";
openFileDialog1.DefaultExt = "exe";
@ -86,7 +87,6 @@ namespace OWTrack
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
tr.gamePath = openFileDialog1.FileName;
MessageBox.Show(openFileDialog1.FileName);
}
}

View File

@ -22,7 +22,7 @@
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>12</ApplicationRevision>
<ApplicationRevision>13</ApplicationRevision>
<ApplicationVersion>1.2.3.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted>

View File

@ -11,7 +11,6 @@ namespace OWTrack
{
static class Program
{
//public static string Version = Application.ProductVersion;
/// <summary>
/// The main entry point for the application.
/// </summary>
@ -22,6 +21,10 @@ namespace OWTrack
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
public static Version version = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version;
public static string Version = "1.2.3";
//public static string Version = Application.ProductVersion;
//public static Version version = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version;
}
}