Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-12-09 | When using Qt GUI, move parameter-parsing to start of qt/bitcoin.cpp:main() | Rune K Svendsen | |
2011-12-05 | Merge pull request #679 from laanwj/cmdline_minimize | Gavin Andresen | |
Implement -min option to start minimized | |||
2011-12-04 | Implement -min option to start minimized | Wladimir J. van der Laan | |
2011-12-02 | Merge pull request #654 from TheBlueMatt/dnsseed-thread | Gavin Andresen | |
Move DNS Seed lookup to a new thread. | |||
2011-12-01 | Merge pull request #670 from gavinandresen/rpcauth_speedup | Gavin Andresen | |
Speed up RPC authentication (reworked pull from Joel Katz) | |||
2011-12-01 | Speed up RPC authentication (reworked pull from Joel Katz) | Gavin Andresen | |
2011-12-01 | Orphan block fill-up-memory attack prevention | Gavin Andresen | |
2011-12-01 | Moved checkpoints out of main, to prep for using them to help prevent DoS ↵ | Gavin Andresen | |
attacks | |||
2011-11-30 | Merge pull request #666 from nobled/secstrings | Gavin Andresen | |
Implement an mlock()'d string class for storing passphrases | |||
2011-11-30 | Merge pull request #667 from laanwj/homeaddricons | Gavin Andresen | |
Make home and addressbook icon more consistent with other toolbar icons | |||
2011-11-27 | Add missing command-line arguments to --help/-? output | Gavin Andresen | |
2011-11-26 | Move DNS Seed lookup to a new thread. | Matt Corallo | |
2011-11-26 | Make home and addressbook icon more consistent with other toolbar icons ↵ | Wladimir J. van der Laan | |
(make it blue and flip light source direction) | |||
2011-11-26 | Implement an mlock()'d string class for storing passphrases | Dylan Noblesmith | |
SecureString is identical to std::string except with secure_allocator substituting for std::allocator. This makes casting between them impossible, so converting between the two at API boundaries requires calling ::c_str() for now. | |||
2011-11-24 | allow for filtering addresses and labels by searching for the typed string ↵ | Wladimir J. van der Laan | |
anywhere, not just at the beginning (#641) | |||
2011-11-24 | update translation: de | Nils Schneider | |
2011-11-24 | add translations: hu uk | Nils Schneider | |
2011-11-24 | Small fixes in both spanish translations | Alex B | |
2011-11-22 | update translations: da de nl ru zh_TW | Nils Schneider | |
2011-11-22 | add italian translation | Nils Schneider | |
2011-11-21 | Merge pull request #602 from wowus/master | Gavin Andresen | |
Cleaned up critical section code. | |||
2011-11-21 | Merge pull request #634 from laanwj/doxygen | Gavin Andresen | |
Add doxygen documentation | |||
2011-11-21 | Merge pull request #632 from mndrix/deprecate-getblocknumber | Gavin Andresen | |
Deprecate RPC getblocknumber | |||
2011-11-21 | Bump version to 0.5.1 | Gavin Andresen | |
2011-11-21 | Bugfix: only make QListView transparent, not its tooltips | Luke Dashjr | |
2011-11-20 | close old db when rewritingv0.5.0rc7v0.5.0 | Pieter Wuille | |
2011-11-20 | Never remove database files on shutdown, it caused unreadable wallets on ↵ | Gavin Andresen | |
some testers' machines. | |||
2011-11-17 | Only remove database log files on shutdown after wallet encryption/rewritev0.5.0rc6 | Gavin Andresen | |
2011-11-17 | Create new keypool for newly encrypted wallets. | Gavin Andresen | |
2011-11-15 | Tweak handling of boost filesystem versions | Gavin Andresen | |
2011-11-15 | Fix crash-on-osx-on-shutdown bug. And cleanup CDB handling in Rewrite. | Gavin Andresen | |
2011-11-15 | Fix boost filesystem incompatibility problemv0.5.0rc4 | Gavin Andresen | |
2011-11-15 | add message about restarting bitcoin after encrypting wallet succesfully | Wladimir J. van der Laan | |
2011-11-15 | Obsolete keypool and make sure database removes log files on shutdown. | Gavin Andresen | |
2011-11-14 | Resilvering | Pieter Wuille | |
2011-11-14 | Merge pull request #631 from luke-jr/free_icons | Gavin Andresen | |
Free icons | |||
2011-11-14 | Merge pull request #633 from laanwj/qtrpcconflict | Gavin Andresen | |
RPC: do not launch Shutdown in a new thread in case we are running the UI | |||
2011-11-13 | Improve documentation for UI classes | Wladimir J. van der Laan | |
2011-11-13 | Example documented class | Wladimir J. van der Laan | |
2011-11-13 | Add model null pointer check (solves issue #595 and ↵ | Wladimir J. van der Laan | |
https://github.com/laanwj/bitcoin-qt/issues/29) Missed this one before, which can be triggered in race condition if window event arrives before model is set | |||
2011-11-12 | Do not launch Shutdown in a new thread in case we are running the UI. | Wladimir J. van der Laan | |
This leads to the bitcoin core being shut down while the UI is accessing it, and generally results in a segmentation fault or crash. In case it is desirable to make it possible to shutdown the GUI from its RPC server, we'll need to implement a signal for it. For the mean time, this is a safe stopgap. | |||
2011-11-11 | Deprecate RPC getblocknumber | Michael Hendricks | |
This RPC is exactly identical to getblockcount. This duplication dates back to commit 22f721dbf23cf5ce9e3ded9bcfb65a3894cc0f8c when Satoshi created the RPC interface. There's no need to have both, so we standardize on "count" which matches the naming convention in getconnectioncount. Following the tradition established with previously deprecated APIs, getblocknumber continues to work, but it's not listed in the help system. | |||
2011-11-11 | Replace kfm_home with go-home for "overview" | Luke Dashjr | |
2011-11-10 | Replace icons with Nuvola (LGPL 2.1): some (but not all) GPL-licensed | Luke Dashjr | |
2011-11-10 | Replace icons with Nuvola (LGPL 2.1): all non-free except for those by ↵ | Luke Dashjr | |
Wladimir van der Laan (who will hopefully relicense) | |||
2011-11-10 | Merge branch 'nullmodels' of https://github.com/laanwj/bitcoin | Gavin Andresen | |
2011-11-08 | Merge pull request #611 from sipa/docs | Wladimir J. van der Laan | |
Some extra comments | |||
2011-11-08 | Add robustness against null models | Wladimir J. van der Laan | |
2011-11-08 | Fix segmentation fault when editing address not in address book (issue #615) | Wladimir J. van der Laan | |
2011-11-08 | merged translations from transifex: da de es es_CL nb nl ru zh_TW | Nils Schneider | |