win-installer: fix warnings
This commit is contained in:
parent
8cf4100c87
commit
9211b7b632
3 changed files with 4 additions and 3 deletions
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
[Setup]
|
[Setup]
|
||||||
AppID={{24BC8B57-716C-444F-B46B-A3349B9164C5}
|
AppID={{24BC8B57-716C-444F-B46B-A3349B9164C5}
|
||||||
DefaultDirName={pf}\Aegisub
|
DefaultDirName={commonpf}\Aegisub
|
||||||
PrivilegesRequired=poweruser
|
PrivilegesRequired=poweruser
|
||||||
ArchitecturesInstallIn64BitMode=x64
|
ArchitecturesInstallIn64BitMode=x64
|
||||||
ArchitecturesAllowed=x64
|
ArchitecturesAllowed=x64
|
||||||
|
@ -41,7 +41,7 @@ begin
|
||||||
|
|
||||||
if CurStep = ssPostInstall then
|
if CurStep = ssPostInstall then
|
||||||
begin
|
begin
|
||||||
if IsTaskSelected('checkforupdates') then
|
if WizardIsTaskSelected('checkforupdates') then
|
||||||
Updates := 'true'
|
Updates := 'true'
|
||||||
else
|
else
|
||||||
Updates := 'false';
|
Updates := 'false';
|
||||||
|
|
|
@ -31,7 +31,7 @@ end;
|
||||||
function InitializeSetupMigration: Boolean;
|
function InitializeSetupMigration: Boolean;
|
||||||
begin
|
begin
|
||||||
LegacyStartMenuFolder := 'Aegisub';
|
LegacyStartMenuFolder := 'Aegisub';
|
||||||
LegacyInstallFolder := ExpandConstant('{pf}\Aegisub');
|
LegacyInstallFolder := ExpandConstant('{commonpf32}\Aegisub');
|
||||||
LegacyVersionNumber := '1.x';
|
LegacyVersionNumber := '1.x';
|
||||||
|
|
||||||
try
|
try
|
||||||
|
|
|
@ -28,6 +28,7 @@ UsePreviousGroup=yes
|
||||||
UsePreviousSetupType=no
|
UsePreviousSetupType=no
|
||||||
UsePreviousAppDir=yes
|
UsePreviousAppDir=yes
|
||||||
UsePreviousTasks=no
|
UsePreviousTasks=no
|
||||||
|
UsedUserAreasWarning=no
|
||||||
UninstallDisplayIcon={app}\aegisub{#ARCH}.exe
|
UninstallDisplayIcon={app}\aegisub{#ARCH}.exe
|
||||||
; Default to a large welcome bitmap, suitable for large fonts
|
; Default to a large welcome bitmap, suitable for large fonts
|
||||||
; The normal fonts version is selected by code below
|
; The normal fonts version is selected by code below
|
||||||
|
|
Loading…
Reference in a new issue