aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* remove duplicate bitdb.Open() code from initPhilip Kaufmann2013-04-241-9/+0
| | | | - remove code from step 7, which we already have in step 5 of init
* Merge pull request #2526 from Diapolo/Qt_miscWladimir J. van der Laan2013-04-234-10/+8
|\ | | | | Bitcoin-Qt: misc small changes
| * overviewpage: make some code Qt5 compatiblePhilip Kaufmann2013-04-141-2/+3
| | | | | | | | - that changes will be fine for Qt4 also
| * bitcoingui: remove 2 unneeded includesPhilip Kaufmann2013-04-141-2/+0
| |
| * bitcoin: use static QApplication:: instead of app.Philip Kaufmann2013-04-141-5/+4
| |
| * aboutdialog: use just "The Bitcoin developers" as tr()-stringPhilip Kaufmann2013-04-141-1/+1
| | | | | | | | | | - this ensures our new splash screen and this will share a translatable string an remove the need for an additional translation
* | Do not invoke DoS for non-canonical sigsPieter Wuille2013-04-181-1/+9
| |
* | Merge pull request #2525 from laanwj/2013_04_metatypeboolWladimir J. van der Laan2013-04-181-0/+6
|\ \ | | | | | | qt: register metatype for bool*
| * | qt: register metatype for bool*Wladimir J. van der Laan2013-04-141-0/+6
| |/ | | | | | | This allows the bool* type to be passed between threads. Should solve issue #2402.
* | Merge pull request #2501 from Diapolo/progressWladimir J. van der Laan2013-04-183-26/+23
|\ \ | | | | | | rework ClientModel::getBlockSource() + BitcoinGUI::setNumBlocks()
| * | rework ClientModel::getBlockSource() + BitcoinGUI::setNumBlocks()Philip Kaufmann2013-04-103-26/+23
| | | | | | | | | | | | | | | | | | | | | | | | - updates ClientModel::getBlockSource() to return all available states and sorts enum BlockSource in order of usage cases (none default, then reindex, import and network) - updates BitcoinGUI::setNumBlocks() to better use getBlockSource() and also adds a message, when we have NO block source available
* | | Merge pull request #2524 from jonasschnelli/new_splashscreen_freshWladimir J. van der Laan2013-04-187-5/+104
|\ \ \ | | | | | | | | new splash screen
| * | | new splash screenJonas Schnelli2013-04-177-5/+104
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | why: - the current splash-screen has no referring to official images on - https://en.bitcoin.it/wiki/Promotional_graphics - the current splash screen only exists in a low res jpg - current splash screen looks dark and "hackish" - new splash screen should generate positive, "trust-emotions". - new splash screen gives the user infos about the running client. - new splash screen can handle long messages (in a lot of - languages the text is cropped in current release) - new size (x2) 400x312 - contains textual information about the client - textinfos are dynamicly written to the pixmap when -testnet is switch on, the splashscreen will show the bitcoin logo in testnet-color (as well as a text [testnet]) example: https://dl.dropbox.com/u/7383846/new_bitcoin_splash.png
* | | Merge pull request #2536 from jcalvinowens/makefile-clarifying-commentsGavin Andresen2013-04-171-0/+6
|\ \ \ | | | | | | | | Add comments to UNIX Makefile regarding USE_UPNP
| * | | Add comments to UNIX Makefile regarding USE_UPNPCalvin Owens2013-04-171-0/+6
| | | | | | | | | | | | | | | | | | | | The tri-state nature of USE_UPNP isn't immediately obvious, so paste the explanation from doc/build-unix.txt as a comment in the makefile.
* | | | new toolbar icon for liunx/win fix #2518Jonas Schnelli2013-04-172-0/+0
|/ / / | | | | | | | | | | | | | | | | | | | | | On black toolbars, the new icon doesn't look very well. Now the toolbar icon has again a transparent "B" for better style on toolbars. Does not affect the mac client. Signed-off-by: Jonas Schnelli <[email protected]>
* | | Merge pull request #2519 from jonasschnelli/new_testnet_ico_fileWladimir J. van der Laan2013-04-152-0/+1
|\ \ \ | | | | | | | | new testnet ico file
| * | | embed bitcoin_testnet.ico in bitcoin-qt.exe (usable for shortcuts)Philip Kaufmann2013-04-141-0/+1
| | | |
| * | | new testnet window .ico fileJonas Schnelli2013-04-111-0/+0
| | | | | | | | | | | | | | | | Signed-off-by: Jonas Schnelli <[email protected]>
* | | | Require strictly-standard encodings in mempoolPieter Wuille2013-04-141-1/+1
| |/ / |/| |
* | | Merge pull request #2492 from Diapolo/Qt_messageWladimir J. van der Laan2013-04-131-6/+9
|\ \ \ | | | | | | | | Bitcoin-Qt: remove " - " on empty title in BitcoinGUI::message()
| * | | Bitcoin-Qt: remove " - " on empty title in BitcoinGUI::message()Philip Kaufmann2013-04-111-6/+9
| |/ / | | | | | | | | | - don't display "Bitcoin - " when no title was supplied but just "Bitcoin"
* | | Merge pull request #2515 from laanwj/2013_04_move_exportbuttonWladimir J. van der Laan2013-04-136-30/+31
|\ \ \ | | | | | | | | qt: move export button to tabs
| * | | qt: move export button to tabsWladimir J. van der Laan2013-04-126-30/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Having the export button at the top was confusing people into thinking the entire wallet was exported. This commit moves the export button to the address book, receiving addresses and transaction tabs separately.
* | | | Merge pull request #2418 from sipa/uintworkGavin Andresen2013-04-124-31/+43
|\ \ \ \ | | | | | | | | | | Use a uint256 for bnChainWork
| * | | | Use a uint256 for bnChainWorkPieter Wuille2013-04-124-31/+43
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Every block index entry currently requires a separately-allocated CBigNum. By replacing them with uint256, it's just 32 bytes extra in CBlockIndex itself. This should save us a few megabytes in RAM, and less allocation overhead.
* / / / qt: don't show rpcconnect command line option in helpWladimir J. van der Laan2013-04-111-0/+2
|/ / / | | | | | | | | | | | | GUI can't connect to RPC. Showing this option in the help confuses people, so remove it.
* | | Merge pull request #2503 from Diapolo/copyright-yearWladimir J. van der Laan2013-04-113-7/+9
|\ \ \ | |/ / |/| | new COPYRIGHT_YEAR macro in clientversion.h
| * | use the new COPYRIGHT_YEAR macro in bitcoin-qt.rcPhilip Kaufmann2013-04-101-1/+2
| | | | | | | | | | | | - this reduces the places, where we need to change the year further
| * | move COPYRIGHT_YEAR to clientversion.hPhilip Kaufmann2013-04-102-6/+7
| |/ | | | | | | | | - this allows usage of that information also in other places (e.g. splash screen)
* | Merge remote-tracking branch 'jonasschnelli/new_icons' (#2497)Wladimir J. van der Laan2013-04-114-0/+0
|\ \ | | | | | | | | | | | | Conflicts: doc/assets-attribution.txt
| * | better quality windows .ICO icon fileJonas Schnelli2013-04-101-0/+0
| | | | | | | | | | | | | | | | | | - icon quality of the win icon of <256px resolutions are now much better Signed-off-by: Jonas Schnelli <[email protected]>
| * | overhaul of the testnet icon (green color) and the toolbar iconsJonas Schnelli2013-04-093-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | - redefined the green color - created new toolbar icons - updated the assets-attribution.txt Signed-off-by: Jonas Schnelli <[email protected]>
* | | Merge pull request #2487 from Diapolo/translationsWladimir J. van der Laan2013-04-103-168/+63
|\ \ \ | |_|/ |/| | translations update 2013-04-08
| * | translations update 2013-04-08Philip Kaufmann2013-04-083-168/+63
| | | | | | | | | | | | | | | | | | - 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>"
* | | fix mac specific button modification on addressbookpageJonas Schnelli2013-04-091-3/+5
| | | | | | | | | | | | | | | | | | | | | - continue the mac behavior of clearing button icons (because it's unusual on mac apps) - fix: new button variable names, new buttons (verifyMessage, signMessage) Signed-off-by: Jonas Schnelli <[email protected]>
* | | Merge pull request #2469 from Diapolo/clientmodel-progressGavin Andresen2013-04-092-2/+10
|\ \ \ | | | | | | | | Bitcoin-Qt: emit numBlocksChanged for changed reindex or importing state
| * | | Bitcoin-Qt: emit numBlocksChanged for changed reindex or importing statePhilip Kaufmann2013-04-062-2/+10
| | | | | | | | | | | | | | | | | | | | - this allows our progressbarlabel to correctly update, when we finish a reindex or import, but do not get new blocks from other sources
* | | | Merge pull request #2474 from sipa/pre0.8.2Gavin Andresen2013-04-091-3/+3
|\ \ \ \ | | | | | | | | | | Switch version numbers to 0.8.1.99
| * | | | Switch version numbers to 0.8.1.99Pieter Wuille2013-04-061-3/+3
| |/ / /
* | | | Merge pull request #2478 from sipa/fullhashGavin Andresen2013-04-096-54/+44
|\ \ \ \ | | | | | | | | | | Always print full hashes (tx, block, inv)
| * | | | Always print full hashes (tx, block, inv)Pieter Wuille2013-04-076-54/+44
| |/ / /
* | | | Merge pull request #2461 from sipa/syncnodeGavin Andresen2013-04-094-19/+76
|\ \ \ \ | |_|_|/ |/| | | Make sure we always have a node to do IBD from
| * | | Add bytessent, bytesrecv and syncnode to getpeerinfoPieter Wuille2013-04-073-0/+16
| | | |
| * | | Make sure we always have a node to do IBD fromPieter Wuille2013-04-073-19/+60
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | net.cpp: Do not change primary process name from (default) to "bitcoin-start"Jeff Garzik2013-04-081-3/+0
| | | | | | | | | | | | | | | | Discussed a bit on IRC.
* | | | Merge pull request #2243 from luke-jr/bugfix_leveldbGavin Andresen2013-04-082-8/+12
|\ \ \ \ | | | | | | | | | | LevelDB build bugfix
| * | | | Bugfix: makefile.unix: Honour BOOST_LIB_SUFFIX on boost_unit_test_frameworkLuke Dashjr2013-02-191-1/+5
| | | | |
| * | | | Bugfix: makefile.linux-mingw: Fix so passed CXXFLAGS/LDFLAGS work correctlyLuke Dashjr2013-02-191-7/+7
| | | | |
* | | | | Merge pull request #2470 from Diapolo/progressbarlabelWladimir J. van der Laan2013-04-081-1/+1
|\ \ \ \ \ | | | | | | | | | | | | Bitcoin-Qt: update for BitcoinGUI::eventFilter()