aboutsummaryrefslogtreecommitdiff
path: root/src/clientversion.h
Commit message (Collapse)AuthorAgeFilesLines
* autotools: switch to autotools buildsystemCory Fields2013-09-051-0/+5
|
* Prepare for 0.9 merge windowPieter Wuille2013-05-301-3/+3
|
* Bump build number to 0.8.2.2 for v0.8.2rc3v0.8.2rc3Gavin Andresen2013-05-241-1/+1
|
* Set CLIENT_VERSION_IS_RELEASE, bump build to 0.8.2.1Gavin Andresen2013-05-131-2/+2
|
* Update version numbers for 0.8.2rc1 releasev0.8.2rc1Gavin Andresen2013-05-101-2/+2
|
* move COPYRIGHT_YEAR to clientversion.hPhilip Kaufmann2013-04-101-1/+5
| | | | | - this allows usage of that information also in other places (e.g. splash screen)
* Switch version numbers to 0.8.1.99Pieter Wuille2013-04-061-3/+3
|
* Bump version numbers for 0.8 releaseGavin Andresen2013-01-301-3/+3
| | | | | | | Version numbers changed from 0.7.99 to 0.8.0 Set CLIENT_VERSION_IS_RELEASE to remove pre-release warning Updated copyright in COPYING and doc/READMEs to 2013 Updated doc/release-notes.txt
* Show warning when using prerelease versionWladimir J. van der Laan2012-10-251-0/+3
| | | | | | | | | | | Implements #1948 - Add macro `CLIENT_VERSION_IS_RELEASE` to clientversion.h - When running a prerelease (the above macro is `false`): - In UI, show an orange warning bar at the top. This will be used for other warnings (and alerts) as well, instead of the status bar. - For `bitcoind`, show the warning in the "errors" field in `getinfo` response.
* Update version numbers to 0.7.99Pieter Wuille2012-10-211-1/+1
|
* Bump versions for 0.7.1 releaseGavin Andresen2012-10-091-2/+2
|
* Bump client version to 0.7.0.99 now that 0.7.0 release is final.Gavin Andresen2012-09-181-1/+1
|
* Bump client version number for 0.7.0rc3v0.7.0rc3v0.7.0Gavin Andresen2012-09-121-1/+1
|
* Bitcoin-Qt (Windows only): add version info to Resource FilePhilip Kaufmann2012-09-071-0/+19
- add version information to bitcoin-qt.rc, which is displayed on Windows, when looking in the executable properties and selecting "Details" - introduce a new clientversion.h (used in bitcoin-qt.rc to generate version information), which takes only the version defines from version.h and is included in it (to allow usage with the windres rc-file compiler) - move #define STRINGIFY(s) #s into clientversion.h as that is used in bitcoin-qt.rc and rename to DO_STRINGIZE(X) - add #define STRINGIZE(X) DO_STRINGIZE(X), which is needed to convert the version defines into a version string in the rc-file - this ensures we only need to update 1 file and have bitcoin-qt.exe version information - for RC-file documentation see: http://msdn.microsoft.com/en-us/library/windows/desktop/aa381058%28v=vs.85%29.aspx