aboutsummaryrefslogtreecommitdiff
path: root/src/qt
AgeCommit message (Collapse)Author
2012-09-29Merge pull request #1881 from xanatos/TestsWladimir J. van der Laan
Removed a duplicated identical if
2012-09-28Remove stack randomizationPieter Wuille
2012-09-28toHTML won't add empty wtx.mapValue elementsxanatos
As the code was before, toHTML added empty elements to mapValue to check for their existance. Now first it check for their existance and then for their non-emptiness. Removed a duplicated identical if There are two equal ifs, one inside another. If the first one is true, then the second one is true.
2012-09-25Merge pull request #1854 from Diapolo/fix_1843_V2Wladimir J. van der Laan
additional fix for #1843
2012-09-23Merge pull request #1853 from fanquake/qt-includeWladimir J. van der Laan
Update include for Qt5
2012-09-22Update Qt includefanquake
Update Qmenu include This is to be more consistent with the rest of the source Update Qt Includes
2012-09-22Merge pull request #1852 from fanquake/bugreportlinksWladimir J. van der Laan
Update links to Qt
2012-09-22additional fix for #1843Philip Kaufmann
- a shortcut on "receive coins" was used twice
2012-09-22Update Bugreport Linksfanquake
Update Qt Links Revert Qt source link Update Qt links
2012-09-22Merge pull request #1844 from Diapolo/Qt5_compat1Wladimir J. van der Laan
enhance Qt5 compatibility
2012-09-22Remove unnecessary text from tooltip in AddressBookPageWladimir J. van der Laan
2012-09-21fix #1843 by changing 2 GUI shortcutsPhilip Kaufmann
2012-09-21enhance Qt5 compatibilityPhilip Kaufmann
- replace Q_WS_MAC (not supported anymore in Qt5) with Q_OS_MAC (supported in Qt4/5)
2012-09-21comment update: it's -> itsWladimir J. van der Laan
2012-09-20Merge pull request #1705 from Diapolo/cleanup_bitcoinguiWladimir J. van der Laan
Qt: re-order GUI code and remove FIRST_CLASS_MESSAGING
2012-09-20Merge pull request #1810 from laanwj/2012_09_rpcconsole_eventfilterWladimir J. van der Laan
Improve RPC console key event behaviour
2012-09-20Merge pull request #1717 from Diapolo/Qt_change_TX_displayWladimir J. van der Laan
Qt: show mined transactions at depth 1
2012-09-09Improve RPC console key event behaviourWladimir J. van der Laan
- Paging using PageUp / PageDown now works when entry widget has focus - Typing or pasting while the messages widget has focus auto-selects entry widget
2012-09-09Merge pull request #1802 from luke-jr/bugfix_tsWladimir J. van der Laan
Update translations from Transifex (100% coverage for Finnish and Chinese (China)
2012-09-08Update translations from Transifex (100% coverage for Finnish and Chinese ↵Luke Dashjr
(China)
2012-09-07Merge pull request #1796 from luke-jr/bugfix_tsWladimir J. van der Laan
Various translation fixups and restorations
2012-09-08Partially Bugfix: Update English translation strings and translations from ↵Luke Dashjr
Transifex Bugfix: Correct doubled-up & in translations Bugfix: Remove extra spaces after ampersand in translations (this fixes hotkeys) Restore copyright translations, now split up Restore old translations lost due to changes to English structure Skipped: ca_ES et eu_ES fr_CA (under 10% coverage)
2012-09-07Bitcoin-Qt (Windows only): add version info to Resource FilePhilip Kaufmann
- add version information to bitcoin-qt.rc, which is displayed on Windows, when looking in the executable properties and selecting "Details" - introduce a new clientversion.h (used in bitcoin-qt.rc to generate version information), which takes only the version defines from version.h and is included in it (to allow usage with the windres rc-file compiler) - move #define STRINGIFY(s) #s into clientversion.h as that is used in bitcoin-qt.rc and rename to DO_STRINGIZE(X) - add #define STRINGIZE(X) DO_STRINGIZE(X), which is needed to convert the version defines into a version string in the rc-file - this ensures we only need to update 1 file and have bitcoin-qt.exe version information - for RC-file documentation see: http://msdn.microsoft.com/en-us/library/windows/desktop/aa381058%28v=vs.85%29.aspx
2012-09-05Merge branch 'testnet_alert' of git://github.com/gavinandresen/bitcoin-gitGavin Andresen
2012-09-04Merge pull request #1738 from laanwj/2012_08_boostthreadJeff Garzik
implement CreateThread with boost::thread
2012-09-01RPC console: escaping within ' and " now handled differentlyWladimir J. van der Laan
Should now mimic bash quoting and escaping (see http://wiki.bash-hackers.org/syntax/quoting) exactly, leaving out argument expansion and obscure syntax like $''.
2012-08-31In RPC console, attempt to format errorsWladimir J. van der Laan
Try to display a nicer message instead of dumping raw JSON object when possible. If the error somehow doesn't have the required 'code' and 'message' fields, fall back to printing raw JSON object.
2012-08-31Fix RPC console parser to handle escaped arguments more like bashWladimir J. van der Laan
- Fix issue #1750
2012-08-29Rename CreateThread to NewThreadWladimir J. van der Laan
Prevent clash with win32 API symbol
2012-08-29Qt: re-order GUI codePhilip Kaufmann
- re-order Qt Actions and connect() calls to match the real GUI layout, which makes things easier to read and understand - remove signMessageAction and verifyMessageAction from tabGroup as we didn't use them anyway (as tooltips are not displayed in the menu remove these too) - update 2 comments
2012-08-29remove FIRST_CLASS_MESSAGING support from the clientPhilip Kaufmann
- removes the FIRST_CLASS_MESSAGING support from the client, which was no default setting anyway
2012-08-29Update strings for 0.7.0rc2Wladimir J. van der Laan
2012-08-29Merge pull request #1617 from Diapolo/Show_Hide_stringWladimir J. van der Laan
Update string for Show/Hide in the tray
2012-08-29Merge pull request #1720 from Diapolo/Qt_aboutWladimir J. van der Laan
Qt: add copyrightLabel to aboutdialog.ui
2012-08-29Update string for Show/Hide in the trayPhilip Kaufmann
- be clear we don't "Show/Hide Bitcoins", but just the client window - remove the tooltip for toggleHideAction as this is not shown anyway - update a comment to be more general
2012-08-28Refactor: move alert code from main to alert.cpp/hGavin Andresen
2012-08-27Fix compiler warning on macGavin Andresen
2012-08-27Merge branch 'bugfix_gitian' of git://github.com/luke-jr/bitcoinGavin Andresen
2012-08-27Bugfix: Move boost::interprocess Win32 workaround to Bitcoin-Qt sources, ↵Luke Dashjr
rather than hacking boost in gitian
2012-08-25Merge branch '2012_08_progressbarwin' of git://github.com/laanwj/bitcoinGavin Andresen
2012-08-25Update Czech translation from TransifexWladimir J. van der Laan
2012-08-24Abstract all IPC communication to qtipcserverLuke Dashjr
2012-08-24Override progress bar on platforms with segmented progress barsWladimir J. van der Laan
Windows & WindowsXP style have a problem with displaying the block progress. Add a custom stylesheet as workaround, but only when one of those renderers is active, otherwise leave the theme alone (issue #1071).
2012-08-24Qt: add copyrightLabel to aboutdialog.uiPhilip Kaufmann
- add a new label, which can be updated independently from the whole license information stuff - the benefit is, we don't need to re-translate that whole wall of text every year the copyright info changes - update to the same copyright string we use in the source and in the bitcoin-qt.exe meta-data information - removes an obsolete entry from the ui-file
2012-08-24Qt: show mined transactions at depth 1Philip Kaufmann
- before, we used to show them in GUI when depth >= 2, which could lead to confusion of users, as the RPC behaviour already showed the Tx
2012-08-23Treat generation (mined) transactions less different from receive transactionsLuke Dashjr
- Show address receiving the generation, and include it in the correct "account" - Multiple entries in listtransactions output if the coinbase has multiple outputs to us
2012-08-23Add icon for "About Qt" in menuWladimir J. van der Laan
Use the built-in icon that is also used in the dialog box itself.
2012-08-22Update translations from transifexWladimir J. van der Laan
2012-08-14Bitcoin-Qt (Windows only): extend Resource FilePhilip Kaufmann
- extend bitcoin-qt.rc to include meta information, which is displayed on Windows, when looking in the executable properties and selecting "Details" - does currently NOT include version information, this is scheduled for later releases - for RC-file documentation see: http://msdn.microsoft.com/en-us/library/windows/desktop/aa381058%28v=vs.85%29.aspx
2012-08-13Merge pull request #1649 from Diapolo/optionsdialogWladimir J. van der Laan
small UX update for optionsdialog