diff --git a/osu-framework b/osu-framework index e776f6f272..eae237f6a7 160000 --- a/osu-framework +++ b/osu-framework @@ -1 +1 @@ -Subproject commit e776f6f2729bbe93206c4e8c089eeca57522fcf7 +Subproject commit eae237f6a7e2a6e7d7c621b2382bb08de2b470b8 diff --git a/osu.Desktop/Overlays/VersionManager.cs b/osu.Desktop/Overlays/VersionManager.cs index a3648e1f12..f941401f43 100644 --- a/osu.Desktop/Overlays/VersionManager.cs +++ b/osu.Desktop/Overlays/VersionManager.cs @@ -47,6 +47,10 @@ namespace osu.Desktop.Overlays private async void updateChecker() { updateManager = await UpdateManager.GitHubUpdateManager(@"https://github.com/ppy/osu", @"osulazer", null, null, true); + + if (!updateManager.IsInstalledApp) + return; + var info = await updateManager.CheckForUpdate(); if (info.ReleasesToApply.Count > 0) { diff --git a/osu.Desktop/Properties/AssemblyInfo.cs b/osu.Desktop/Properties/AssemblyInfo.cs index d7391080a6..1f234d2993 100644 --- a/osu.Desktop/Properties/AssemblyInfo.cs +++ b/osu.Desktop/Properties/AssemblyInfo.cs @@ -22,5 +22,5 @@ using System.Runtime.InteropServices; // The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("55e28cb2-7b6c-4595-8dcc-9871d8aad7e9")] -[assembly: AssemblyVersion("0.0.3")] -[assembly: AssemblyFileVersion("0.0.3")] +[assembly: AssemblyVersion("0.0.5")] +[assembly: AssemblyFileVersion("0.0.5")]