Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-10-09 | Make "Quit" menu saner | Wladimir J. van der Laan | |
- Use 'x' for Exit shortcut - Set Ctrl-Q as global quit key sequence | |||
2011-10-09 | Merge branch 'master' of https://github.com/bitcoin/bitcoin | Wladimir J. van der Laan | |
2011-10-09 | Merge pull request #573 from luke-jr/bugfix_bits_string | Gavin Andresen | |
Bugfix: getmemorypool "bits" should be a hex-string | |||
2011-10-09 | Merge pull request #575 from globalcitizen/master | Gavin Andresen | |
Unix build documentation improvements | |||
2011-10-09 | Fix typo. Improve Gentoo instructions. | globalcitizen | |
2011-10-09 | Improved Gentoo instructions. | globalcitizen | |
2011-10-09 | Fix extraneous directory specifier, beautify bash syntax $VAR -> ${VAR} | globalcitizen | |
2011-10-09 | Collate generic dependency information. Segregate distribution-specific ↵ | globalcitizen | |
(Ubuntu/Debian) information. Add Gentoo information. | |||
2011-10-08 | Remove old wx translations, updated qt translations | Gavin Andresen | |
2011-10-07 | Remove ui_res from makefiles | Gavin Andresen | |
2011-10-07 | Fix build on windows and mac | Gavin Andresen | |
Replaced all occurrences of #if* __WXMSW__ with WIN32, and all occurrences of __WXMAC_OSX__ with MAC_OSX, and made sure those are defined appropriately in the makefile and bitcoin-qt.pro. | |||
2011-10-06 | Merge pull request #572 from delirium---/master | Gavin Andresen | |
Fix for win64 build | |||
2011-10-06 | Bugfix: "bits" should be a hex-string, not a number (that just doesn't make ↵ | Luke Dashjr | |
sense) | |||
2011-10-06 | Fix for 64bit build | Victor Leschuk | |
2011-10-06 | Merge pull request #564 from luke-jr/optimize_remove_CheckWork_delay | Gavin Andresen | |
Remove 2 second sleep from CheckWork | |||
2011-10-05 | Merge pull request #566 from luke-jr/optimize_http_status | Gavin Andresen | |
Optimize HTTP status messages | |||
2011-10-05 | Use C's const char* for status strings rather than C++'s std::string, which ↵ | David Joel Schwartz | |
is slower | |||
2011-10-05 | Fix miner_test unit test bug | Gavin Andresen | |
2011-10-05 | Merge branch 'listsinceblock' of https://github.com/cdhowie/bitcoin | Gavin Andresen | |
2011-10-05 | Auto-build dependencies | Gavin Andresen | |
2011-10-05 | Update mac Makefile and build instructions to use MacPorts | Gavin Andresen | |
2011-10-05 | Merge pull request #545 from tcatm/remove-addr.txt | Gavin Andresen | |
remove code that reads addr.txt in LoadAddreses() | |||
2011-10-05 | Merge branch 'no-cryptopp' of https://github.com/tcatm/bitcoin | Gavin Andresen | |
2011-10-05 | Merge pull request #558 from ↵ | Gavin Andresen | |
luke-jr/bugfix_CreateThread_ThreadSocketHandler_errReporting Bugfix: ThreadSocketHandler creation error | |||
2011-10-05 | Merge pull request #561 from luke-jr/optimize_conn_adjtime | Gavin Andresen | |
Only GetAdjustedTime once for the retry loop | |||
2011-10-05 | Send "Connection: close" HTTP header with JSON-RPC requests (client) | Luke Dashjr | |
2011-10-04 | Merge pull request #549 from enmaku/master | Gavin Andresen | |
Python scripts demonstrating using RPC to keep passphrases out of shell history/etc. | |||
2011-10-04 | Merge pull request #547 from TheBlueMatt/build-updates | Gavin Andresen | |
Update release-process to point to gitian.sigs repo. | |||
2011-10-04 | Remove 2 second sleep from CheckWork | David Joel Schwartz | |
2011-10-03 | Bugfix: report error creating ThreadSocketHandler thread just like the rest | Luke Dashjr | |
2011-10-03 | Only GetAdjustedTime once for the retry loop | Luke Dashjr | |
2011-10-03 | Added bitrpc.py which allows for sending of all standard Bitcoin commands ↵ | David Perry | |
via RPC rather than as command line args. Signed-off-by: David Perry <enmaku@gmail.com> | |||
2011-10-03 | Added wallet tools | David Perry | |
Signed-off-by: David Perry <enmaku@gmail.com> | |||
2011-10-03 | Declare integer constant LL | Gavin Andresen | |
2011-10-03 | Update release-process to point to gitian.sigs repo. | Matt Corallo | |
2011-10-02 | Edited doc/readme-qt.rst via GitHub | Wladimir J. van der Laan | |
2011-10-02 | Bugfix: Restore old behaviour of USE_UPNP as close as possible (built & ↵ | Luke Dashjr | |
enabled by default, can be disabled or unsupported by option) | |||
2011-10-01 | remove code that reads addr.txt in LoadAddreses() | Nils Schneider | |
2011-10-01 | Merge pull request #543 from laanwj/utiltests | Gavin Andresen | |
Remove possibility of 63 bit overflow in ParseMoney | |||
2011-10-01 | Merge pull request #476 from forrestv/getmemorypool | Gavin Andresen | |
Added RPC call 'getmemorypool' for p2p mining pools | |||
2011-10-01 | Added RPC call 'getmemorypool' that provides everything needed to construct ↵ | Forrest Voight | |
a block with a custom generation transaction and submit a solution getmemorypool [data] If [data] is not specified, returns data needed to construct a block to work on: "version" : block version "previousblockhash" : hash of current highest block "transactions" : contents of non-coinbase transactions that should be included in the next block "coinbasevalue" : maximum allowable input to coinbase transaction, including the generation award and transaction fees "time" : timestamp appropriate for next block "bits" : compressed target of next block If [data] is specified, tries to solve the block and returns true if it was successful. | |||
2011-10-01 | remove possibility of 63 bit overflow in ParseMoney | Wladimir J. van der Laan | |
- also, add unit tests for various functions in util.cpp/util.h | |||
2011-10-01 | only install translator when not empty | Wladimir J. van der Laan | |
2011-09-30 | simpler ByteReverse | Nils Schneider | |
2011-09-30 | remove cryptopp dependency, add simple unittest for SHA256Transform() | Nils Schneider | |
2011-09-30 | Merge branch 'master' of https://github.com/bitcoin/bitcoin | Wladimir J. van der Laan | |
2011-09-30 | make USE_SSL actually work (thanks @prusnak for noticing) | Wladimir J. van der Laan | |
2011-09-30 | Merge pull request #524 from sipa/signandverif | Gavin Andresen | |
Sign and verify message with bitcoin address | |||
2011-09-29 | Merge pull request #542 from laanwj/qt2 | Gavin Andresen | |
qmake build system improvements | |||
2011-09-29 | qmake build system improvements | Wladimir J. van der Laan | |
- USE_SSL=1 to support RPC SSL - BDB_LIB_SUFFIX= to link against specific BDB version - Fix typo - Start lrelease during qmake phase to prevent errors/warnings |