aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2011-12-13Fix status bar not displaying Alerts.Matt Corallo
2011-12-13Enable wordwrap for long message in passphrase dialogWladimir J. van der Laan
- Remove explicit resizing from constructor to prevent potential hang
2011-12-12Merge commit '7298ebb'v0.5.1rc1Gavin Andresen
2011-12-12added translations: pt_BR zh_CNNils Schneider
2011-12-12updated translations: es es_CL nb ruNils Schneider
2011-12-12Merge pull request #694 from luke-jr/restore_old_miniupnp_compatGavin Andresen
Restore compatibility with miniupnpc 1.5 (without breaking miniupnp 1.6)
2011-12-10Restore compatibility with miniupnpc 1.5 (without breaking miniupnp 1.6)Luke Dashjr
2011-12-09Prevent window from being shown momentarily when using -minWladimir J. van der Laan
- In a previous patch, show() was added to all the page switcher functions. As the contructor calls showOverviewPage(), this means the window is shown in the constructor. - This change prevents this by connecting show() to the signal instead.
2011-12-05Merge pull request #679 from laanwj/cmdline_minimizeGavin Andresen
Implement -min option to start minimized
2011-12-04Implement -min option to start minimizedWladimir J. van der Laan
2011-12-02Merge pull request #654 from TheBlueMatt/dnsseed-threadGavin Andresen
Move DNS Seed lookup to a new thread.
2011-12-01Merge pull request #670 from gavinandresen/rpcauth_speedupGavin Andresen
Speed up RPC authentication (reworked pull from Joel Katz)
2011-12-01Speed up RPC authentication (reworked pull from Joel Katz)Gavin Andresen
2011-12-01Orphan block fill-up-memory attack preventionGavin Andresen
2011-12-01Moved checkpoints out of main, to prep for using them to help prevent DoS ↵Gavin Andresen
attacks
2011-11-30Merge pull request #666 from nobled/secstringsGavin Andresen
Implement an mlock()'d string class for storing passphrases
2011-11-30Merge pull request #667 from laanwj/homeaddriconsGavin Andresen
Make home and addressbook icon more consistent with other toolbar icons
2011-11-27Add missing command-line arguments to --help/-? outputGavin Andresen
2011-11-26Move DNS Seed lookup to a new thread.Matt Corallo
2011-11-26Make 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-26Implement an mlock()'d string class for storing passphrasesDylan 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-24allow 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-24update translation: deNils Schneider
2011-11-24add translations: hu ukNils Schneider
2011-11-24Small fixes in both spanish translationsAlex B
2011-11-22update translations: da de nl ru zh_TWNils Schneider
2011-11-22add italian translationNils Schneider
2011-11-21Merge pull request #602 from wowus/masterGavin Andresen
Cleaned up critical section code.
2011-11-21Merge pull request #634 from laanwj/doxygenGavin Andresen
Add doxygen documentation
2011-11-21Merge pull request #632 from mndrix/deprecate-getblocknumberGavin Andresen
Deprecate RPC getblocknumber
2011-11-21Bump version to 0.5.1Gavin Andresen
2011-11-21Bugfix: only make QListView transparent, not its tooltipsLuke Dashjr
2011-11-20close old db when rewritingv0.5.0rc7v0.5.0Pieter Wuille
2011-11-20Never remove database files on shutdown, it caused unreadable wallets on ↵Gavin Andresen
some testers' machines.
2011-11-17Only remove database log files on shutdown after wallet encryption/rewritev0.5.0rc6Gavin Andresen
2011-11-17Create new keypool for newly encrypted wallets.Gavin Andresen
2011-11-15Tweak handling of boost filesystem versionsGavin Andresen
2011-11-15Fix crash-on-osx-on-shutdown bug. And cleanup CDB handling in Rewrite.Gavin Andresen
2011-11-15Fix boost filesystem incompatibility problemv0.5.0rc4Gavin Andresen
2011-11-15add message about restarting bitcoin after encrypting wallet succesfullyWladimir J. van der Laan
2011-11-15Obsolete keypool and make sure database removes log files on shutdown.Gavin Andresen
2011-11-14ResilveringPieter Wuille
2011-11-14Merge pull request #631 from luke-jr/free_iconsGavin Andresen
Free icons
2011-11-14Merge pull request #633 from laanwj/qtrpcconflictGavin Andresen
RPC: do not launch Shutdown in a new thread in case we are running the UI
2011-11-13Improve documentation for UI classesWladimir J. van der Laan
2011-11-13Example documented classWladimir J. van der Laan
2011-11-13Add 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-12Do 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-11Deprecate RPC getblocknumberMichael 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-11Replace kfm_home with go-home for "overview"Luke Dashjr