X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=share%2Fsetup.nsi;h=2674597ee1e16da50011108afce38e5dcb2e64c7;hb=98c0b8b85ed1971bed13dc51edc68e0651fa5e73;hp=2f2eeaa784e6915276a282c5f7c969b90ccc8793;hpb=94eaab77109dd4fa568a855a375adb2c2a3207f9;p=novacoin.git diff --git a/share/setup.nsi b/share/setup.nsi index 2f2eeaa..2674597 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.5.0 +!define VERSION 0.5.0.2 !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.5.0-win32-setup.exe +OutFile bitcoin-0.5.0.2-win32-setup.exe InstallDir $PROGRAMFILES\Bitcoin CRCCheck on XPStyle on BrandingText " " ShowInstDetails show -VIProductVersion 0.5.0.0 +VIProductVersion 0.5.0.2 VIAddVersionKey ProductName Bitcoin VIAddVersionKey ProductVersion "${VERSION}" VIAddVersionKey CompanyName "${COMPANY}" @@ -66,13 +66,11 @@ ShowUninstDetails show Section -Main SEC0000 SetOutPath $INSTDIR SetOverwrite on - File ../bitcoin-qt.exe + File ../release/bitcoin-qt.exe File /oname=license.txt ../COPYING File /oname=readme.txt ../doc/README_windows.txt SetOutPath $INSTDIR\daemon File ../src/bitcoind.exe - SetOutPath $INSTDIR\locale - File /r ../locale/*.* SetOutPath $INSTDIR\src File /r /x *.exe /x *.o ../src\*.* SetOutPath $INSTDIR @@ -117,7 +115,6 @@ Section /o -un.Main UNSEC0000 Delete /REBOOTOK $INSTDIR\license.txt Delete /REBOOTOK $INSTDIR\readme.txt RMDir /r /REBOOTOK $INSTDIR\daemon - RMDir /r /REBOOTOK $INSTDIR\locale RMDir /r /REBOOTOK $INSTDIR\src DeleteRegValue HKCU "${REGKEY}\Components" Main SectionEnd