diff --git a/MainWindow.xaml.cs b/MainWindow.xaml.cs index 89da8ed..0a5d2c4 100644 --- a/MainWindow.xaml.cs +++ b/MainWindow.xaml.cs @@ -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; } diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index 042ecf8..0d6c308 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -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")] diff --git a/Updater.cs b/Updater.cs index 886a901..f933ef7 100644 --- a/Updater.cs +++ b/Updater.cs @@ -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); }