Skip to content

Commit 3e04db0

Browse files
committed
Prepare the NSIS script for 4.7
1 parent fb60be1 commit 3e04db0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

wininst/developer_scripts/script_cgal.nsi

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
!include "script_cgal.nsh"
3131

32-
!define CGAL_SRC "CGAL-4.6"
32+
!define CGAL_SRC "CGAL-4.7"
3333
!define FTP_SRC "https://cgal.geometryfactory.com/CGAL/precompiled_libs/"
3434

3535
;--------------------------------
@@ -45,7 +45,7 @@
4545
OutFile "${CGAL_SRC}-Setup.exe"
4646
!endif
4747

48-
;Default installation folder: C:\Program Files\CGAL-4.6
48+
;Default installation folder: C:\Program Files\CGAL-4.7
4949
; See also .onInit
5050
Installdir ""
5151

@@ -55,12 +55,12 @@
5555

5656
BrandingText "The CGAL Project and GeometryFactory - Installer created with NSIS."
5757

58-
VIProductVersion "4.6.0.0"
58+
VIProductVersion "4.7.0.0"
5959
VIAddVersionKey "ProductName" "CGAL Windows Installer"
6060
VIAddVersionKey "CompanyName" "The CGAL Project and GeometryFactory"
6161
VIAddVersionKey "LegalCopyright" "© The CGAL Project and GeometryFactory"
6262
VIAddVersionKey "FileDescription" "Windows Installer for CGAL"
63-
VIAddVersionKey "FileVersion" "4.6"
63+
VIAddVersionKey "FileVersion" "4.7"
6464

6565
;--------------------------------
6666
; Variables
@@ -181,7 +181,7 @@ Section "!Main CGAL" MAIN_Idx
181181
; Write uninstall informations
182182
; http://nsis.sourceforge.net/Add_uninstall_information_to_Add/Remove_Programs
183183
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${CGAL_SRC}" \
184-
"DisplayName" "${CGAL_SRC} -- Computational Geometry Algorithms Library, version 4.6"
184+
"DisplayName" "${CGAL_SRC} -- Computational Geometry Algorithms Library, version 4.7"
185185
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${CGAL_SRC}" \
186186
"UninstallString" "$\"$INSTDIR\Uninstall.exe$\""
187187
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${CGAL_SRC}" \
@@ -200,7 +200,7 @@ Section "!Main CGAL" MAIN_Idx
200200
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${CGAL_SRC}" \
201201
"URLInfoAbout" "http://www.cgal.org/"
202202
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${CGAL_SRC}" \
203-
"DisplayedVersion" "4.6.0"
203+
"DisplayedVersion" "4.7.0"
204204
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${CGAL_SRC}" \
205205
"CGALUninstallRegLoc" "$RegLoc"
206206

@@ -234,7 +234,7 @@ SectionEnd
234234

235235
Section /o "HTML Manuals" DOC_Idx
236236
!ifndef FetchLocal
237-
!insertmacro DownloadFileFrom "https://cgal.geometryfactory.com/" "CGAL/4.6/Manual/" "cgal_manual.zip" "$INSTDIR\doc_html"
237+
!insertmacro DownloadFileFrom "https://cgal.geometryfactory.com/" "CGAL/4.7/Manual/" "cgal_manual.zip" "$INSTDIR\doc_html"
238238
!endif
239239
SectionEnd
240240

0 commit comments

Comments
 (0)