Update InnoSetup files (#1988)

* inno: update visual style to modern; support hidpi

* inno: fix add to PATH and add banner images

* inno: fix arch specification and default to x64compatible

* scripts: actually use x64compatible in package-innosetup.sh

* inno: fix unsupported windows warning

* gitignore: add trailing newline

(cherry picked from commit 819fa9d30e2c0e737fad519fbff63ce2baff4456)
This commit is contained in:
Takase
2025-05-18 22:55:29 +08:00
committed by takase1121
parent 590367a6e5
commit 1ada01e7b0
15 changed files with 123 additions and 12 deletions
+2 -2
View File
@@ -31,11 +31,11 @@ main() {
case "$MSYSTEM" in
MINGW64|UCRT64|CLANG64)
arch=x64
arch=x64compatible
arch_file=x86_64
;;
MINGW32|CLANG32)
arch=x86
arch=x86compatible
arch_file=i686
;;
CLANGARM64)