From 6c9498147fb4bd6e1a79eaaa0c93a558a57a0caf Mon Sep 17 00:00:00 2001 From: Jay Weisskopf Date: Mon, 11 Jul 2011 02:09:07 -0500 Subject: Add logos/branding currently found on bitcoin.org into NSIS installer. --- share/setup.nsi | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'share/setup.nsi') 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 -- cgit v1.2.3 From 230b894779aa0876e68eb7ebdcf8d05bf1ac97b4 Mon Sep 17 00:00:00 2001 From: Jay Weisskopf Date: Mon, 11 Jul 2011 02:11:15 -0500 Subject: Set default compression for NSIS installer to LZMA. Use of LZMA (versus the current zlib) shaves a few MB off the installer. --- share/setup.nsi | 1 + 1 file changed, 1 insertion(+) (limited to 'share/setup.nsi') diff --git a/share/setup.nsi b/share/setup.nsi index cd39aa3993..022eea822c 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -1,6 +1,7 @@ Name Bitcoin RequestExecutionLevel highest +SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -- cgit v1.2.3 From aa0bcaaf2be4bbb7729d307fffec13b7ef0cb806 Mon Sep 17 00:00:00 2001 From: Jay Weisskopf Date: Tue, 12 Jul 2011 01:18:57 -0500 Subject: Remove NSIS branding from bottom divider. --- share/setup.nsi | 1 + 1 file changed, 1 insertion(+) (limited to 'share/setup.nsi') diff --git a/share/setup.nsi b/share/setup.nsi index 022eea822c..888c8ea538 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -49,6 +49,7 @@ OutFile bitcoin-0.3.24-win32-setup.exe InstallDir $PROGRAMFILES\Bitcoin CRCCheck on XPStyle on +BrandingText " " ShowInstDetails show VIProductVersion 0.3.24.0 VIAddVersionKey ProductName Bitcoin -- cgit v1.2.3 From 24a0def8cda671e9faedb84e6590eb761ba7487e Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Wed, 13 Jul 2011 01:19:26 -0400 Subject: Bump version to 0.3.25 Yes, we might release as v0.4, but let's just do a simple increment for now. --- share/setup.nsi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'share/setup.nsi') diff --git a/share/setup.nsi b/share/setup.nsi index 888c8ea538..b4bf3cff47 100644 --- a/share/setup.nsi +++ b/share/setup.nsi @@ -5,7 +5,7 @@ SetCompressor /SOLID lzma # General Symbol Definitions !define REGKEY "SOFTWARE\$(^Name)" -!define VERSION 0.3.24 +!define VERSION 0.3.25 !define COMPANY "Bitcoin project" !define URL http://www.bitcoin.org/ @@ -45,13 +45,13 @@ Var StartMenuGroup !insertmacro MUI_LANGUAGE English # Installer attributes -OutFile bitcoin-0.3.24-win32-setup.exe +OutFile bitcoin-0.3.25-win32-setup.exe InstallDir $PROGRAMFILES\Bitcoin CRCCheck on XPStyle on BrandingText " " ShowInstDetails show -VIProductVersion 0.3.24.0 +VIProductVersion 0.3.25.0 VIAddVersionKey ProductName Bitcoin VIAddVersionKey ProductVersion "${VERSION}" VIAddVersionKey CompanyName "${COMPANY}" -- cgit v1.2.3