Update version numbers for 0.8.2rc1 release
This commit is contained in:
parent
8f6709076e
commit
5b5d399593
@ -1,7 +1,7 @@
|
|||||||
TEMPLATE = app
|
TEMPLATE = app
|
||||||
TARGET = bitcoin-qt
|
TARGET = bitcoin-qt
|
||||||
macx:TARGET = "Bitcoin-Qt"
|
macx:TARGET = "Bitcoin-Qt"
|
||||||
VERSION = 0.8.0
|
VERSION = 0.8.2
|
||||||
INCLUDEPATH += src src/json src/qt
|
INCLUDEPATH += src src/json src/qt
|
||||||
QT += network
|
QT += network
|
||||||
DEFINES += QT_GUI BOOST_THREAD_USE_LIB BOOST_SPIRIT_THREADSAFE
|
DEFINES += QT_GUI BOOST_THREAD_USE_LIB BOOST_SPIRIT_THREADSAFE
|
||||||
|
@ -18,7 +18,7 @@ WORKINGDIR="/tmp/bitcoin"
|
|||||||
TMPFILE="hashes.tmp"
|
TMPFILE="hashes.tmp"
|
||||||
|
|
||||||
#this URL is used if a version number is not specified as an argument to the script
|
#this URL is used if a version number is not specified as an argument to the script
|
||||||
SIGNATUREFILE="http://downloads.sourceforge.net/project/bitcoin/Bitcoin/bitcoin-0.8.1/SHA256SUMS.asc"
|
SIGNATUREFILE="http://downloads.sourceforge.net/project/bitcoin/Bitcoin/bitcoin-0.8.2/SHA256SUMS.asc"
|
||||||
|
|
||||||
SIGNATUREFILENAME="SHA256SUMS.asc"
|
SIGNATUREFILENAME="SHA256SUMS.asc"
|
||||||
RCSUBDIR="test/"
|
RCSUBDIR="test/"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
Bitcoin 0.8.0 BETA
|
Bitcoin 0.8.2 BETA
|
||||||
|
|
||||||
Copyright (c) 2009-2013 Bitcoin Developers
|
Copyright (c) 2009-2013 Bitcoin Developers
|
||||||
Distributed under the MIT/X11 software license, see the accompanying
|
Distributed under the MIT/X11 software license, see the accompanying
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
Bitcoin 0.8.0 BETA
|
Bitcoin 0.8.2 BETA
|
||||||
|
|
||||||
Copyright (c) 2009-2013 Bitcoin Developers
|
Copyright (c) 2009-2013 Bitcoin Developers
|
||||||
Distributed under the MIT/X11 software license, see the accompanying
|
Distributed under the MIT/X11 software license, see the accompanying
|
||||||
@ -20,15 +20,10 @@ Setup
|
|||||||
-----
|
-----
|
||||||
Unpack the files into a directory and run bitcoin-qt.exe.
|
Unpack the files into a directory and run bitcoin-qt.exe.
|
||||||
|
|
||||||
If you have Microsoft Security Essentials, you need to add bitcoin.exe to its
|
Bitcoin-Qt is the original Bitcoin client and it builds the backbone of the network.
|
||||||
"Excluded processes" list. Microsoft Security Essentials->Settings tab,
|
However, it downloads and stores the entire history of Bitcoin transactions;
|
||||||
select Excluded processes, press Add, select bitcoin.exe, OK, Save changes.
|
depending on the speed of your computer and network connection, the synchronization
|
||||||
|
process can take anywhere from a few hours to a day or more.
|
||||||
The software automatically finds other nodes to connect to. You can
|
|
||||||
enable Universal Plug and Play using a menu entry or set your firewall
|
|
||||||
to forward port 8333 (TCP) to your computer so you can receive
|
|
||||||
incoming connections. Bitcoin works without incoming connections,
|
|
||||||
but allowing incoming connections helps the Bitcoin network.
|
|
||||||
|
|
||||||
See the bitcoin wiki at:
|
See the bitcoin wiki at:
|
||||||
https://en.bitcoin.it/wiki/Main_Page
|
https://en.bitcoin.it/wiki/Main_Page
|
||||||
|
@ -5,7 +5,7 @@ SetCompressor /SOLID lzma
|
|||||||
|
|
||||||
# General Symbol Definitions
|
# General Symbol Definitions
|
||||||
!define REGKEY "SOFTWARE\$(^Name)"
|
!define REGKEY "SOFTWARE\$(^Name)"
|
||||||
!define VERSION 0.8.0
|
!define VERSION 0.8.2
|
||||||
!define COMPANY "Bitcoin project"
|
!define COMPANY "Bitcoin project"
|
||||||
!define URL http://www.bitcoin.org/
|
!define URL http://www.bitcoin.org/
|
||||||
|
|
||||||
@ -45,13 +45,13 @@ Var StartMenuGroup
|
|||||||
!insertmacro MUI_LANGUAGE English
|
!insertmacro MUI_LANGUAGE English
|
||||||
|
|
||||||
# Installer attributes
|
# Installer attributes
|
||||||
OutFile bitcoin-0.8.0-win32-setup.exe
|
OutFile bitcoin-0.8.2-win32-setup.exe
|
||||||
InstallDir $PROGRAMFILES\Bitcoin
|
InstallDir $PROGRAMFILES\Bitcoin
|
||||||
CRCCheck on
|
CRCCheck on
|
||||||
XPStyle on
|
XPStyle on
|
||||||
BrandingText " "
|
BrandingText " "
|
||||||
ShowInstDetails show
|
ShowInstDetails show
|
||||||
VIProductVersion 0.8.0.0
|
VIProductVersion 0.8.2.0
|
||||||
VIAddVersionKey ProductName Bitcoin
|
VIAddVersionKey ProductName Bitcoin
|
||||||
VIAddVersionKey ProductVersion "${VERSION}"
|
VIAddVersionKey ProductVersion "${VERSION}"
|
||||||
VIAddVersionKey CompanyName "${COMPANY}"
|
VIAddVersionKey CompanyName "${COMPANY}"
|
||||||
|
@ -8,8 +8,8 @@
|
|||||||
// These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it
|
// These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it
|
||||||
#define CLIENT_VERSION_MAJOR 0
|
#define CLIENT_VERSION_MAJOR 0
|
||||||
#define CLIENT_VERSION_MINOR 8
|
#define CLIENT_VERSION_MINOR 8
|
||||||
#define CLIENT_VERSION_REVISION 1
|
#define CLIENT_VERSION_REVISION 2
|
||||||
#define CLIENT_VERSION_BUILD 99
|
#define CLIENT_VERSION_BUILD 0
|
||||||
|
|
||||||
// Set to true for release, false for prerelease or test build
|
// Set to true for release, false for prerelease or test build
|
||||||
#define CLIENT_VERSION_IS_RELEASE false
|
#define CLIENT_VERSION_IS_RELEASE false
|
||||||
|
Loading…
Reference in New Issue
Block a user