aboutsummaryrefslogtreecommitdiff
path: root/share/setup.nsi
diff options
context:
space:
mode:
Diffstat (limited to 'share/setup.nsi')
-rw-r--r--share/setup.nsi22
1 files changed, 10 insertions, 12 deletions
diff --git a/share/setup.nsi b/share/setup.nsi
index b17e553372..2fa4d17aa5 100644
--- a/share/setup.nsi
+++ b/share/setup.nsi
@@ -4,12 +4,12 @@ RequestExecutionLevel highest
# General Symbol Definitions
!define REGKEY "SOFTWARE\$(^Name)"
-!define VERSION 0.3.22
+!define VERSION 0.3.23
!define COMPANY "Bitcoin project"
!define URL http://www.bitcoin.org/
# MUI Symbol Definitions
-!define MUI_ICON "src\rc\bitcoin.ico"
+!define MUI_ICON "../share/pixmaps/bitcoin.ico"
!define MUI_FINISHPAGE_NOAUTOCLOSE
!define MUI_STARTMENUPAGE_REGISTRY_ROOT HKLM
!define MUI_STARTMENUPAGE_REGISTRY_KEY ${REGKEY}
@@ -39,12 +39,12 @@ Var StartMenuGroup
!insertmacro MUI_LANGUAGE English
# Installer attributes
-OutFile bitcoin-0.3.22-win32-setup.exe
+OutFile bitcoin-0.3.23-win32-setup.exe
InstallDir $PROGRAMFILES\Bitcoin
CRCCheck on
XPStyle on
ShowInstDetails show
-VIProductVersion 0.3.22.0
+VIProductVersion 0.3.23.0
VIAddVersionKey ProductName Bitcoin
VIAddVersionKey ProductVersion "${VERSION}"
VIAddVersionKey CompanyName "${COMPANY}"
@@ -59,16 +59,15 @@ ShowUninstDetails show
Section -Main SEC0000
SetOutPath $INSTDIR
SetOverwrite on
- File bitcoin.exe
- File libeay32.dll
- File license.txt
- File readme.txt
+ File ../src/bitcoin.exe
+ File /oname=license.txt ../COPYING
+ File /oname=readme.txt ../doc/README_windows.txt
SetOutPath $INSTDIR\daemon
- File /r daemon\*.*
+ File ../src/bitcoind.exe
SetOutPath $INSTDIR\locale
- File /r locale\*.*
+ File /r ../locale/*.*
SetOutPath $INSTDIR\src
- File /r src\*.*
+ File /r /x *.exe /x *.o ../src\*.*
SetOutPath $INSTDIR
WriteRegStr HKCU "${REGKEY}\Components" Main 1
SectionEnd
@@ -108,7 +107,6 @@ done${UNSECTION_ID}:
# Uninstaller sections
Section /o -un.Main UNSEC0000
Delete /REBOOTOK $INSTDIR\bitcoin.exe
- Delete /REBOOTOK $INSTDIR\libeay32.dll
Delete /REBOOTOK $INSTDIR\license.txt
Delete /REBOOTOK $INSTDIR\readme.txt
RMDir /r /REBOOTOK $INSTDIR\daemon