Skip to content

Commit 06bdc3e

Browse files
committed
Upgrade to Inno Setup 6
1 parent cf6a7b5 commit 06bdc3e

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

buildpkg.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
version=$(grep 'ccdcielver' src/u_global.pas |head -1| cut -d\' -f2)
44

55
builddir=/tmp/ccdciel # Be sure this is set to a non existent directory, it is removed after the run!
6-
innosetup="C:\Program Files (x86)\Inno Setup 5\ISCC.exe" # Install under Wine from http://www.jrsoftware.org/isinfo.php
6+
export WINEPREFIX=~/.wineinno6
7+
innosetup="C:\Program Files (x86)\Inno Setup 6\ISCC.exe" # Install under Wine from http://www.jrsoftware.org/isinfo.php
78
wine_build="Z:\tmp\ccdciel" # Change to match builddir, Z: is defined in ~/.wine/dosdevices
89

910
arch=$(arch)

system_integration/Windows/installer/ccdciel/ccdciel_32.iss

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ AppVerName=CCDciel V3
88
AppPublisherURL=http://sourceforge.net/projects/ccdciel
99
AppSupportURL=http://sourceforge.net/projects/ccdciel
1010
AppUpdatesURL=http://sourceforge.net/projects/ccdciel
11-
DefaultDirName={pf32}\CCDciel
11+
DefaultDirName={commonpf32}\CCDciel
1212
UsePreviousAppDir=false
1313
DefaultGroupName=CCDciel
1414
AllowNoIcons=true
@@ -21,6 +21,7 @@ Uninstallable=true
2121
UninstallLogMode=append
2222
DirExistsWarning=no
2323
ShowLanguageDialog=yes
24+
WizardStyle=modern
2425
AppID={{6570df38-f18f-11e4-9532-fb2d36b55e00}
2526

2627
[Tasks]
@@ -32,7 +33,7 @@ Source: Data\*; DestDir: {app}; Flags: ignoreversion recursesubdirs createallsub
3233

3334
[Icons]
3435
Name: {group}\CCDciel; Filename: {app}\ccdciel.exe; WorkingDir: {app}
35-
Name: {userdesktop}\CCDciel; Filename: {app}\ccdciel.exe; WorkingDir: {app}; Tasks: desktopicon
36+
Name: {commondesktop}\CCDciel; Filename: {app}\ccdciel.exe; WorkingDir: {app}; Tasks: desktopicon
3637

3738
[Code]
3839
{Uninstall previous version to avoid 32bit/64bit mismatch}

system_integration/Windows/installer/ccdciel/ccdciel_64.iss

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ AppVerName=CCDciel V3
99
AppPublisherURL=http://sourceforge.net/projects/ccdciel
1010
AppSupportURL=http://sourceforge.net/projects/ccdciel
1111
AppUpdatesURL=http://sourceforge.net/projects/ccdciel
12-
DefaultDirName={pf}\CCDciel
12+
DefaultDirName={commonpf64}\CCDciel
1313
UsePreviousAppDir=false
1414
DefaultGroupName=CCDciel
1515
AllowNoIcons=true
@@ -22,6 +22,7 @@ Uninstallable=true
2222
UninstallLogMode=append
2323
DirExistsWarning=no
2424
ShowLanguageDialog=yes
25+
WizardStyle=modern
2526
AppID={{6570df38-f18f-11e4-9532-fb2d36b55e00}
2627

2728
[Tasks]
@@ -33,7 +34,7 @@ Source: Data\*; DestDir: {app}; Flags: ignoreversion recursesubdirs createallsub
3334

3435
[Icons]
3536
Name: {group}\CCDciel; Filename: {app}\ccdciel.exe; WorkingDir: {app}
36-
Name: {userdesktop}\CCDciel; Filename: {app}\ccdciel.exe; WorkingDir: {app}; Tasks: desktopicon
37+
Name: {commondesktop}\CCDciel; Filename: {app}\ccdciel.exe; WorkingDir: {app}; Tasks: desktopicon
3738

3839
[Code]
3940
{Uninstall previous version to avoid 32bit/64bit mismatch}

system_integration/Windows/installer/ccdciel/ccdciel_dual.iss

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ AppPublisherURL=http://sourceforge.net/projects/ccdciel
88
AppSupportURL=http://sourceforge.net/projects/ccdciel
99
AppUpdatesURL=http://sourceforge.net/projects/ccdciel
1010
UsePreviousAppDir=true
11-
DefaultDirName={pf}\CCDciel
11+
DefaultDirName={commonpf}\CCDciel
1212
DefaultGroupName=CCDciel
1313
AllowNoIcons=true
1414
InfoBeforeFile=Presetup\readme.txt
@@ -20,6 +20,7 @@ Uninstallable=true
2020
UninstallLogMode=append
2121
DirExistsWarning=no
2222
ShowLanguageDialog=yes
23+
WizardStyle=modern
2324
AppID={{6570df38-f18f-11e4-9532-fb2d36b55e00}
2425
ArchitecturesInstallIn64BitMode=x64
2526

@@ -36,7 +37,7 @@ Source: Data\*; DestDir: {app}; Flags: ignoreversion recursesubdirs createallsub
3637

3738
[Icons]
3839
Name: {group}\CCDciel; Filename: {app}\ccdciel.exe; WorkingDir: {app}
39-
Name: {userdesktop}\CCDciel; Filename: {app}\ccdciel.exe; WorkingDir: {app}; Tasks: desktopicon
40+
Name: {commondesktop}\CCDciel; Filename: {app}\ccdciel.exe; WorkingDir: {app}; Tasks: desktopicon
4041

4142
[Code]
4243
{Uninstall 32bit version on 64bit system}

0 commit comments

Comments
 (0)