aboutsummaryrefslogtreecommitdiff
path: root/src/qt
AgeCommit message (Collapse)Author
2013-05-19translations update 2013-05-19 (for 0.8.2 release)Philip Kaufmann
- integrates current translations from Transifex - new translation: af_ZA
2013-05-08translations update 2013-05-08Philip Kaufmann
- integrates current translations from Transifex
2013-05-07translations update 2013-05-07Philip Kaufmann
- updates bitcoin_en.ts and bitcoinstrings.cpp - integrates current translations from Transifex
2013-05-04Merge pull request #2577 from gavinandresen/fee_bandaidGavin Andresen
Treat dust outputs as non-standard, un-hardcode TX_FEE constants
2013-05-04Merge pull request #2606 from gavinandresen/threadfixPieter Wuille
Exit cleanly if AppInit2 returns false
2013-05-04translations update 2013-05-04Philip Kaufmann
- updates bitcoin_en.ts and bitcoinstrings.cpp - removes bitcoin_se.ts - adds bitcoin_ar.ts - integrates current translations from Transifex
2013-05-03Un-hardcode TX_FEE constantsGavin Andresen
Allow setting of MIN_TX_FEE / MIN_RELAY_TX_FEE with -mintxfee / -mintxrelayfee Default values are the same (0.0001 BTC).
2013-05-03CreateTransaction: return strFailReason on failureGavin Andresen
2013-05-03osx: show testnet icon in dock as early as possibleJonas Schnelli
A green testnet splashscreen with a normal, orange dock icon looks strange and can confuse users. Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch>
2013-05-02Exit cleanly if AppInit2 returns falseGavin Andresen
Bitcoin-Qt could core dump if application initialization failed in certain ways. I double-fixed this: 1) qt/bitcoin.cpp now shuts down core threads cleanly if AppInit2 returns false 2) init.cpp now exits before StartNode() if strErrors is set (no reason to StartNode if we're just going to exit immediately anyway). Tested by triggering all of the various ways AppInit2 can fail, either by passing bogus command-line arguments or just recompiling tweaked code to simulate failure. This is a partial fix for #2480
2013-04-27Merge pull request #2530 from jonasschnelli/mac_win_reopen_fixWladimir J. van der Laan
fixes #1522: GUI Disappearing (Mac OSX)
2013-04-27Merge pull request #2564 from Diapolo/walletviewWladimir J. van der Laan
small updates for walletview.cpp
2013-04-27qt: remove fee recommendation in settingsWladimir J. van der Laan
This value gets stale really quickly, do not hardcode it into a message. Completely remove it for now. Later on, a mechanism will be added to determine fees based on the mempool. Closes #2576
2013-04-26qt: remove extraneous padding introduced in multiwallet support patchWladimir J. van der Laan
solve issue #2529
2013-04-25translations update 2013-04-25Philip Kaufmann
- new language "se" - update bitcoin.qrc and bitcoin_en.ts - fetch current translations from Transifex
2013-04-25small updates for walletview.cppPhilip Kaufmann
- make "&Export" translatable - fix some includes - small formatting changes
2013-04-23Merge pull request #2526 from Diapolo/Qt_miscWladimir J. van der Laan
Bitcoin-Qt: misc small changes
2013-04-18Merge pull request #2525 from laanwj/2013_04_metatypeboolWladimir J. van der Laan
qt: register metatype for bool*
2013-04-18Merge pull request #2501 from Diapolo/progressWladimir J. van der Laan
rework ClientModel::getBlockSource() + BitcoinGUI::setNumBlocks()
2013-04-18Merge pull request #2524 from jonasschnelli/new_splashscreen_freshWladimir J. van der Laan
new splash screen
2013-04-17new toolbar icon for liunx/win fix #2518Jonas Schnelli
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 <jonas.schnelli@include7.ch>
2013-04-17new splash screenJonas Schnelli
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
2013-04-15Merge pull request #2519 from jonasschnelli/new_testnet_ico_fileWladimir J. van der Laan
new testnet ico file
2013-04-15fix: GUI Disappearing #1522 (Mac OSX)Jonas Schnelli
- this solution works stable on mac and ensures that the window get's reopened when the user clicks the dock icon . - tested on 10.8 with Qt4.8.4 and Qt5.0.1 Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch>
2013-04-14embed bitcoin_testnet.ico in bitcoin-qt.exe (usable for shortcuts)Philip Kaufmann
2013-04-14overviewpage: make some code Qt5 compatiblePhilip Kaufmann
- that changes will be fine for Qt4 also
2013-04-14bitcoingui: remove 2 unneeded includesPhilip Kaufmann
2013-04-14bitcoin: use static QApplication:: instead of app.Philip Kaufmann
2013-04-14aboutdialog: use just "The Bitcoin developers" as tr()-stringPhilip Kaufmann
- this ensures our new splash screen and this will share a translatable string an remove the need for an additional translation
2013-04-14qt: register metatype for bool*Wladimir J. van der Laan
This allows the bool* type to be passed between threads. Should solve issue #2402.
2013-04-13Merge pull request #2492 from Diapolo/Qt_messageWladimir J. van der Laan
Bitcoin-Qt: remove " - " on empty title in BitcoinGUI::message()
2013-04-12qt: move export button to tabsWladimir J. van der Laan
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.
2013-04-11Merge pull request #2503 from Diapolo/copyright-yearWladimir J. van der Laan
new COPYRIGHT_YEAR macro in clientversion.h
2013-04-11new testnet window .ico fileJonas Schnelli
Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch>
2013-04-11Bitcoin-Qt: remove " - " on empty title in BitcoinGUI::message()Philip Kaufmann
- don't display "Bitcoin - " when no title was supplied but just "Bitcoin"
2013-04-11Merge remote-tracking branch 'jonasschnelli/new_icons' (#2497)Wladimir J. van der Laan
Conflicts: doc/assets-attribution.txt
2013-04-10Merge pull request #2487 from Diapolo/translationsWladimir J. van der Laan
translations update 2013-04-08
2013-04-10use the new COPYRIGHT_YEAR macro in bitcoin-qt.rcPhilip Kaufmann
- this reduces the places, where we need to change the year further
2013-04-10move COPYRIGHT_YEAR to clientversion.hPhilip Kaufmann
- this allows usage of that information also in other places (e.g. splash screen)
2013-04-10rework ClientModel::getBlockSource() + BitcoinGUI::setNumBlocks()Philip Kaufmann
- 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
2013-04-10better quality windows .ICO icon fileJonas Schnelli
- icon quality of the win icon of <256px resolutions are now much better Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch>
2013-04-09fix mac specific button modification on addressbookpageJonas Schnelli
- 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 <jonas.schnelli@include7.ch>
2013-04-09overhaul of the testnet icon (green color) and the toolbar iconsJonas Schnelli
- redefined the green color - created new toolbar icons - updated the assets-attribution.txt Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch>
2013-04-09Merge pull request #2469 from Diapolo/clientmodel-progressGavin Andresen
Bitcoin-Qt: emit numBlocksChanged for changed reindex or importing state
2013-04-08Merge pull request #2470 from Diapolo/progressbarlabelWladimir J. van der Laan
Bitcoin-Qt: update for BitcoinGUI::eventFilter()
2013-04-08Merge pull request #2481 from laanwj/2013_04_cleanupWladimir J. van der Laan
qt: remove redundant wallet methods from bitcoingui
2013-04-08Merge pull request #2477 from jonasschnelli/new_iconsWladimir J. van der Laan
new icons for windows, linux, etc.
2013-04-08translations update 2013-04-08Philip 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-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