From 04e35a12b884d72a38189ef88ce37ee7ab91153d Mon Sep 17 00:00:00 2001 From: namazso Date: Tue, 9 Jul 2024 17:09:00 +0200 Subject: [PATCH] Update InnoSetup script --- installer.iss | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/installer.iss b/installer.iss index c6b3d918..3f7a6c4c 100644 --- a/installer.iss +++ b/installer.iss @@ -52,8 +52,8 @@ VersionInfoProductTextVersion={#CI_VERSION} VersionInfoVersion={#CI_VERSION_NUMERIC} ChangesAssociations=yes UninstallDisplayIcon={app}\OpenHashTab.dll,0 -ArchitecturesAllowed=x64 arm64 -ArchitecturesInstallIn64BitMode=x64 arm64 +ArchitecturesAllowed=win64 +ArchitecturesInstallIn64BitMode=win64 #ifdef SIGN SignTool=signtool $f SignedUninstaller=yes @@ -185,7 +185,6 @@ begin case ProcessorArchitecture of paX86: Result := Arch = 'x86'; paX64: Result := (Arch = 'x64') or (Arch = 'wow'); - paIA64: Result := (Arch = 'ia64') or (Arch = 'wow'); paARM64: Result := (Arch = 'arm64') or (Arch = 'wow'); end; end;