finalized exe Track
This commit is contained in:
parent
bc83f16ab2
commit
d6c9b23f19
@ -18,17 +18,18 @@ namespace OWTrack
|
|||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
loadSave();
|
loadSave();
|
||||||
checkStatus();
|
checkStatus();
|
||||||
label4.Text = Program.version.ToString();
|
update();
|
||||||
Text = "OWTrack " + Program.version.ToString();
|
label4.Text = Program.Version.ToString();
|
||||||
|
Text = "OWTrack " + Program.Version.ToString();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void checkStatus()
|
private void checkStatus()
|
||||||
{
|
{
|
||||||
Time.Text = DateTime.Now.ToString("h:mm tt");
|
|
||||||
status.Text = NOT_RUNNING;
|
|
||||||
status.ForeColor = Color.Red;
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
Time.Text = DateTime.Now.ToString("h:mm tt");
|
||||||
|
status.Text = NOT_RUNNING;
|
||||||
|
status.ForeColor = Color.Red;
|
||||||
if (tr.owRunning())
|
if (tr.owRunning())
|
||||||
{
|
{
|
||||||
status.Text = IS_RUNNING;
|
status.Text = IS_RUNNING;
|
||||||
@ -75,7 +76,7 @@ namespace OWTrack
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void getGamePath()
|
private void getGamePath()
|
||||||
{
|
{
|
||||||
openFileDialog1.Title = "Select Overwatch.exe";
|
openFileDialog1.Title = "Select Overwatch.exe";
|
||||||
openFileDialog1.DefaultExt = "exe";
|
openFileDialog1.DefaultExt = "exe";
|
||||||
@ -86,7 +87,6 @@ namespace OWTrack
|
|||||||
if (openFileDialog1.ShowDialog() == DialogResult.OK)
|
if (openFileDialog1.ShowDialog() == DialogResult.OK)
|
||||||
{
|
{
|
||||||
tr.gamePath = openFileDialog1.FileName;
|
tr.gamePath = openFileDialog1.FileName;
|
||||||
MessageBox.Show(openFileDialog1.FileName);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
<UpdatePeriodically>false</UpdatePeriodically>
|
<UpdatePeriodically>false</UpdatePeriodically>
|
||||||
<UpdateRequired>false</UpdateRequired>
|
<UpdateRequired>false</UpdateRequired>
|
||||||
<MapFileExtensions>true</MapFileExtensions>
|
<MapFileExtensions>true</MapFileExtensions>
|
||||||
<ApplicationRevision>12</ApplicationRevision>
|
<ApplicationRevision>13</ApplicationRevision>
|
||||||
<ApplicationVersion>1.2.3.%2a</ApplicationVersion>
|
<ApplicationVersion>1.2.3.%2a</ApplicationVersion>
|
||||||
<UseApplicationTrust>false</UseApplicationTrust>
|
<UseApplicationTrust>false</UseApplicationTrust>
|
||||||
<PublishWizardCompleted>true</PublishWizardCompleted>
|
<PublishWizardCompleted>true</PublishWizardCompleted>
|
||||||
|
@ -11,7 +11,6 @@ namespace OWTrack
|
|||||||
{
|
{
|
||||||
static class Program
|
static class Program
|
||||||
{
|
{
|
||||||
//public static string Version = Application.ProductVersion;
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The main entry point for the application.
|
/// The main entry point for the application.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -22,6 +21,10 @@ namespace OWTrack
|
|||||||
Application.SetCompatibleTextRenderingDefault(false);
|
Application.SetCompatibleTextRenderingDefault(false);
|
||||||
Application.Run(new Form1());
|
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;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user