aboutsummaryrefslogtreecommitdiff
path: root/src/qt/utilitydialog.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Split up util.cpp/hWladimir J. van der Laan2014-08-261-1/+2
| | | | | | | | | | | | | | | | Split up util.cpp/h into: - string utilities (hex, base32, base64): no internal dependencies, no dependency on boost (apart from foreach) - money utilities (parsesmoney, formatmoney) - time utilities (gettime*, sleep, format date): - and the rest (logging, argument parsing, config file parsing) The latter is basically the environment and OS handling, and is stripped of all utility functions, so we may want to rename it to something else than util.cpp/h for clarity (Matt suggested osinterface). Breaks dependency of sha256.cpp on all the things pulled in by util.
* Move `*Version()` functions to version.h/cppWladimir J. van der Laan2014-08-261-1/+1
|
* set shutdown title to main window titlePhilip Kaufmann2014-06-271-0/+1
| | | | | | - this ensures we don't show Bitcoin-Qt as that is still our internal application name - fixes #4427
* qt: Unify AboutDialog and HelpMessageDialogWladimir J. van der Laan2014-06-121-64/+45
| | | | | They share so much code and functionality that they may as well be one class.
* Add 'about' information to `-version` outputWladimir J. van der Laan2014-06-121-6/+14
| | | | | | | Adds a copyright and attribution message to the `-version` output (the same as shown in the About dialog in the GUI). Move the message to a function LicenseInfo in init.cpp.
* Add `-version` option to get just the versionWladimir J. van der Laan2014-06-111-9/+10
| | | | | | | | | Adds a `-version` or `--version` option to print just the version of the program for bitcoind, bitcoin-cli and bitcoin-qt. Also make it that `-help` can be used to display the help (as well as existing `--help`). Up to now, `-help` was the only option that didn't work with either one or two dashes.
* Merge pull request #3922Wladimir J. van der Laan2014-03-291-2/+2
|\ | | | | | | c17f0a5 [Qt] remove space from translation of client bitness (Philip Kaufmann)
| * [Qt] remove space from translation of client bitnessPhilip Kaufmann2014-03-211-2/+2
| | | | | | | | | | - its rather easy to leave out the space on Transifex, so remove it from the string
* | improve command-line options outputCozz Lovan2014-03-251-4/+5
|/
* [Qt] allow translation of client bitnessPhilip Kaufmann2014-02-161-2/+2
|
* qt: Add closing newline to help messageWladimir J. van der Laan2014-01-291-1/+1
| | | | `bitcoin-qt --help` was missing a final newline.
* gitian: Windows 64 bit supportWladimir J. van der Laan2014-01-211-1/+10
| | | | | | - Build a 64 bit version of all dependencies - Show 32/64 bit version in "About..." for x86 - Export 64-bit .exes and installer from gitian build
* [Qt] add utilitydialog.cpp/h and helpmessage classPhilip Kaufmann2014-01-181-0/+125
- adds a nice and well formated dialog, which displays our -? help message (all options/paramaters) - moves aboutdialog.cpp/h to the new utilitydialog - move GUI shutdown window to utilitydialog