Skip to content

Commit

Permalink
Merge pull request #6 from ToddButler93/master
Browse files Browse the repository at this point in the history
2.1.1 Release
  • Loading branch information
ToddButler93 authored Mar 20, 2022
2 parents 328d189 + 31c91c3 commit 5f0d6f6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public LocalPackage SelectedPackage

private Config LauncherConfig { get => DataModel.LauncherConfig; }

public static SemanticVersion LauncherVersion { get; } = SemanticVersion.Parse("2.0.0");
public static SemanticVersion LauncherVersion { get; } = SemanticVersion.Parse("2.1.1");

System.Timers.Timer AutoInjectTimer { get; set; }

Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@
// 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("2.1.0.0")]
[assembly: AssemblyFileVersion("2.1.0.0")]
[assembly: AssemblyVersion("2.1.1.0")]
[assembly: AssemblyFileVersion("2.1.1.0")]
2 changes: 2 additions & 0 deletions Updater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ public string DownloadObjectAsString(string key)

public async Task DownloadObjectToFile(string key, string filePath)
{
// Probably could put this elsewhere but good enough
webClient.Proxy = GlobalProxySelection.GetEmptyWebProxy();
await webClient.DownloadFileTaskAsync($"{baseUrl}/{key}", filePath);
}

Expand Down

0 comments on commit 5f0d6f6

Please sign in to comment.