- 27 Jan, 2014 6 commits
-
-
Pieter Wuille authored
-
Wladimir J. van der Laan authored
665bdd3b Fix off-by-one errors in use of IsFinalTx() (Peter Todd)
-
Wladimir J. van der Laan authored
Update English .ts file from source as well as pull changes from transifex to current translation.
-
Wladimir J. van der Laan authored
f3005c82 [Qt] harmonize strings used when exporting in addressbookpage (Philip Kaufmann)
-
Philip Kaufmann authored
-
Peter Todd authored
Previously CreateNewBlock() didn't take into account the fact that IsFinalTx() without any arguments tests if the transaction is considered final in the *current* block, when both those functions really needed to know if the transaction would be final in the *next* block. Additionally the UI had a similar misunderstanding. Also adds some basic tests to check that CreateNewBlock() is in fact mining nLockTime-using transactions correctly. Thanks to Wladimir J. van der Laan for rebase.
-
- 24 Jan, 2014 4 commits
-
-
Gavin Andresen authored
Unit test fixes for AssertLockHeld / -DDEBUG_LOCKORDER
-
Gavin Andresen authored
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.
-
Wladimir J. van der Laan authored
57feb1ba ui: Clarify help messages for 'message' fields (Wladimir J. van der Laan)
-
Wladimir J. van der Laan authored
Add or amend tooltips to clarify what the message is for and that it doesn't go over the network.
-
- 23 Jan, 2014 8 commits
-
-
Wladimir J. van der Laan authored
7d9d134b Remove redundant .c_str()s (Wladimir J. van der Laan) b77dfdc9 Typesafe strprintf/error/LogPrint functions (Wladimir J. van der Laan)
-
Wladimir J. van der Laan authored
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.
-
Wladimir J. van der Laan authored
Switch to tinyformat-based formatting. Tinyformat is a typesafe drop-in replacement for C99 printf functions: https://github.com/c42f/tinyformat
-
Wladimir J. van der Laan authored
--with-qt-libdir etc, not --with-gui-libdir. The typo was introduced in a9dbcf03.
-
Wladimir J. van der Laan authored
17b409b2 qt: Fix richtext detection hang issue on very old Qt versions (Wladimir J. van der Laan)
-
Wladimir J. van der Laan authored
Alternative implementation. Thanks to @awoland for the original. Fixes #3486.
-
Wladimir J. van der Laan authored
a8db31c8 qt: allow `walletpassphrase` in debug console without -server (Wladimir J. van der Laan)
-
Wladimir J. van der Laan authored
fe14e8d7 build: Change package name to Bitcoin Core (Wladimir J. van der Laan) 6c980c7d build: Package docs/ and don't package source. (Wladimir J. van der Laan) 39db27ca build: Add bitcoin-cli.exe to installer (Wladimir J. van der Laan) 2f87b38e Adapt Windows installer for 64 bit (Wladimir J. van der Laan) f622232b gitian: Windows 64 bit support (Wladimir J. van der Laan)
-
- 22 Jan, 2014 11 commits
-
-
Wladimir J. van der Laan authored
f0219813 [Qt] move helpmessage from debug window to main menu (Philip Kaufmann)
-
Philip Kaufmann authored
- the option to show our help message dialog resides now in main menu under help
-
Wladimir J. van der Laan authored
4bee715b [Qt] very minor style cleanups (Philip Kaufmann)
-
Wladimir J. van der Laan authored
22a51207 [Qt] Show and store message of normal bitcoin:URI (Cozz Lovan)
-
Wladimir J. van der Laan authored
6ac0b3be build: Add -static for mingw builds (Wladimir J. van der Laan) 4e57e238 enable full GCC Stack-smashing protection for all OSes (Philip Kaufmann)
-
Wladimir J. van der Laan authored
This avoids a dependency on libssp-0.dll when built with -fstack-protector-all.
-
Philip Kaufmann authored
- 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
-
Philip Kaufmann authored
- 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
-
Wladimir J. van der Laan authored
1ba3560f [Qt] let OptionsModel::getProxySettings() directly query proxy (Philip Kaufmann)
-
Wladimir J. van der Laan authored
4d901023 [Qt] Add sorting feature to the requested payments table (Cozz Lovan) 8476d5d4 [Qt] Permanently store requested payments in wallet (Cozz Lovan) b10e1470 wallet: add interface for storing generic data on destinations (Wladimir J. van der Laan)
-
Wladimir J. van der Laan authored
1f12844f Fix importprivkey / rescan (Cozz Lovan)
-
- 21 Jan, 2014 11 commits
-
-
Cozz Lovan authored
-
Wladimir J. van der Laan authored
Affects the name of the package as shown in installers and such. Also rebrand the windows installer.
-
Wladimir J. van der Laan authored
No-one uses the installer then builds from source. Closes #2819.
-
Wladimir J. van der Laan authored
-
Wladimir J. van der Laan authored
-
Wladimir J. van der Laan authored
54d2b91c doc: Build with qt5 is possible again (Wladimir J. van der Laan)
-
Wladimir J. van der Laan authored
This reverts commit 62568f9a. Also add some documentation for `--with-gui`.
-
Wladimir J. van der Laan authored
-
Wladimir J. van der Laan authored
- 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
-
Wladimir J. van der Laan authored
7b50bb2f [Qt] add utilitydialog.cpp/h and helpmessage class (Philip Kaufmann)
-
Wladimir J. van der Laan authored
2041365c Bugfix: Use BOOST_CPPFLAGS when testing for boost sleep vs sleep_for (Luke Dashjr) e18e1001 configure: Minor grammatical changes to be more clear (Luke Dashjr) a9dbcf03 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) f4729903 Bugfix: Correct captitalisation of Qt (Luke Dashjr) f930341d configure: Internal changes to make building bitcoind and bitcoin-cli optional (Luke Dashjr) 4a290b52 Cleanup LevelDB library dependencies (Luke Dashjr) 9b4e03b2 Bugfix: Undefine _FORTIFY_SOURCE before redefining it, to avoid warnings on compilers that define it by default (Luke Dashjr) 123e4f87 Bugfix: configure: Allow user-provided CXXFLAGS to override default optimisation, debug, and warning flags (Luke Dashjr)
-