aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-01-27Merge pull request #3579Wladimir J. van der Laan
f3005c8 [Qt] harmonize strings used when exporting in addressbookpage (Philip Kaufmann)
2014-01-27[Qt] harmonize strings used when exporting in addressbookpagePhilip Kaufmann
2014-01-24Merge pull request #3578 from gavinandresen/unittest_debuglockorderGavin Andresen
Unit test fixes for AssertLockHeld / -DDEBUG_LOCKORDER
2014-01-24Unit test fixes for AssertLockHeld / -DDEBUG_LOCKORDERGavin Andresen
Unit tests would fail if compiled with -DDEBUG_LOCKORDER (AssertLockHeld() would fail; AssertLockHeld() relies on the DEBUG_LOCKORDER code to keep track of locks held). Fixed by LOCK'ing the wallet mutex in the unit tests that manipulate the wallet.
2014-01-24Merge pull request #3571Wladimir J. van der Laan
57feb1b ui: Clarify help messages for 'message' fields (Wladimir J. van der Laan)
2014-01-24ui: Clarify help messages for 'message' fieldsWladimir J. van der Laan
Add or amend tooltips to clarify what the message is for and that it doesn't go over the network.
2014-01-23Merge pull request #3549Wladimir J. van der Laan
7d9d134 Remove redundant .c_str()s (Wladimir J. van der Laan) b77dfdc Typesafe strprintf/error/LogPrint functions (Wladimir J. van der Laan)
2014-01-23Remove redundant .c_str()sWladimir J. van der Laan
After the tinyformat switch sprintf() family functions support passing actual std::string objects. Remove unnecessary c_str calls (236 of them) in logging and formatting.
2014-01-23Typesafe strprintf/error/LogPrint functionsWladimir J. van der Laan
Switch to tinyformat-based formatting. Tinyformat is a typesafe drop-in replacement for C99 printf functions: https://github.com/c42f/tinyformat
2014-01-23build: fix typo in configure help messageWladimir J. van der Laan
--with-qt-libdir etc, not --with-gui-libdir. The typo was introduced in a9dbcf036bc866c2e413b1d068541e35eafdfcd0.
2014-01-23Merge pull request #3577Wladimir J. van der Laan
17b409b qt: Fix richtext detection hang issue on very old Qt versions (Wladimir J. van der Laan)
2014-01-23qt: Fix richtext detection hang issue on very old Qt versionsWladimir J. van der Laan
Alternative implementation. Thanks to @awoland for the original. Fixes #3486.
2014-01-23Merge pull request #3553Wladimir J. van der Laan
a8db31c qt: allow `walletpassphrase` in debug console without -server (Wladimir J. van der Laan)
2014-01-23Merge pull request #3560Wladimir J. van der Laan
fe14e8d build: Change package name to Bitcoin Core (Wladimir J. van der Laan) 6c980c7 build: Package docs/ and don't package source. (Wladimir J. van der Laan) 39db27c build: Add bitcoin-cli.exe to installer (Wladimir J. van der Laan) 2f87b38 Adapt Windows installer for 64 bit (Wladimir J. van der Laan) f622232 gitian: Windows 64 bit support (Wladimir J. van der Laan)
2014-01-22Merge pull request #3573Wladimir J. van der Laan
f021981 [Qt] move helpmessage from debug window to main menu (Philip Kaufmann)
2014-01-22[Qt] move helpmessage from debug window to main menuPhilip Kaufmann
- the option to show our help message dialog resides now in main menu under help
2014-01-22Merge pull request #3568Wladimir J. van der Laan
4bee715 [Qt] very minor style cleanups (Philip Kaufmann)
2014-01-22Merge pull request #3567Wladimir J. van der Laan
22a5120 [Qt] Show and store message of normal bitcoin:URI (Cozz Lovan)
2014-01-22Merge pull request #1674Wladimir J. van der Laan
6ac0b3b build: Add -static for mingw builds (Wladimir J. van der Laan) 4e57e23 enable full GCC Stack-smashing protection for all OSes (Philip Kaufmann)
2014-01-22build: Add -static for mingw buildsWladimir J. van der Laan
This avoids a dependency on libssp-0.dll when built with -fstack-protector-all.
2014-01-22[Qt] very minor style cleanupsPhilip Kaufmann
- rebuilt some ui file layout to remove unreal values from the files - remove an unneeded attribute from an ui file - add / remove some spaces in files
2014-01-22enable full GCC Stack-smashing protection for all OSesPhilip Kaufmann
- change our hardening options to use -fstack-protector-all even for Windows builds, as we recently switched to a newer compiler suite - also removes an obsolete workaround for GCC 4.5 (https://bugs.launchpad.net/ubuntu/+source/gcc-4.5/+bug/691722), which required to first set -fno-stack-protector, before -fstack-protector-all
2014-01-22Merge pull request #3452Wladimir J. van der Laan
1ba3560 [Qt] let OptionsModel::getProxySettings() directly query proxy (Philip Kaufmann)
2014-01-22Merge pull request #3521Wladimir J. van der Laan
4d90102 [Qt] Add sorting feature to the requested payments table (Cozz Lovan) 8476d5d [Qt] Permanently store requested payments in wallet (Cozz Lovan) b10e147 wallet: add interface for storing generic data on destinations (Wladimir J. van der Laan)
2014-01-22Merge pull request #3502Wladimir J. van der Laan
1f12844 Fix importprivkey / rescan (Cozz Lovan)
2014-01-21[Qt] Show and store message of normal bitcoin:URICozz Lovan
2014-01-21build: Change package name to Bitcoin CoreWladimir J. van der Laan
Affects the name of the package as shown in installers and such. Also rebrand the windows installer.
2014-01-21build: Package docs/ and don't package source.Wladimir J. van der Laan
No-one uses the installer then builds from source. Closes #2819.
2014-01-21build: Add bitcoin-cli.exe to installerWladimir J. van der Laan
2014-01-21Adapt Windows installer for 64 bitWladimir J. van der Laan
2014-01-21Merge pull request #3564Wladimir J. van der Laan
54d2b91 doc: Build with qt5 is possible again (Wladimir J. van der Laan)
2014-01-21doc: Build with qt5 is possible againWladimir J. van der Laan
This reverts commit 62568f9a1e98065bd51069649f23a337eab89f94. Also add some documentation for `--with-gui`.
2014-01-21build: Fix warning about space after trailing backslashWladimir J. van der Laan
2014-01-21gitian: Windows 64 bit supportWladimir J. van der Laan
- Build a 64 bit version of all dependencies - Show 32/64 bit version in "About..." for x86 - Export 64-bit .exes and installer from gitian build
2014-01-21Merge pull request #3548Wladimir J. van der Laan
7b50bb2 [Qt] add utilitydialog.cpp/h and helpmessage class (Philip Kaufmann)
2014-01-21Merge pull request #3242Wladimir J. van der Laan
2041365 Bugfix: Use BOOST_CPPFLAGS when testing for boost sleep vs sleep_for (Luke Dashjr) e18e100 configure: Minor grammatical changes to be more clear (Luke Dashjr) a9dbcf0 configure: Change --with[out]-qt to --with[out]-gui and add --with[out]-cli and --with[out]-daemon to support more build configurations (Luke Dashjr) f472990 Bugfix: Correct captitalisation of Qt (Luke Dashjr) f930341 configure: Internal changes to make building bitcoind and bitcoin-cli optional (Luke Dashjr) 4a290b5 Cleanup LevelDB library dependencies (Luke Dashjr) 9b4e03b Bugfix: Undefine _FORTIFY_SOURCE before redefining it, to avoid warnings on compilers that define it by default (Luke Dashjr) 123e4f8 Bugfix: configure: Allow user-provided CXXFLAGS to override default optimisation, debug, and warning flags (Luke Dashjr)
2014-01-21Merge pull request #3557Wladimir J. van der Laan
5d897f3 Update OS X Homebrew docs to include new build dependencies (Michael Ford)
2014-01-19[Qt] Add sorting feature to the requested payments tableCozz Lovan
2014-01-19[Qt] Permanently store requested payments in walletCozz Lovan
2014-01-19wallet: add interface for storing generic data on destinationsWladimir J. van der Laan
2014-01-19Update OS X Homebrew docs to include new build dependenciesMichael Ford
2014-01-19Merge pull request #3551Pieter Wuille
6873cfb Update linearize.py defaults to block 279,000 (Micha) e7906d1 Add a new checkpoint at block 279,000 (Micha)
2014-01-18Bugfix: Use BOOST_CPPFLAGS when testing for boost sleep vs sleep_forLuke Dashjr
2014-01-18configure: Minor grammatical changes to be more clearLuke Dashjr
2014-01-18configure: Change --with[out]-qt to --with[out]-gui and add --with[out]-cli ↵Luke Dashjr
and --with[out]-daemon to support more build configurations
2014-01-18Bugfix: Correct captitalisation of QtLuke Dashjr
2014-01-18configure: Internal changes to make building bitcoind and bitcoin-cli optionalLuke Dashjr
2014-01-18Update linearize.py defaults to block 279,000Micha
2014-01-18Add a new checkpoint at block 279,000Micha
From a cursory glance, it looks like block 279,000 meets the criteria for a checkpoint block, and it's also what the bootstrap.dat torrent is at. This closes #3530.
2014-01-18Cleanup LevelDB library dependenciesLuke Dashjr