1.4.3 #38

Merged
Hesham merged 25 commits from release/1.4.3 into master 2018-12-21 22:19:53 +01:00
Showing only changes of commit 035d9979d1 - Show all commits

View File

@ -97,7 +97,7 @@ namespace OWTrack
//Searches all drives (too long) //Searches all drives (too long)
//foreach (var drive in driveInfo) //foreach (var drive in driveInfo)
//{ //{
//paths.AddRange(GetFiles(drive.ToString(),"Overwatch.exe")); //paths.AddRange(GetFiles(drive.ToString(),"Overwatch.exe"));
//} //}
paths.AddRange(GetFiles(Paths.ProgramFiles.C, "Overwatch.exe")); paths.AddRange(GetFiles(Paths.ProgramFiles.C, "Overwatch.exe"));
paths.AddRange(GetFiles(Paths.ProgramFiles.D, "Overwatch.exe")); paths.AddRange(GetFiles(Paths.ProgramFiles.D, "Overwatch.exe"));
@ -119,7 +119,7 @@ namespace OWTrack
} }
catch (Exception e) catch (Exception e)
{ {
MessageBox.Show(e.Message); MessageBox.Show(e.Message);
return false; return false;
} }
} }
@ -151,13 +151,13 @@ namespace OWTrack
class Settings class Settings
{ {
public bool TrackSR, TrackOW = true; public bool TrackSR, TrackOW = true;
public string GamePath = ""; public string GamePath = "";
/// <summary> /// <summary>
/// Reset All values to defult /// Reset All values to defult
/// </summary> /// </summary>
public void Reset() public void Reset()
{ {
TrackOW = true; TrackOW = true;
TrackSR = true; TrackSR = true;
@ -170,7 +170,7 @@ namespace OWTrack
public int TotalMatches; public int TotalMatches;
public int SkillChange; public int SkillChange;
public int StartSR; public int StartSR;
List<Match> Matches = new List<Math>(); List<Match> Matches = new List<Match>();
DateTime date; DateTime date;
/// <summary> /// <summary>