@@ -7,9 +7,31 @@ OutFile "julia-installer.exe"
7
7
SetCompress off
8
8
CRCCheck on
9
9
SetDataBlockOptimize on
10
- ShowInstDetails show
10
+ ShowInstDetails nevershow
11
+ ShowUninstDetails nevershow
11
12
RequestExecutionLevel user
12
- BrandingText " Julia ${Version}"
13
+ BrandingText " "
14
+
15
+ !define /date YEAR " %Y"
16
+
17
+ Name " Julia"
18
+ VIProductVersion " 10.20.0.0" # arbitrary value since it doesn't mater, but is required; format must be X.X.X.X
19
+ VIAddVersionKey " ProductName" " Julia"
20
+ VIAddVersionKey " CompanyName " " Julia Language"
21
+ VIAddVersionKey " ProductVersion" " ${Version}"
22
+ VIAddVersionKey " FileDescription" " Julia Language Installer"
23
+ VIAddVersionKey " Comments" " https://julialang.org/"
24
+ VIAddVersionKey " LegalCopyright" " Copyright (c) 2009-${YEAR} Julia Language"
25
+ VIAddVersionKey " FileVersion" " "
26
+
27
+ Caption " Julia Installer" # title bar
28
+
29
+ !define MUI_ICON " ${JULIAHOME}\contrib\windows\julia.ico"
30
+ !define MUI_UNICON " ${JULIAHOME}\contrib\windows\julia.ico"
31
+ !define MUI_WELCOMEFINISHPAGE_BITMAP " ${JULIAHOME}\contrib\windows\julia-banner.bmp"
32
+ !define MUI_HEADERIMAGE
33
+ !define MUI_HEADERIMAGE_BITMAP " ${JULIAHOME}\contrib\windows\julia-header.bmp"
34
+ !define MUI_HEADERIMAGE_RIGHT
13
35
14
36
# Uninstall settings
15
37
!define UninstLog " uninstall.log"
@@ -153,5 +175,3 @@ FunctionEnd
153
175
Function ShowInstallFolder
154
176
ExecShell " open" $INSTDIR
155
177
FunctionEnd
156
-
157
-
0 commit comments