Skip to content

Commit

Permalink
1.2.0.0 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
amakvana committed Jan 16, 2021
1 parent 69fecde commit 3a020ea
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 1.2.0.0
* Bug fixes

## v1.1.0.0
* New Feature: Command Line Arguments now implemented to improvement compatibility with Emulation Frontends
* Improvement: Subtle UI tweaks
Expand Down
4 changes: 2 additions & 2 deletions source/CemuLauncher/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,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("1.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]
[assembly: AssemblyVersion("1.2.0.0")]
[assembly: AssemblyFileVersion("1.2.0.0")]
3 changes: 2 additions & 1 deletion source/CemuLauncher/frmMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,8 @@ private bool CemuLauncherIsUpdated()
{
onlineVersion = reader.ReadToEnd();
}
return (Application.ProductVersion == onlineVersion);

return (Application.ProductVersion.Trim() == onlineVersion.Trim());
}
catch
{
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0.0
1.2.0.0

0 comments on commit 3a020ea

Please sign in to comment.