aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-04-06Switch version numbers to 0.8.1.99Pieter Wuille
2013-04-06Merge pull request #2459 from Diapolo/pro-fileWladimir J. van der Laan
Bitcoin-Qt: use $$TRANSLATIONS in bitcoin-qt.pro
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 #2465 from jonasschnelli/masterWladimir J. van der Laan
update assets-sttribution.txt (-psd file +svg file)
2013-04-05Merge pull request #2460 from Diapolo/clientmodelPieter Wuille
Bitcoin-Qt: add Genesis blocks time for testnet
2013-04-05Merge pull request #2464 from Diapolo/release-processPieter Wuille
small update to release-process.txt
2013-04-05small update to release-process.txtPhilip Kaufmann
- expand the description for updating the translations - sort the paths/files, which need to have the version number updated, in alphabetical order - use a more current version number in git tag and git shortlog
2013-04-05remove proprietary psd file mentioning from assets-sttribution.txtJonas Schnelli
Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch>
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-04Bitcoin-Qt: use $$TRANSLATIONS in bitcoin-qt.proPhilip Kaufmann
- instead of parsing the project file by using $$_PRO_FILE_ just use $$TRANSLATIONS, which contains a list of all needed files, to build our *.qm translation files
2013-04-04Merge pull request #2454 from TheBlueMatt/masterWladimir J. van der Laan
Fix leveldb make flags in bitcoin-qt.pro
2013-04-04Merge pull request #2455 from Diapolo/pro-fileWladimir J. van der Laan
add missing limitedmap.h to bitcoin-qt.pro
2013-04-04add missing limitedmap.h to bitcoin-qt.proPhilip Kaufmann
2013-04-03Fix leveldb make flags.Matt Corallo
2013-04-03Merge pull request #2423 from TheBlueMatt/limitedmapalreadyaskedforGavin Andresen
Limited mapAlreadyAskedFor
2013-04-03Merge pull request #2449 from Diapolo/docGavin Andresen
move multiwallet-qt.txt from root to doc folder
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-03Merge pull request #2452 from Diapolo/Qt_fix_GUIWladimir J. van der Laan
Bitcoin-Qt: fix GUI after initial multi-wallet patch
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-03move multiwallet-qt.txt from root to doc folderPhilip 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-02Merge pull request #2446 from Diapolo/translationsWladimir J. van der Laan
translation base files update 2013-04-02
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-02change new mac icon license to public domainJonas Schnelli
Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch>
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-02added new mac icon to assets-attribution.txtJonas Schnelli
license: MIT Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch>
2013-04-02Merge pull request #2428 from r000n/stagingWladimir J. van der Laan
Simplify titles of tabs in main window