Skip to content

Commit 0e7f752

Browse files
committed
Fix Inno Setup installer script
1 parent 1be0496 commit 0e7f752

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

scripts/installer.iss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,15 @@ PrivilegesRequiredOverridesAllowed=dialog
3232
OutputBaseFilename={#MyAppName}_{#MyAppVersion}_{#MyAppPlatform}_Setup
3333
Compression=lzma
3434
SolidCompression=yes
35-
WizardStyle=modern
35+
WizardStyle=modern dynamic
3636
CloseApplications=force
3737
LicenseFile=..\LICENSE
3838
OutputDir=..\dist
3939
RestartApplications=no
4040

4141
[Languages]
4242
Name: "english"; MessagesFile: "compiler:Default.isl"
43+
Name: "arabic"; MessagesFile: "compiler:Languages\Arabic.isl"
4344
Name: "armenian"; MessagesFile: "compiler:Languages\Armenian.isl"
4445
Name: "brazilianportuguese"; MessagesFile: "compiler:Languages\BrazilianPortuguese.isl"
4546
Name: "bulgarian"; MessagesFile: "compiler:Languages\Bulgarian.isl"
@@ -53,7 +54,6 @@ Name: "french"; MessagesFile: "compiler:Languages\French.isl"
5354
Name: "german"; MessagesFile: "compiler:Languages\German.isl"
5455
Name: "hebrew"; MessagesFile: "compiler:Languages\Hebrew.isl"
5556
Name: "hungarian"; MessagesFile: "compiler:Languages\Hungarian.isl"
56-
Name: "icelandic"; MessagesFile: "compiler:Languages\Icelandic.isl"
5757
Name: "italian"; MessagesFile: "compiler:Languages\Italian.isl"
5858
Name: "japanese"; MessagesFile: "compiler:Languages\Japanese.isl"
5959
Name: "korean"; MessagesFile: "compiler:Languages\Korean.isl"

scripts/package.ps1

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
$ErrorActionPreference = "Stop"
2+
13
if (-Not (Get-Command msbuild -ErrorAction SilentlyContinue)) {
24
Import-Module "$env:ProgramFiles\Microsoft Visual Studio\2022\Community\Common7\Tools\Microsoft.VisualStudio.DevShell.dll"
35
Enter-VsDevShell -VsInstallPath "$env:ProgramFiles\Microsoft Visual Studio\2022\Community"

0 commit comments

Comments
 (0)