Skip to content

Commit de110ef

Browse files
committed
Update Windows icon and NSIS banner (JuliaLang#32054)
(cherry picked from commit a43c46b)
1 parent 7cfd2b4 commit de110ef

File tree

6 files changed

+25
-5
lines changed

6 files changed

+25
-5
lines changed

contrib/windows/7zS.sfx

140 KB
Binary file not shown.

contrib/windows/7zSFX-config.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
;!@Install@!UTF-8!
2-
Title="The Julia Language"
2+
Title="Julia"
33
RunProgram="julia-installer.exe"
44
;!@InstallEnd@!

contrib/windows/build-installer.nsi

+24-4
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,31 @@ OutFile "julia-installer.exe"
77
SetCompress off
88
CRCCheck on
99
SetDataBlockOptimize on
10-
ShowInstDetails show
10+
ShowInstDetails nevershow
11+
ShowUninstDetails nevershow
1112
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
1335

1436
# Uninstall settings
1537
!define UninstLog "uninstall.log"
@@ -153,5 +175,3 @@ FunctionEnd
153175
Function ShowInstallFolder
154176
ExecShell "open" $INSTDIR
155177
FunctionEnd
156-
157-

contrib/windows/julia-banner.bmp

151 KB
Binary file not shown.

contrib/windows/julia-header.bmp

25.2 KB
Binary file not shown.

contrib/windows/julia.ico

139 KB
Binary file not shown.

0 commit comments

Comments
 (0)