Skip to content

Commit

Permalink
Fixed platform name comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
acidicoala committed Apr 1, 2021
1 parent f7dcd0d commit b20c30e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 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";
Expand Down
2 changes: 1 addition & 1 deletion Integration/src/dllmain.cpp
Expand Up @@ -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);

Expand Down
3 changes: 2 additions & 1 deletion inno_setup.iss
Expand Up @@ -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"
Expand All @@ -14,6 +14,7 @@
AppId={{42B0E81F-EF53-474B-B4A3-262EDC67D93A}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
VersionInfoVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
Expand Down

0 comments on commit b20c30e

Please sign in to comment.