From 6bdf74689c331a6e84002f2899614615bc07639d Mon Sep 17 00:00:00 2001 From: Alexey Golub Date: Thu, 11 Apr 2019 23:12:37 +0300 Subject: [PATCH] Update version --- Changelog.md | 6 ++++++ Deploy/Choco/osuhelper.nuspec | 2 +- Deploy/Choco/tools/chocolateyinstall.ps1 | 2 +- OsuHelper/Properties/AssemblyInfo.cs | 4 ++-- OsuHelper/Services/UpdateService.cs | 2 +- 5 files changed, 11 insertions(+), 5 deletions(-) diff --git a/Changelog.md b/Changelog.md index 028d708..bb34d01 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,9 @@ +### v2.0.3 (11-Apr-2019) + +- Improved render quality of beatmap images. +- Current progress is now also shown in the taskbar. +- Fixed an issue where popup dialog would sometimes appear over other windows. + ### v2.0.2 (15-Apr-2018) - Implemented application auto-update (can be disabled in settings). diff --git a/Deploy/Choco/osuhelper.nuspec b/Deploy/Choco/osuhelper.nuspec index 6228405..aee4521 100644 --- a/Deploy/Choco/osuhelper.nuspec +++ b/Deploy/Choco/osuhelper.nuspec @@ -3,7 +3,7 @@ osuhelper OsuHelper - 2.0.2 + 2.0.3 Tyrrrz Tyrrrz Copyright (C) Alexey Golub diff --git a/Deploy/Choco/tools/chocolateyinstall.ps1 b/Deploy/Choco/tools/chocolateyinstall.ps1 index 4a2021f..bbb7a82 100644 --- a/Deploy/Choco/tools/chocolateyinstall.ps1 +++ b/Deploy/Choco/tools/chocolateyinstall.ps1 @@ -6,7 +6,7 @@ $installDirPath = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" $packageArgs = @{ packageName = $packageName unzipLocation = $installDirPath - url = 'https://github.com/Tyrrrz/OsuHelper/releases/download/2.0.2/osu.helper.zip' + url = 'https://github.com/Tyrrrz/OsuHelper/releases/download/2.0.3/OsuHelper.zip' } Install-ChocolateyZipPackage @packageArgs diff --git a/OsuHelper/Properties/AssemblyInfo.cs b/OsuHelper/Properties/AssemblyInfo.cs index 4f80e2b..4514562 100644 --- a/OsuHelper/Properties/AssemblyInfo.cs +++ b/OsuHelper/Properties/AssemblyInfo.cs @@ -12,5 +12,5 @@ [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] [assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDictionaryLocation.SourceAssembly)] -[assembly: AssemblyVersion("2.0.2")] -[assembly: AssemblyFileVersion("2.0.2")] +[assembly: AssemblyVersion("2.0.3")] +[assembly: AssemblyFileVersion("2.0.3")] diff --git a/OsuHelper/Services/UpdateService.cs b/OsuHelper/Services/UpdateService.cs index 332edc0..7490ebf 100644 --- a/OsuHelper/Services/UpdateService.cs +++ b/OsuHelper/Services/UpdateService.cs @@ -11,7 +11,7 @@ public class UpdateService private readonly SettingsService _settingsService; private readonly IUpdateManager _updateManager = new UpdateManager( - new GithubPackageResolver("Tyrrrz", "OsuHelper", "osu.helper.zip"), + new GithubPackageResolver("Tyrrrz", "OsuHelper", "OsuHelper.zip"), new ZipPackageExtractor()); private Version _updateVersion;