Skip to content

Commit 94eaab7

Browse files
committed
Bump version to 0.5.0.0
1 parent 0b3f365 commit 94eaab7

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

bitcoin-qt.pro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
TEMPLATE = app
22
TARGET =
3+
VERSION = 0.5.0
34
INCLUDEPATH += src src/json src/qt
45
DEFINES += QT_GUI
56
CONFIG += no_include_pwd

share/setup.nsi

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ SetCompressor /SOLID lzma
55

66
# General Symbol Definitions
77
!define REGKEY "SOFTWARE\$(^Name)"
8-
!define VERSION 0.4.1
8+
!define VERSION 0.5.0
99
!define COMPANY "Bitcoin project"
1010
!define URL http://www.bitcoin.org/
1111

@@ -20,7 +20,7 @@ SetCompressor /SOLID lzma
2020
!define MUI_STARTMENUPAGE_REGISTRY_KEY ${REGKEY}
2121
!define MUI_STARTMENUPAGE_REGISTRY_VALUENAME StartMenuGroup
2222
!define MUI_STARTMENUPAGE_DEFAULTFOLDER Bitcoin
23-
!define MUI_FINISHPAGE_RUN $INSTDIR\bitcoin.exe
23+
!define MUI_FINISHPAGE_RUN $INSTDIR\bitcoin-qt.exe
2424
!define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico"
2525
!define MUI_UNWELCOMEFINISHPAGE_BITMAP "../share/pixmaps/nsis-wizard.bmp"
2626
!define MUI_UNFINISHPAGE_NOAUTOCLOSE
@@ -45,13 +45,13 @@ Var StartMenuGroup
4545
!insertmacro MUI_LANGUAGE English
4646

4747
# Installer attributes
48-
OutFile bitcoin-0.4.1-win32-setup.exe
48+
OutFile bitcoin-0.5.0-win32-setup.exe
4949
InstallDir $PROGRAMFILES\Bitcoin
5050
CRCCheck on
5151
XPStyle on
5252
BrandingText " "
5353
ShowInstDetails show
54-
VIProductVersion 0.4.1.0
54+
VIProductVersion 0.5.0.0
5555
VIAddVersionKey ProductName Bitcoin
5656
VIAddVersionKey ProductVersion "${VERSION}"
5757
VIAddVersionKey CompanyName "${COMPANY}"
@@ -66,7 +66,7 @@ ShowUninstDetails show
6666
Section -Main SEC0000
6767
SetOutPath $INSTDIR
6868
SetOverwrite on
69-
File ../src/bitcoin.exe
69+
File ../bitcoin-qt.exe
7070
File /oname=license.txt ../COPYING
7171
File /oname=readme.txt ../doc/README_windows.txt
7272
SetOutPath $INSTDIR\daemon
@@ -85,7 +85,7 @@ Section -post SEC0001
8585
WriteUninstaller $INSTDIR\uninstall.exe
8686
!insertmacro MUI_STARTMENU_WRITE_BEGIN Application
8787
CreateDirectory $SMPROGRAMS\$StartMenuGroup
88-
CreateShortcut "$SMPROGRAMS\$StartMenuGroup\Bitcoin.lnk" $INSTDIR\bitcoin.exe
88+
CreateShortcut "$SMPROGRAMS\$StartMenuGroup\Bitcoin.lnk" $INSTDIR\bitcoin-qt.exe
8989
CreateShortcut "$SMPROGRAMS\$StartMenuGroup\Uninstall Bitcoin.lnk" $INSTDIR\uninstall.exe
9090
!insertmacro MUI_STARTMENU_WRITE_END
9191
WriteRegStr HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" DisplayName "$(^Name)"
@@ -113,7 +113,7 @@ done${UNSECTION_ID}:
113113
114114
# Uninstaller sections
115115
Section /o -un.Main UNSEC0000
116-
Delete /REBOOTOK $INSTDIR\bitcoin.exe
116+
Delete /REBOOTOK $INSTDIR\bitcoin-qt.exe
117117
Delete /REBOOTOK $INSTDIR\license.txt
118118
Delete /REBOOTOK $INSTDIR\readme.txt
119119
RMDir /r /REBOOTOK $INSTDIR\daemon

src/serialize.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class CDataStream;
6060
class CAutoFile;
6161
static const unsigned int MAX_SIZE = 0x02000000;
6262

63-
static const int VERSION = 40100;
63+
static const int VERSION = 50000;
6464
static const char* pszSubVer = "";
6565
static const bool VERSION_IS_BETA = true;
6666

0 commit comments

Comments
 (0)