aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-04-07Make sure we always have a node to do IBD fromPieter Wuille
This introduces the concept of the 'sync node', which is the one we asked for missing blocks. In case the sync node goes away, a new one will be selected. For now, the heuristic is very simple, but it can easily be extended later to add better policies.
2013-04-07Translations update: pull from TransifexPhilip Kaufmann
- added languages in bitcoin.qrc: bs, ca, cy, eo, gu_IN, hi_IN, ja, la, lv_LV and th_TH (some translations files were already in src/qt/locale but not added in the .qrc file
2013-04-07qt: remove redundant wallet methods from bitcoinguiWladimir J. van der Laan
send encryptWallet/backupWallet/changePassphrase directly to walletFrame
2013-04-07Always print full hashes (tx, block, inv)Pieter Wuille
2013-04-06new windows and linux iconsJonas Schnelli
- new windows .ico contains multiple resolutions up to 256px - new testnet (green) icon - new png icon for llinux, etc. - new doxygen icon - changed the assets-attribution.txt Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch>
2013-04-06moved bitcoin.svg to correct folder (qt/res/src)Jonas Schnelli
Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch>
2013-04-06Bitcoin-Qt: emit numBlocksChanged for changed reindex or importing statePhilip Kaufmann
- this allows our progressbarlabel to correctly update, when we finish a reindex or import, but do not get new blocks from other sources
2013-04-06Switch version numbers to 0.8.1.99Pieter Wuille
2013-04-06Bitcoin-Qt: update for BitcoinGUI::eventFilter()Philip Kaufmann
- this allows us to use the progressbar and the label independently (if needed) and still prevents setStatusTip() to use them, if one of the 2 is active
2013-04-05Merge pull request #2456 from Diapolo/code-layoutPieter Wuille
small indentation, space, formatting fixes (no code changes)
2013-04-06small indentation, space, formatting fixes (no code changes)Philip Kaufmann
2013-04-05Merge pull request #2443 from Diapolo/Qt_addrbookWladimir J. van der Laan
Bitcoin-Qt: updates to addressbookpage
2013-04-05Merge pull request #2460 from Diapolo/clientmodelPieter Wuille
Bitcoin-Qt: add Genesis blocks time for testnet
2013-04-05Merge pull request #2442 from Diapolo/Qt_RPCConWladimir J. van der Laan
Bitcoin-Qt: small RPCConsole cleanup
2013-04-05Merge pull request #2444 from jonasschnelli/masterWladimir J. van der Laan
new mac osx icon
2013-04-04Bitcoin-Qt: add Genesis blocks time for testnetPhilip Kaufmann
- add the Genesis blocks time for the testnet in ClientModel::getLastBlockDate()
2013-04-04Drop release times for CNodePieter Wuille
It seems there were two mechanisms for assessing whether a CNode was still in use: a refcount and a release timestamp. The latter seems to have been there for a long time, as a safety mechanism. However, this timer also keeps CNode objects alive for far longer than necessary after disconnects, potentially opening up a DoS window. This commit removes the timestamp-based mechanism, and replaces it with an assert(nRefCount >= 0), to verify that the refcounting is indeed correctly working.
2013-04-03Merge pull request #2423 from TheBlueMatt/limitedmapalreadyaskedforGavin Andresen
Limited mapAlreadyAskedFor
2013-04-03Merge pull request #2357 from gavinandresen/shutdowncleanupGavin Andresen
Thread / shutdown cleanup
2013-04-03Merge pull request #2453 from sipa/txstatsGavin Andresen
Update transaction statistics
2013-04-04Update transaction statisticsPieter Wuille
As these were not updated when 'backporting' the 225430 checkpoint into head. Additionally, also report verification progress in debug.log, and tweak the sigcheck-verification-speed-factor a bit.
2013-04-03Have Qt poll for shutdown requested, the QT way.Gavin Andresen
2013-04-03Clean up shutdown processGavin Andresen
2013-04-03Port Thread* methods to boost::thread_groupGavin Andresen
2013-04-03LoopForever and ThreadTrace helpersGavin Andresen
2013-04-03Bitcoin-Qt: updates to addressbookpagePhilip Kaufmann
- use labelExplanation for sending and receiving tab and move the string from the ui-file to the source - ensure that the table holding the label and address is resized so that the address column fits the address and the label column is stretched to fit the window size - rename some stuff for much easier readbility in the code (I find it hard to get the meaning of stuff like labels or buttons)
2013-04-03Rename util.h Sleep --> MilliSleepGavin Andresen
Two reasons for this change: 1. Need to always use boost::thread's sleep, even on Windows, so the sleeps can be interrupted (prior code used Windows' built-in Sleep). 2. I always forgot what units the old Sleep took.
2013-04-03Shutdown cleanup prep-workGavin Andresen
Create a boost::thread_group object at the qt/bitcoind main-loop level that will hold pointers to all the main-loop threads. This will replace the vnThreadsRunning[] array. For testing, ported the BitcoinMiner threads to use its own boost::thread_group.
2013-04-03Fix signed/unsigned comparison warningsGavin Andresen
2013-04-03Merge pull request #2450 from Diapolo/Qt_fix_VMTabWladimir J. van der Laan
Bitcoin-Qt: fix opening verify message tab via main menu
2013-04-03Bitcoin-Qt: fix GUI after initial multi-wallet patchPhilip Kaufmann
- adds 6 methods in BitcoinGUI to access some actions needed by the new WalletView class - updates WalletView class to use these instead of trying to duplicate these - cleanup walletview.{cpp/h} and remove all unneeded stuff - this fixes problems with tabs toolbar (#2451) and export broken (#2436) - more details in #2447
2013-04-03Bitcoin-Qt: fix opening verify message tab via main menuPhilip Kaufmann
2013-04-02Merge pull request #2448 from Diapolo/Qt_qAppWladimir J. van der Laan
Bitcoin-Qt: only use qApp for Q(Core)Application::instance()
2013-04-02new mac osx icon (including SVG Version)Jonas Schnelli
- added new created and documented svg version of shaded icon - changed "B" background to white (no longer transparent) - removed PSD (Adobe Photoshop) document - license is now MIT Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch>
2013-04-02Merge branch 'master' of git://github.com/bitcoin/bitcoinJonas Schnelli
2013-04-02Merge pull request #2420 from sipa/globcleanGavin Andresen
Global cleanups
2013-04-02Merge pull request #2431 from jgarzik/gen-bitcoins-initGavin Andresen
Move GenerateBitcoins() call out of net.cpp's StartNode()
2013-04-02Bitcoin-Qt: only use qApp for Q(Core)Application::instance()Philip Kaufmann
2013-04-02Bitcoin-Qt: small RPCConsole cleanupPhilip Kaufmann
- add missing initalisation for clientModel - remove unneded RPCExecutor::start() code
2013-04-02Merge pull request #2441 from Diapolo/Qt_fix_copy_context_menuWladimir J. van der Laan
Bitcoin-Qt: fix copy via context-menu broken
2013-04-02translation base files update 2013-04-02Philip Kaufmann
- also includes a small change to a string in bitcoinrpc.cpp, which is not on Transifex anyway, so is safe to merge
2013-04-02Bitcoin-Qt: fix copy via context-menu brokenPhilip Kaufmann
- as QClipboard::Selection isn't available on Windows ensure that the correct mode is called, but sill allow selection for e.g. X11 - start conversion from QCoreApplication::instance() to qApp in guiutil.cpp (I intend to harmonize this all over the source with my Qt5 compatibility pull)
2013-04-02Merge pull request #2428 from r000n/stagingWladimir J. van der Laan
Simplify titles of tabs in main window
2013-04-02new mac osx iconJonas Schnelli
check why/preview: http://dl.dropbox.com/u/7383846/new_bitcoin_qt_mac_icon.png - according to official bitcoin logo - no chopped shadow - retina-screen support Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch>
2013-04-01Move mapAlreadyAskedFor to limitedmapMatt Corallo
This will result in re-requesting invs if we are under heavy inv load, however as long as we get no more than 16,000 invs in two minutes, this should have no effect on runtime behavior.
2013-04-01Add a limitedmap class similar to mrusetMatt Corallo
2013-04-01Revert "Actually use mapAlreadyAskedFor."Matt Corallo
This reverts commit 643160f6e7e5e8ca84bc7d2c1a0f37d9cf43a6e1. Turns out this commit was useless after a more careful reading of CNode::AskFor
2013-04-01Merge pull request #2387 from Diapolo/translationsWladimir J. van der Laan
translations update 2013-03-19 (bitcoinstrings.cpp / bitcoin_en.ts)
2013-04-01Merge pull request #2437 from Diapolo/Qt_fixesWladimir J. van der Laan
fix "send coins" via context menu in address book
2013-04-01Bitcoin-Qt: fix debug windowPhilip Kaufmann
- fix debug window, by re-adding rpcConsole->setClientModel(clientModel); in BitcoinGUI::setClientModel(), which was removed by #2220