From 6bc5381562f9eb12c0adc3f150ac0baff22dfde1 Mon Sep 17 00:00:00 2001 From: "j.foucher" Date: Sat, 2 May 2026 09:54:05 +0200 Subject: [PATCH] installer: use x64 (Inno Setup 6.0+) instead of x64compatible (6.3+) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The value x64compatible was added in Inno Setup 6.3 — earlier 6.x versions reject it with "Value of [Setup] section directive ArchitecturesAllowed is invalid". Using plain x64 keeps compatibility with the whole 6.x line. Modern users on 6.3+ are still happy since x64 still resolves correctly there. Co-Authored-By: Claude Opus 4.7 (1M context) --- installer/PSLauncher.iss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/PSLauncher.iss b/installer/PSLauncher.iss index 7d1f29a..c537ceb 100644 --- a/installer/PSLauncher.iss +++ b/installer/PSLauncher.iss @@ -39,8 +39,8 @@ SolidCompression=yes WizardStyle=modern PrivilegesRequired=admin PrivilegesRequiredOverridesAllowed=dialog -ArchitecturesAllowed=x64compatible -ArchitecturesInstallIn64BitMode=x64compatible +ArchitecturesAllowed=x64 +ArchitecturesInstallIn64BitMode=x64 UninstallDisplayName={#MyAppName} UninstallDisplayIcon={app}\{#MyAppExeName} VersionInfoVersion={#MyAppVersion}