Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-10-08 | CAddrMan: verify pchMessageStart file marker, before reading address data | Jeff Garzik | |
This avoids the case where you read the address data, before noticing it is the wrong network. | |||
2012-10-04 | Merge pull request #1905 from laanwj/2012_10_startup_gui_error | Wladimir J. van der Laan | |
When datadir missing, show messagebox instead of printing error to stderr | |||
2012-10-04 | Merge pull request #1908 from laanwj/2012_10_rpcerrors | Pieter Wuille | |
Document RPC error codes | |||
2012-10-04 | Add constants for HTTP status codes | Wladimir J. van der Laan | |
2012-10-04 | Document RPC error codes | Wladimir J. van der Laan | |
Replace all "magic values" in RPCError(...) by constants. | |||
2012-10-04 | When datadir missing, show messagebox instead of printing error to stderr | Wladimir J. van der Laan | |
2012-10-04 | Pull changed translations from transifex | Wladimir J. van der Laan | |
There was also a new translation available, "ja" (Japanese), however almost nothing was filled in yet, so I'm not including it for this release. | |||
2012-10-04 | Translation update for 0.7.1 | Wladimir J. van der Laan | |
Also clarify translation process that the package `gettext` is needed to run string extractor. | |||
2012-10-01 | Merge branch '2012_09_fixwformat' of github.com:laanwj/bitcoin | Gavin Andresen | |
2012-10-01 | Merge branch 'master' of github.com:runeksvendsen/bitcoin | Gavin Andresen | |
2012-10-01 | Merge pull request #1893 from kjj2/issue1884 | Gavin Andresen | |
Issue 1884: Add a backup warning to the encryptwallet RPC command | |||
2012-10-01 | Revert "Remove -Wformat* warnings from makefiles" | Wladimir J. van der Laan | |
This reverts commit 14ac0adcc7c0224a467e38bbd4ebf39d824ada8d. | |||
2012-10-01 | fix -Wformat warnings all over the source | Philip Kaufmann | |
2012-10-01 | Extend printf warnings to error() | Wladimir J. van der Laan | |
2012-10-01 | Merge branch '2012_09_base58tests' of github.com:laanwj/bitcoin | Gavin Andresen | |
2012-10-01 | data-driven base58 CBitcoinAddress/CBitcoinSecret tests | Wladimir J. van der Laan | |
Arbitrary numbers of test vectors can be generated using the script `gen_base58_test_vectors.py`. | |||
2012-09-30 | When encrypting the wallet, warn user that old backups will become useless. | Rune K. Svendsen | |
Don't include HTML in translation strings. Do split the huge message over several lines. Prettier lines | |||
2012-09-30 | Add a backup warning to the encryptwallet RPC command | kjj2 | |
2012-09-30 | harmonize printf format characters | Philip Kaufmann | |
- remove the "%" character from format characters for (s)size_t and ptrdiff_t and harmonize them with the ones for int64 and uint64 | |||
2012-09-29 | Merge pull request #1875 from hsoft/master | Wladimir J. van der Laan | |
Fix compilation with clang under OS X | |||
2012-09-29 | Merge pull request #1881 from xanatos/Tests | Wladimir J. van der Laan | |
Removed a duplicated identical if | |||
2012-09-29 | Merge pull request #1851 from fanquake/OpenSSL-1.0.1c | Wladimir J. van der Laan | |
Update to use OpenSSL 1.0.1c | |||
2012-09-29 | Merge pull request #1883 from sipa/norandstack | Wladimir J. van der Laan | |
Remove stack randomization | |||
2012-09-28 | Merge pull request #1871 from jgarzik/wallet-deadcode | Jeff Garzik | |
walletdb.h: remove dead code | |||
2012-09-28 | Remove stack randomization | Pieter Wuille | |
2012-09-28 | Merge pull request #1862 from kjj2/testports | Pieter Wuille | |
Fix: when testnet=1 specified, change default RPC port to 18332 | |||
2012-09-28 | toHTML won't add empty wtx.mapValue elements | xanatos | |
As the code was before, toHTML added empty elements to mapValue to check for their existance. Now first it check for their existance and then for their non-emptiness. Removed a duplicated identical if There are two equal ifs, one inside another. If the first one is true, then the second one is true. | |||
2012-09-27 | Merge pull request #1868 from maaku/and_or_xor_sign_extension | Wladimir J. van der Laan | |
Documented bug in sign-extension behavior of opcodes OP_AND, OP_OR, and OP_XOR | |||
2012-09-27 | Fixed compilation error with clang. | Virgil Dupras | |
Previously, trying to compile with clang would result in the error: assigning to 'objc_object *' from incompatible type 'DockIconClickEventHandler *' | |||
2012-09-27 | Remove -Wformat* warnings from makefiles | Wladimir J. van der Laan | |
commit 5a1a3622 effectively enabled these warnings, but they need to be fixed before being enabled in the general build scripts. | |||
2012-09-26 | walletdb.h: remove dead code | Jeff Garzik | |
2012-09-25 | Merge pull request #1807 from laanwj/2012_09_printf_warnings | Wladimir J. van der Laan | |
Add printf-style warnings to strprintf() and OutputDebugStringF() | |||
2012-09-25 | Documented bug in sign-extension behavior of opcodes OP_AND, OP_OR, and OP_XOR. | Mark Friedenbach | |
Due to a bug in the implementation of MakeSameSize(), using OP_AND, OP_OR, or OP_XOR with signed values of unequal size will result in the sign-value becoming part of the smaller integer, with nonsensical results. This patch documents the unexpected behavior and provides the basis of a solution should decision be made to fix the bug in the future. | |||
2012-09-25 | Merge pull request #1684 from jgarzik/bootstrap | Jeff Garzik | |
Import $DataDir/bootstrap.dat automatically, if it exists. | |||
2012-09-25 | Update comment, we're no longer using boost::interprocess::scoped_lock | Wladimir J. van der Laan | |
2012-09-25 | Merge pull request #1854 from Diapolo/fix_1843_V2 | Wladimir J. van der Laan | |
additional fix for #1843 | |||
2012-09-24 | Fix: when testnet=1 specified, change default ports to 18332 and 18333 | kjj2 | |
2012-09-24 | Import $DataDir/bootstrap.dat automatically, if it exists. | Jeff Garzik | |
As discussed on IRC. Intended to make using an external blockchain download solution just a bit easier. | |||
2012-09-23 | Merge pull request #1836 from kjj2/stopdetach | Wladimir J. van der Laan | |
Adds a stopdetach <detach> RPC command. <detach> defaults to true. Wor... | |||
2012-09-23 | Merge pull request #1853 from fanquake/qt-include | Wladimir J. van der Laan | |
Update include for Qt5 | |||
2012-09-22 | Adds a stopdetach <detach> RPC command. <detach> defaults to true. Works ↵ | kjj2 | |
just like stop, but overrides the commandline/config file -detachdb option. Useful for upgrading, for example. Lets you use fast stops usually, but force a detach when needed. Also, allows you to do a fast stop in a system normally configured for fast stops. | |||
2012-09-22 | Update Qt include | fanquake | |
Update Qmenu include This is to be more consistent with the rest of the source Update Qt Includes | |||
2012-09-22 | Merge pull request #1852 from fanquake/bugreportlinks | Wladimir J. van der Laan | |
Update links to Qt | |||
2012-09-22 | additional fix for #1843 | Philip Kaufmann | |
- a shortcut on "receive coins" was used twice | |||
2012-09-22 | Update Bugreport Links | fanquake | |
Update Qt Links Revert Qt source link Update Qt links | |||
2012-09-22 | Merge pull request #1844 from Diapolo/Qt5_compat1 | Wladimir J. van der Laan | |
enhance Qt5 compatibility | |||
2012-09-22 | Update Bitcoin to use OpenSSL 1.0.1c | fanquake | |
Bump deps tp 0.0.5 Small docs corrections | |||
2012-09-22 | Remove unnecessary text from tooltip in AddressBookPage | Wladimir J. van der Laan | |
2012-09-21 | fix #1843 by changing 2 GUI shortcuts | Philip Kaufmann | |
2012-09-21 | enhance Qt5 compatibility | Philip Kaufmann | |
- replace Q_WS_MAC (not supported anymore in Qt5) with Q_OS_MAC (supported in Qt4/5) |