Skip to content
This repository has been archived by the owner on Jul 16, 2023. It is now read-only.

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyrrrz committed Apr 11, 2019
1 parent c5d62e7 commit 6bdf746
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
2 changes: 1 addition & 1 deletion Deploy/Choco/osuhelper.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>osuhelper</id>
<title>OsuHelper</title>
<version>2.0.2</version>
<version>2.0.3</version>
<owners>Tyrrrz</owners>
<authors>Tyrrrz</authors>
<copyright>Copyright (C) Alexey Golub</copyright>
Expand Down
2 changes: 1 addition & 1 deletion Deploy/Choco/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions OsuHelper/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
2 changes: 1 addition & 1 deletion OsuHelper/Services/UpdateService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 6bdf746

Please sign in to comment.