diff --git a/CHANGELOG.md b/CHANGELOG.md index ad6e2ac..7b840d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/source/CemuLauncher/Properties/AssemblyInfo.cs b/source/CemuLauncher/Properties/AssemblyInfo.cs index 9722253..89867b1 100644 --- a/source/CemuLauncher/Properties/AssemblyInfo.cs +++ b/source/CemuLauncher/Properties/AssemblyInfo.cs @@ -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")] diff --git a/source/CemuLauncher/frmMain.cs b/source/CemuLauncher/frmMain.cs index eafb4ac..e237bf4 100644 --- a/source/CemuLauncher/frmMain.cs +++ b/source/CemuLauncher/frmMain.cs @@ -393,7 +393,8 @@ private bool CemuLauncherIsUpdated() { onlineVersion = reader.ReadToEnd(); } - return (Application.ProductVersion == onlineVersion); + + return (Application.ProductVersion.Trim() == onlineVersion.Trim()); } catch { diff --git a/version b/version index a6bbdb5..db70057 100644 --- a/version +++ b/version @@ -1 +1 @@ -1.1.0.0 +1.2.0.0