Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-04-08 | translations update 2013-04-08 | Philip Kaufmann | |
- updates for bitcoinstrings.cpp and bitcoin_en.ts - changes help text for -rpcthreads to match -par - fix a small glitch with -par to be "-par=<n>" | |||
2013-04-07 | Merge pull request #2282 from mb300sd/addressinlistunspent | Gregory Maxwell | |
Address in listunspent | |||
2013-04-07 | Merge pull request #2482 from Diapolo/TX-pull | Wladimir J. van der Laan | |
Translations update: pull from Transifex | |||
2013-04-07 | Translations update: pull from Transifex | Philip 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-06 | Merge pull request #2459 from Diapolo/pro-file | Wladimir J. van der Laan | |
Bitcoin-Qt: use $$TRANSLATIONS in bitcoin-qt.pro | |||
2013-04-05 | Merge pull request #2456 from Diapolo/code-layout | Pieter Wuille | |
small indentation, space, formatting fixes (no code changes) | |||
2013-04-06 | small indentation, space, formatting fixes (no code changes) | Philip Kaufmann | |
2013-04-05 | Merge pull request #2443 from Diapolo/Qt_addrbook | Wladimir J. van der Laan | |
Bitcoin-Qt: updates to addressbookpage | |||
2013-04-05 | Merge pull request #2465 from jonasschnelli/master | Wladimir J. van der Laan | |
update assets-sttribution.txt (-psd file +svg file) | |||
2013-04-05 | Merge pull request #2460 from Diapolo/clientmodel | Pieter Wuille | |
Bitcoin-Qt: add Genesis blocks time for testnet | |||
2013-04-05 | Merge pull request #2464 from Diapolo/release-process | Pieter Wuille | |
small update to release-process.txt | |||
2013-04-05 | small update to release-process.txt | Philip 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-05 | remove proprietary psd file mentioning from assets-sttribution.txt | Jonas Schnelli | |
Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch> | |||
2013-04-05 | Merge pull request #2442 from Diapolo/Qt_RPCCon | Wladimir J. van der Laan | |
Bitcoin-Qt: small RPCConsole cleanup | |||
2013-04-05 | Merge pull request #2444 from jonasschnelli/master | Wladimir J. van der Laan | |
new mac osx icon | |||
2013-04-04 | Bitcoin-Qt: add Genesis blocks time for testnet | Philip Kaufmann | |
- add the Genesis blocks time for the testnet in ClientModel::getLastBlockDate() | |||
2013-04-04 | Bitcoin-Qt: use $$TRANSLATIONS in bitcoin-qt.pro | Philip 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-04 | Merge pull request #2454 from TheBlueMatt/master | Wladimir J. van der Laan | |
Fix leveldb make flags in bitcoin-qt.pro | |||
2013-04-04 | Merge pull request #2455 from Diapolo/pro-file | Wladimir J. van der Laan | |
add missing limitedmap.h to bitcoin-qt.pro | |||
2013-04-04 | add missing limitedmap.h to bitcoin-qt.pro | Philip Kaufmann | |
2013-04-03 | Fix leveldb make flags. | Matt Corallo | |
2013-04-03 | Merge pull request #2423 from TheBlueMatt/limitedmapalreadyaskedfor | Gavin Andresen | |
Limited mapAlreadyAskedFor | |||
2013-04-03 | Merge pull request #2449 from Diapolo/doc | Gavin Andresen | |
move multiwallet-qt.txt from root to doc folder | |||
2013-04-03 | Merge pull request #2357 from gavinandresen/shutdowncleanup | Gavin Andresen | |
Thread / shutdown cleanup | |||
2013-04-03 | Merge pull request #2453 from sipa/txstats | Gavin Andresen | |
Update transaction statistics | |||
2013-04-04 | Update transaction statistics | Pieter 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-03 | Have Qt poll for shutdown requested, the QT way. | Gavin Andresen | |
2013-04-03 | Clean up shutdown process | Gavin Andresen | |
2013-04-03 | Port Thread* methods to boost::thread_group | Gavin Andresen | |
2013-04-03 | LoopForever and ThreadTrace helpers | Gavin Andresen | |
2013-04-03 | Bitcoin-Qt: updates to addressbookpage | Philip 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-03 | Rename util.h Sleep --> MilliSleep | Gavin 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-03 | Shutdown cleanup prep-work | Gavin 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-03 | Fix signed/unsigned comparison warnings | Gavin Andresen | |
2013-04-03 | Merge pull request #2450 from Diapolo/Qt_fix_VMTab | Wladimir J. van der Laan | |
Bitcoin-Qt: fix opening verify message tab via main menu | |||
2013-04-03 | Merge pull request #2452 from Diapolo/Qt_fix_GUI | Wladimir J. van der Laan | |
Bitcoin-Qt: fix GUI after initial multi-wallet patch | |||
2013-04-03 | Bitcoin-Qt: fix GUI after initial multi-wallet patch | Philip 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-03 | Bitcoin-Qt: fix opening verify message tab via main menu | Philip Kaufmann | |
2013-04-03 | move multiwallet-qt.txt from root to doc folder | Philip Kaufmann | |
2013-04-02 | Merge pull request #2448 from Diapolo/Qt_qApp | Wladimir J. van der Laan | |
Bitcoin-Qt: only use qApp for Q(Core)Application::instance() | |||
2013-04-02 | new 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-02 | Merge branch 'master' of git://github.com/bitcoin/bitcoin | Jonas Schnelli | |
2013-04-02 | Merge pull request #2420 from sipa/globclean | Gavin Andresen | |
Global cleanups | |||
2013-04-02 | Merge pull request #2431 from jgarzik/gen-bitcoins-init | Gavin Andresen | |
Move GenerateBitcoins() call out of net.cpp's StartNode() | |||
2013-04-02 | Bitcoin-Qt: only use qApp for Q(Core)Application::instance() | Philip Kaufmann | |
2013-04-02 | Bitcoin-Qt: small RPCConsole cleanup | Philip Kaufmann | |
- add missing initalisation for clientModel - remove unneded RPCExecutor::start() code | |||
2013-04-02 | Merge pull request #2441 from Diapolo/Qt_fix_copy_context_menu | Wladimir J. van der Laan | |
Bitcoin-Qt: fix copy via context-menu broken | |||
2013-04-02 | Merge pull request #2446 from Diapolo/translations | Wladimir J. van der Laan | |
translation base files update 2013-04-02 | |||
2013-04-02 | translation base files update 2013-04-02 | Philip 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-02 | change new mac icon license to public domain | Jonas Schnelli | |
Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch> |