diff --git a/Common/src/constants.h b/Common/src/constants.h index d128b91..aef6dd3 100644 --- a/Common/src/constants.h +++ b/Common/src/constants.h @@ -1,6 +1,6 @@ #pragma once -constexpr auto VERSION = "1.3.1"; +constexpr auto VERSION = "1.3.2"; constexpr auto INTEGRATION_64 = L"Integration64.dll"; constexpr auto INTEGRATION_32 = L"Integration32.dll"; diff --git a/Integration/src/dllmain.cpp b/Integration/src/dllmain.cpp index 43c1726..7fdf9ef 100644 --- a/Integration/src/dllmain.cpp +++ b/Integration/src/dllmain.cpp @@ -20,7 +20,7 @@ void init(HMODULE hModule) for(const auto& [key, platform] : config->platforms) { - if(stringsAreEqual(currentProcess, platform.process)) + if(stringsAreEqual(currentProcess, platform.process, true)) { logger->info("Target platform detected: {}", platform.process); diff --git a/inno_setup.iss b/inno_setup.iss index 305234b..7485259 100644 --- a/inno_setup.iss +++ b/inno_setup.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "Koalageddon" -#define MyAppVersion "1.3.1" +#define MyAppVersion "1.3.2" #define MyAppPublisher "acidicoala" #define MyAppURL "https://github.com/acidicoala/Koalageddon" #define MyAppExeName "IntegrationWizard32.exe" @@ -14,6 +14,7 @@ AppId={{42B0E81F-EF53-474B-B4A3-262EDC67D93A} AppName={#MyAppName} AppVersion={#MyAppVersion} +VersionInfoVersion={#MyAppVersion} ;AppVerName={#MyAppName} {#MyAppVersion} AppPublisher={#MyAppPublisher} AppPublisherURL={#MyAppURL}