installer: use x64 (Inno Setup 6.0+) instead of x64compatible (6.3+)
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) <noreply@anthropic.com>
This commit is contained in:
@@ -39,8 +39,8 @@ SolidCompression=yes
|
|||||||
WizardStyle=modern
|
WizardStyle=modern
|
||||||
PrivilegesRequired=admin
|
PrivilegesRequired=admin
|
||||||
PrivilegesRequiredOverridesAllowed=dialog
|
PrivilegesRequiredOverridesAllowed=dialog
|
||||||
ArchitecturesAllowed=x64compatible
|
ArchitecturesAllowed=x64
|
||||||
ArchitecturesInstallIn64BitMode=x64compatible
|
ArchitecturesInstallIn64BitMode=x64
|
||||||
UninstallDisplayName={#MyAppName}
|
UninstallDisplayName={#MyAppName}
|
||||||
UninstallDisplayIcon={app}\{#MyAppExeName}
|
UninstallDisplayIcon={app}\{#MyAppExeName}
|
||||||
VersionInfoVersion={#MyAppVersion}
|
VersionInfoVersion={#MyAppVersion}
|
||||||
|
|||||||
Reference in New Issue
Block a user