aboutsummaryrefslogtreecommitdiff
path: root/src/qt
AgeCommit message (Collapse)Author
2011-11-30Merge pull request #666 from nobled/secstringsGavin Andresen
Implement an mlock()'d string class for storing passphrases
2011-11-26Make home and addressbook icon more consistent with other toolbar icons ↵Wladimir J. van der Laan
(make it blue and flip light source direction)
2011-11-26Implement an mlock()'d string class for storing passphrasesDylan Noblesmith
SecureString is identical to std::string except with secure_allocator substituting for std::allocator. This makes casting between them impossible, so converting between the two at API boundaries requires calling ::c_str() for now.
2011-11-24allow for filtering addresses and labels by searching for the typed string ↵Wladimir J. van der Laan
anywhere, not just at the beginning (#641)
2011-11-24update translation: deNils Schneider
2011-11-24add translations: hu ukNils Schneider
2011-11-24Small fixes in both spanish translationsAlex B
2011-11-22update translations: da de nl ru zh_TWNils Schneider
2011-11-22add italian translationNils Schneider
2011-11-21Merge pull request #634 from laanwj/doxygenGavin Andresen
Add doxygen documentation
2011-11-21Bugfix: only make QListView transparent, not its tooltipsLuke Dashjr
2011-11-15add message about restarting bitcoin after encrypting wallet succesfullyWladimir J. van der Laan
2011-11-14Merge pull request #631 from luke-jr/free_iconsGavin Andresen
Free icons
2011-11-13Improve documentation for UI classesWladimir J. van der Laan
2011-11-13Example documented classWladimir J. van der Laan
2011-11-13Add model null pointer check (solves issue #595 and ↵Wladimir J. van der Laan
https://github.com/laanwj/bitcoin-qt/issues/29) Missed this one before, which can be triggered in race condition if window event arrives before model is set
2011-11-11Replace kfm_home with go-home for "overview"Luke Dashjr
2011-11-10Replace icons with Nuvola (LGPL 2.1): some (but not all) GPL-licensedLuke Dashjr
2011-11-10Replace icons with Nuvola (LGPL 2.1): all non-free except for those by ↵Luke Dashjr
Wladimir van der Laan (who will hopefully relicense)
2011-11-08Add robustness against null modelsWladimir J. van der Laan
2011-11-08Fix segmentation fault when editing address not in address book (issue #615)Wladimir J. van der Laan
2011-11-08merged translations from transifex: da de es es_CL nb nl ru zh_TWNils Schneider
2011-11-06add zh_TW localeAng Iong Chun
2011-11-04Merge pull request #606 from dooglus/add-english-translationWladimir J. van der Laan
Add English translation to fix plural(s).
2011-11-04Add English translation to fix plural(s).Chris Moore
2011-11-03Merge git://github.com/p2k/bitcoin-qtGavin Andresen
2011-11-02Mac Deployment Scriptp2k
See notes.txt in contrib/macdeploy. Also added a dash to the application name in src/qt/bitcoin.cpp
2011-10-29Save translators some workWladimir J. van der Laan
- Remove duplicate translation strings (that somehow came from old wx UI and ended up in bitcoinstrings.cpp)
2011-10-23Translation lookup logic improvementsWladimir J. van der Laan
- use wildcard for TRANSLATIONS in bitcoin-qt.pro to automatically build all translations present in src/qt/locale (thanks @tcatm) - first load translations/<language>.qm, then translations/<language>_<TERRITORY>.qm, so that territory-specific translations take precedence, but the fallback is on the base language if no territory-specific translation exists.
2011-10-23Revert "translation fixes"Wladimir J. van der Laan
This reverts commit f86ecd4a062b7f6515208c217f6405e47fa742f5.
2011-10-23translation fixesWladimir J. van der Laan
- use wildcard for TRANSLATIONS in bitcoin-qt.pro to automatically build all translations present in src/qt/locale (thanks @tcatm) - rename language files to the usual <lang>_<TERRITORY> - include recently added language files for es_ES and nb_NO
2011-10-22update translations: nb, es_CL (from transifex)Nils Schneider
2011-10-15Merge pull request #583 from laanwj/qt3Wladimir J. van der Laan
More Qt GUI updates - Make USE_SSL qmake build flag actually work - Improve mac experience, general UI improvements - Add keyboard shortcut to switch between tabs
2011-10-11Merge branch 'master' of https://github.com/bitcoin/bitcoinWladimir J. van der Laan
2011-10-09Added Spanish translation for qtAlex B
2011-10-09Add alt-1..alt-5 shortcut to switch between tabsWladimir J. van der Laan
2011-10-09Improved Mac experience; QDoubleSpinBox for BitcoinAmountFieldp2k
Now it can't be told if this is was a Windows App before. All Mac design principles are fulfilled and some cosmetics have been applied to suit the native look and feel. The biggest change there is the proper use of the Dock icon which takes the role of the Tray icon on Mac. The QDoubleSpinBox improves entering of Bitcoin amounts, no two separate fields are required anymore. All functionality and validation effects have been retained; pressing the comma key will be internally translated to a period to keep it consistent throughout the application and eases entering in countries which use the comma as decimal separator. Additionally, Notificator now supports Growl, Mac's native notification system. This is provided via Apple Script in order to avoid linking to Growl on compile time. Other changes involve encapsulation of Toolbar and Menubar creation, loading of Qt's own translation and some clean up.
2011-10-09Make "Quit" menu sanerWladimir J. van der Laan
- Use 'x' for Exit shortcut - Set Ctrl-Q as global quit key sequence
2011-10-09Merge branch 'master' of https://github.com/bitcoin/bitcoinWladimir J. van der Laan
2011-10-08Remove old wx translations, updated qt translationsGavin Andresen
2011-10-01only install translator when not emptyWladimir J. van der Laan
2011-09-27translation handling improvementsWladimir J. van der Laan
- automatically build binary translation files in qmake/make - roll translations into resource file and executable, to simply installation
2011-09-27Removing the if statement entirely - not needed.Janne Pulkkinen
2011-09-27Send Coins page not cleared when changing tabs. Clear all button for ↵Janne Pulkkinen
clearing the entries
2011-09-24Change define to determine use of DBUS to USE_DBUS, to prevent overlap with ↵Wladimir J. van der Laan
Qt-defined QT_DBUS
2011-09-22show balance in sendcoins screen (issue #24)Wladimir J. van der Laan
2011-09-19put Q_OBJECT everywhere it should be (removes warnings when running lupdate)Wladimir J. van der Laan
2011-09-13make German translation up-to-dateflower
2011-09-11remove transparency effect and windows-specific code for now, it's not ↵Wladimir J. van der Laan
working as supposed
2011-09-11Some Mac OS X specific thingsp2k
* Added application icon for Mac OS X * Added instructions for compiling under Mac OS X * Added Portfile for compiling miniupnpc with MacPorts