aboutsummaryrefslogtreecommitdiff
path: root/src/init.cpp
AgeCommit message (Collapse)Author
2012-06-14Bugfix: Fix various places where Bitcoin-Qt was being shutdown improperlyPhilip Kaufmann
(Partial/merge of upstream 9247134eaba9a1d0fa74f22de238af1476663005, 1a3f0da9229a8e524d1010cdc8bd3b9da71fe529, and 3e343522226e6c249f5cb05436eec347b87c6361)
2012-06-14Don't call exit() in Shutdown() for Bitcoin-Qt (fixes a tray-icon issue)Philip Kaufmann
(partial of 9247134eaba9a1d0fa74f22de238af1476663005)
2012-05-20Update License in File HeadersFordy
I originally created a pull to replace the "COPYING" in crypter.cpp and crypter.h, but it turned out that COPYING was actually the correct file.
2012-03-21Merge branch '0.4.x' into 0.5.0.xLuke Dashjr
2012-03-19Print wallet load errors (to debug.log)Luke Dashjr
2012-02-27On windows, show message box with help, as there is no stderr (fixes #702)Wladimir J. van der Laan
(partial)
2012-02-17Change #ifdef GUI to #ifdef QT_GUI, GUI is not defined anymore...Wladimir J. van der Laan
2012-02-17don't allow -daemon in bitcoin-qt (changes only #defines)Wladimir J. van der Laan
2012-02-14Enable accessible widgets Qt module on win32, so that people with screen ↵Wladimir J. van der Laan
readers such as NVDA can make sense of it.
2012-02-07Update copyrights to 2012 for files modified this yearLuke Dashjr
2012-02-07Bugfix: Capitalize kB correctly (upstream: 9d4b05c)Luke Dashjr
2012-02-07Update copyrights to 2012 for files modified this yearLuke Dashjr
2012-02-02Merge branch '0.4.x' into 0.5.0.xLuke Dashjr
Conflicts: src/main.cpp
2012-02-02Allow -upnp to override setting in wallet (and simplify logic a bit)Gavin Andresen
2012-01-03Merge branch '0.4.x' into 0.5.0.xLuke Dashjr
Conflicts: src/util.cpp
2012-01-03I broke -testnet with my TOR option-parsing fixes.Gavin Andresen
2012-01-03Fix issue #659, and cleanup wallet/command-line argument handling a bitGavin Andresen
Conflicts: src/init.cpp src/util.cpp
2011-12-02Move DNS Seed lookup to a new thread.Matt Corallo
2011-12-02Move DNS Seed lookup to a new thread.Matt Corallo
2011-12-01Add missing command-line arguments to --help/-? outputGavin Andresen
2011-12-01Add missing command-line arguments to --help/-? outputGavin Andresen
2011-11-17Only remove database log files on shutdown after wallet encryption/rewriteGavin Andresen
2011-11-17Only remove database log files on shutdown after wallet encryption/rewritev0.5.0rc6Gavin Andresen
2011-11-15Obsolete keypool and make sure database removes log files on shutdown.Gavin Andresen
2011-11-15Obsolete keypool and make sure database removes log files on shutdown.Gavin Andresen
2011-10-25Optionally include additional QT plugins when required to build.Matt Corallo
2011-10-07Fix build on windows and macGavin 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-09-26Remove wxWidgetsGavin Andresen
Makefiles now build bitcoind only. qmake/make in top-level directory is used to build Bitcoin QT Deleted almost all #ifdef GUI from the code (left one possibly controversial one) Deleted xpm/ files.
2011-09-26Merge pull request #517 from gavinandresen/DoSpreventionGavin Andresen
Denial-of-service prevention
2011-09-21Framework for banning mis-behaving peersGavin Andresen
2011-09-02bitcoin-qt cannot be used as command line rpc clientWladimir J. van der Laan
2011-08-28add russian translation and add unicode compatibility (merges pull request #20)Misbakh-Soloviev Vadim A
2011-08-16Merge branch 'master' of https://github.com/bitcoin/bitcoinWladimir J. van der Laan
2011-08-09Unify copyright notices.Matt Corallo
To a variation on: // Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2011 The Bitcoin developers
2011-08-06Merge branch 'master' of https://github.com/bitcoin/bitcoinWladimir J. van der Laan
2011-08-03Don't listen if on TOR (resolves #441).Matt Corallo
2011-08-02add splash screenWladimir J. van der Laan
2011-07-26Merge remote branch 'upstream/master'Wladimir J. van der Laan
Conflicts: src/bitcoinrpc.cpp
2011-07-17get rid of mapPubKeysPieter Wuille
Make CKeyStore's interface work on uint160's instead of pubkeys, so no separate global mapPubKeys is necessary anymore.
2011-07-15Merge branch 'master' of https://github.com/bitcoin/bitcoinWladimir J. van der Laan
2011-07-12Merge pull request #381 from TheBlueMatt/nminversionJeff Garzik
Add minversion to wallet.
2011-07-08Prepare codebase for Encrypted Keys.Pieter Wuille
2011-07-07Sync to bitcoin git e94010b2395694d56dd6Wladimir J. van der Laan
2011-07-05Add minversion to wallet.Matt Corallo
2011-07-03windows build fixesWladimir J. van der Laan
2011-07-01Enable DNS seeding by default.Jeff Garzik
2011-06-26update core to d0d80170a2ca73004e08fb85007fe055cbf4e411 (CWallet class)Wladimir J. van der Laan
2011-06-23Edited init.cpp to include a check that -datadir existsJames Burkle
2011-06-22use #ifdef QT_UI to distinguish Qt UI instead of hardcoded #if 0Wladimir J. van der Laan
2011-06-20fixes for mac buildmark