diff options
author | Jay Weisskopf <jay@jayschwa.net> | 2011-07-11 02:09:07 -0500 |
---|---|---|
committer | Jay Weisskopf <jay@jayschwa.net> | 2011-07-11 02:09:07 -0500 |
commit | 6c9498147fb4bd6e1a79eaaa0c93a558a57a0caf (patch) | |
tree | 8001fbd69d8103032d550949f51025f379714994 /share/setup.nsi | |
parent | 354f2dd09487c865f8f0d0d40f66573f764e5a96 (diff) |
Add logos/branding currently found on bitcoin.org into NSIS installer.
Diffstat (limited to 'share/setup.nsi')
-rw-r--r-- | share/setup.nsi | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/share/setup.nsi b/share/setup.nsi index 8677d334e2..cd39aa3993 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -10,6 +10,10 @@ RequestExecutionLevel highest # MUI Symbol Definitions
!define MUI_ICON "../share/pixmaps/bitcoin.ico"
+!define MUI_WELCOMEFINISHPAGE_BITMAP "../share/pixmaps/nsis-wizard.bmp"
+!define MUI_HEADERIMAGE
+!define MUI_HEADERIMAGE_RIGHT
+!define MUI_HEADERIMAGE_BITMAP "../share/pixmaps/nsis-header.bmp"
!define MUI_FINISHPAGE_NOAUTOCLOSE
!define MUI_STARTMENUPAGE_REGISTRY_ROOT HKLM
!define MUI_STARTMENUPAGE_REGISTRY_KEY ${REGKEY}
@@ -17,6 +21,7 @@ RequestExecutionLevel highest !define MUI_STARTMENUPAGE_DEFAULTFOLDER Bitcoin
!define MUI_FINISHPAGE_RUN $INSTDIR\bitcoin.exe
!define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico"
+!define MUI_UNWELCOMEFINISHPAGE_BITMAP "../share/pixmaps/nsis-wizard.bmp"
!define MUI_UNFINISHPAGE_NOAUTOCLOSE
# Included files
|