Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-05-17 | use _strnicmp (ISO C++) instead of deprecated strnicmp (POSIX) and add ↵ | Philip Kaufmann | |
missing "#define strncasecmp _strnicmp" in init.cpp | |||
2012-05-17 | allow translation of "options" used in the --help message / split ↵ | Philip Kaufmann | |
translation of RPC console welcome message and remove the need to take care of "<br>" / remove some spaces in strings and misc other stuff related to translations | |||
2012-05-16 | Add missing Q_OBJECT in bitcoin.cpp | Wladimir J. van der Laan | |
Fixes translating HelpMessageBox strings. | |||
2012-05-13 | Move help message out of AppInit2 | Wladimir J. van der Laan | |
- Solves #1278, attempts to address #1049 - Removes \t's from help message that are removed afterwards anyway - Moves UI-specific command-line options help to UI code - Moves "-detachdb" out of #ifdef USE_UPNP | |||
2012-05-13 | Move GetStartOnSystemStartup and SetStartOnSystemStartup to GUI code | Wladimir J. van der Laan | |
2012-05-10 | Merge pull request #1090 from laanwj/2012_04_wraptooltips | Wladimir J. van der Laan | |
Allow Qt to wrap long tooltips (fixes #1063) | |||
2012-05-06 | Hide UI immediately after leaving the main loop. | Wladimir J. van der Laan | |
Prevents it from seeming to hang during shutdown if shutdown is triggered while the window is open. | |||
2012-05-05 | Allow Qt to wrap long tooltips (fixes #1063) | Wladimir J. van der Laan | |
Implemented without having to touch any translation: by listening for QEvent::ToolTipChange events, then rewriting the tooltips to prefix `<qt/>` if it is not yet rich text. | |||
2012-05-01 | small translation-file handling / loading changes and re-work comments to be ↵ | Philip Kaufmann | |
clearer | |||
2012-04-22 | Make GetDataDir return absolute paths | Pieter Wuille | |
2012-04-17 | Further reduce header dependencies | Pieter Wuille | |
This commit removes the dependency of serialize.h on PROTOCOL_VERSION, and makes this parameter required instead of implicit. This is much saner, as it makes the places where changing a version number can have an influence obvious. | |||
2012-04-17 | Remove headers.h | Pieter Wuille | |
2012-04-14 | Show a message box when runaway exception happens | Wladimir J. van der Laan | |
This is more clear to users than when the program simply disappears (usually during initialization). It still logs the message to the console and debug log as well. | |||
2012-04-06 | Bugfix: Replace "URL" with "URI" where we aren't actually working with URLs | Luke Dashjr | |
2012-04-04 | qtui.h/noui.h interface cleanup | Wladimir J. van der Laan | |
- rename wxMessageBox, remove redundant arguments to noui/qtui calls - also, add flag to force blocking, modal dialog box for disk space warning etc - clarify function naming - no more special MessageBox needed from AppInit2, as window object is created before calling AppInit2 | |||
2012-04-04 | support RPC stop and encryptwallet with UI | Wladimir J. van der Laan | |
2012-04-04 | remove unused CalledSetStatusBar and UIThreadCall notifications | Wladimir J. van der Laan | |
2012-04-04 | Update UI through async calls MainFrameRepaint and AddressBookRepaint ↵ | Wladimir J. van der Laan | |
instead of a timer. - Overall, this is better design - This fixes problems with the address book UI not updating when the address book is changed through RPC - Move Statusbar change detection responsibility to ClientModel | |||
2012-04-04 | Code deduplication: make function in GUIUtil to get connection type to call ↵ | Wladimir J. van der Laan | |
object slot in GUI thread with invokeMethod. | |||
2012-04-04 | move QT_PLUGINS stuff to qt main file, where it belongs | Wladimir J. van der Laan | |
2012-04-03 | VC2010 compile fixes | Wladimir J. van der Laan | |
2012-03-26 | Disable bitcoin: URI handling on Windows for the 0.6 release | Gavin Andresen | |
2012-03-21 | Correct date | Michael | |
2012-02-26 | Reworked QT settings | Gavin Andresen | |
2012-02-24 | Add option "-splash" so we can disable the splash screen. | Chris Moore | |
Don't show splash screen when -min is specified on the command line. | |||
2012-02-20 | Merge pull request #857 from laanwj/2012_02_fixhelpwindow | Wladimir J. van der Laan | |
On windows, show message box with help, as there is no stderr (fixes #702) | |||
2012-02-17 | Allow setting UI language from commandline (implements #678) | Wladimir J. van der Laan | |
2012-02-17 | On windows, show message box with help, as there is no stderr (fixes #702) | Wladimir J. van der Laan | |
2012-02-10 | Add Bitcoin-Qt test suite with some bitcoin: URL Tests to start. | Matt Corallo | |
2012-02-07 | Update all copyrights to 2012 | Gavin Andresen | |
2012-01-05 | Add support for opening bitcoin: URIs directly. | Matt Corallo | |
2011-12-23 | Comments update | Wladimir J. van der Laan | |
2011-12-21 | Revert "Use standard C99 (and Qt) types for 64-bit integers" | Wladimir J. van der Laan | |
This reverts commit 21d9f36781604e4ca9fc35dc65265593423b73e9. | |||
2011-12-20 | Use standard C99 (and Qt) types for 64-bit integers | Luke Dashjr | |
2011-12-19 | Merge pull request #690 from runeksvendsen/qt-cmdline-options-parsing | Gavin Andresen | |
When using Qt GUI, move parameter-parsing to start of qt/bitcoin.cpp:main() | |||
2011-12-13 | Fix status bar not displaying Alerts. | Matt Corallo | |
2011-12-09 | When using Qt GUI, move parameter-parsing to start of qt/bitcoin.cpp:main() | Rune K Svendsen | |
2011-12-04 | Implement -min option to start minimized | Wladimir J. van der Laan | |
2011-11-03 | Merge git://github.com/p2k/bitcoin-qt | Gavin Andresen | |
2011-11-02 | Mac Deployment Script | p2k | |
See notes.txt in contrib/macdeploy. Also added a dash to the application name in src/qt/bitcoin.cpp | |||
2011-10-23 | Translation lookup logic improvements | Wladimir 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-09 | Improved Mac experience; QDoubleSpinBox for BitcoinAmountField | p2k | |
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-01 | only install translator when not empty | Wladimir J. van der Laan | |
2011-09-27 | translation handling improvements | Wladimir J. van der Laan | |
- automatically build binary translation files in qmake/make - roll translations into resource file and executable, to simply installation | |||
2011-09-07 | Pull request #21: windows fixes/cleanup by Matoking | Janne Pulkkinen | |
2011-08-28 | add russian translation and add unicode compatibility (merges pull request #20) | Misbakh-Soloviev Vadim A | |
2011-08-16 | fix issue #13 | Wladimir J. van der Laan | |
2011-08-08 | QtUI code cleanup / comment improvements | Wladimir J. van der Laan | |
2011-08-07 | don't include <QDebug> | Wladimir J. van der Laan | |
2011-08-02 | update readme and splash screen text | Wladimir J. van der Laan | |