Skip to content

Commit

Permalink
Release v1.5.0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
RevoLand committed Dec 27, 2018
1 parent 7d2b97a commit 665f0bc
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
Binary file modified Binaries/Steam Library Manager.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion Binaries/Version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.0.13|Movement speed improvements
1.5.0.14|Locale selection support for Origin game installation
2 changes: 1 addition & 1 deletion Binaries/Version.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<item>
<version>1.5.0.14</version>
<url>http://github.com/RevoLand/Steam-Library-Manager/releases/download/v1.5.0.13/Steam.Library.Manager.zip</url>
<url>http://github.com/RevoLand/Steam-Library-Manager/releases/download/v1.5.0.14/Steam.Library.Manager.zip</url>
<changelog>https://github.com/RevoLand/Steam-Library-Manager/releases</changelog>
<mandatory>false</mandatory>
</item>
3 changes: 3 additions & 0 deletions Source/Steam Library Manager/Forms/Main.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ private void UpdateBindings()
{
try
{
System.Net.ServicePointManager.SecurityProtocol = (System.Net.SecurityProtocolType)3072;
Definitions.SLM.RavenClient.Release = System.Windows.Forms.Application.ProductVersion;

FormAccessor = this;
Properties.Settings.Default.SearchText = "";

Expand All @@ -57,6 +59,7 @@ private void UpdateBindings()

private void MainForm_Loaded(object sender, RoutedEventArgs e)
{
AutoUpdaterDotNET.AutoUpdater.ReportErrors = true;
Functions.SLM.OnLoad();

SettingsView.GeneralSettingsGroupBox.DataContext = new Definitions.Settings();
Expand Down
8 changes: 6 additions & 2 deletions Source/Steam Library Manager/Functions/Updater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,12 @@ internal static class Updater
{
public static void CheckForUpdates()
{
AutoUpdater.Start(Definitions.Updater.VersionControlURL);
AutoUpdater.ShowUpdateForm();
try
{
AutoUpdater.Start(Definitions.Updater.VersionControlURL, System.Windows.Application.ResourceAssembly);
AutoUpdater.ShowUpdateForm();
}
catch { }
}
}
}

0 comments on commit 665f0bc

Please sign in to comment.