aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-05-26gitian-downloader: Update luke-jr's keyLuke Dashjr
2012-06-20gitian-downloader: Update luke-jr's keyLuke Dashjr
2012-06-20Merge pull request #1488 from sipa/noownerJeff Garzik
Remove CTxDB::ReadOwnerTxes.
2012-06-20Remove CTxDB::ReadOwnerTxes.Pieter Wuille
It seems it wasn't ever used since 0.1.5.
2012-06-19Merge pull request #1483 from Diapolo/txtablemodel_updateDisplayUnitWladimir J. van der Laan
GUI: ensure a changed bitcoin unit immediately updates the tx list amounts
2012-06-20GUI: ensure a changed bitcoin unit immediately updates the tx list amountsPhilip Kaufmann
2012-06-19print large orphan warning BEFORE deleting pvMsgGavin Andresen
2012-06-19Merge pull request #1485 from xanatos/patch-1Pieter Wuille
Small logical error in mruset
2012-06-19If (for example) the new max_size must be 5 then at the end the queue.size() ↵xanatos
must be <= 5, so the exit condition must be <=, so the continuing condition must be > (and not >= as it was).
2012-06-19Fix netbase testsPieter Wuille
* Do not rely on "a.b.c" being interpreted as "a.0.b.c" * Parse numeric addresses for address families for which no device is configured
2012-06-18Merge pull request #1399 from sipa/ipparseGavin Andresen
Improve parsing of IPv6 addresses
2012-06-18Merge branch 'master' of https://github.com/fanquake/bitcoinGavin Andresen
2012-06-18Merge branch 'signbugs' of https://github.com/wizeman/bitcoinGavin Andresen
Resolved minor conflict in main.cpp
2012-06-18OS X not OSXfanquake
2012-06-18Further updates to build instructionsfanquake
2012-06-18Merge pull request #1480 from fanquake/masterGavin Andresen
Update OSX build instructions
2012-06-18Update OSX build instructionsFordy
2012-06-17Merge pull request #1477 from gmaxwell/masterPieter Wuille
Fix inverted logic for !Discover/!UPNP when !Listen.
2012-06-17Merge pull request #1434 from Diapolo/GUI_fix_displayunitWladimir J. van der Laan
GUI: init with correct display unit and update it, when user changes it via options dialog
2012-06-17Merge pull request #1451 from Diapolo/sendcoinsWladimir J. van der Laan
GUI: set cursor for balance field to IBeamCursor (to show the user it IS selectable)
2012-06-17Merge pull request #1461 from laanwj/2012_06_helpmessageWladimir J. van der Laan
Show command line options as dialog when opened from debug window
2012-06-17Fix inverted logic for !Discover/!UPNP when !Listen.Gregory Maxwell
2012-06-17add the slot updateDisplayUnit() to overviewpage, sendcoinsdialog, ↵Philip Kaufmann
sendcoinsentry and connect it to displayUnitChanged() - this ensures all fields in the GUI, who use a display unit are imediately updated, when the user changes this setting in the optionsdialog / ensure used fields init with the current set display unit
2012-06-14Document how to build/run unit testsGavin Andresen
2012-06-14Merge pull request #1463 from sipa/fix_1455Gregory Maxwell
Use a 64-bit nonce in ping
2012-06-14Use a 64-bit nonce in pingPieter Wuille
Former code sent '0' as nonce, which was serialized as 32-bit.
2012-06-14Add netbase testsPieter Wuille
2012-06-14Improve parsing of IPv6 addressesPieter Wuille
Implement the following rules: * Interpret [X]:Y as host=X port=Y, if Y is an integer * Interpret X:Y as host=X port=Y, if Y is an integer and X contains no colon * Interpret X:Y as host=X:Y port=default otherwise
2012-06-14Show command line options as dialog when opened from debug windowWladimir J. van der Laan
On Linux/Mac the command-line options were printed to stderr when the button was pressed in the debug window, resulting in confusion. This is fixed in this commit by adding a separate method.
2012-06-14Merge pull request #1459 from laanwj/2012_06_trayiconmenuWladimir J. van der Laan
Reorganize tray icon menu into more logical order
2012-06-14Fix build of testcases after commit 0f10b21719e1b0d9683a142f0a7105e65f095694Wladimir J. van der Laan
2012-06-13Merge pull request #1002 from Diapolo/URL-handling_2Wladimir J. van der Laan
URI-handling code update: added safety checks and notifications
2012-06-13Merge pull request #1439 from Diapolo/ClientShutdownWladimir J. van der Laan
re-work Shutdown() function
2012-06-14Reorganize tray icon menu into more logical orderWladimir J. van der Laan
The current order of menu options in the tray menu doesn't really match expected usage patterns, this commit changes it to more logical order. - Toggle show/hide first (unchanged) - Then, send/receive coins actions, which are the critical functionality of bitcoin - Then, sign/verify message - Then finally the options, and closing with the debug window
2012-06-14URI-handling code update: added safety checks and tray-notificationsPhilip Kaufmann
2012-06-13Merge pull request #1420 from Diapolo/extend_showNormalIfMinimizedWladimir J. van der Laan
GUI: merge toggleHidden() code into showNormalIfMinimized()
2012-06-13Merge branch 'refactor_coinselect' of https://github.com/luke-jr/bitcoinGavin Andresen
2012-06-13set cursor for balance field to IBeamCursor (to show the user it IS ↵Philip Kaufmann
selectable) and set autoDefault to false for the buttons that do not need this
2012-06-13Merge pull request #1448 from Diapolo/2012-06-13_translation_updatesWladimir J. van der Laan
update translation files (fetched from Transifex - 2012-06-13)
2012-06-13Merge pull request #1449 from laanwj/2012_06_bitcoinstringsWladimir J. van der Laan
Update bitcoinstrings.cpp and English source translation file
2012-06-13Update bitcoinstrings from core and English source translation fileWladimir J. van der Laan
This is necessary as any strings have changed since last time. Also the python script used to extract bitcoinstrings.cpp, extract_strings_qt.py now sorts the strings before generating the output file. This results in more deterministic output and thus smaller diffs.
2012-06-13update translation files (fetched from Transifex) and remove translation for ↵Philip Kaufmann
fr_FR, which was removed / renamed on TX
2012-06-13Merge pull request #1433 from Diapolo/tabbed_optionsdialogWladimir J. van der Laan
GUI: re-work current options dialog to a tabbed layout and use an UI-file
2012-06-13re-work optionsdialog to a tabbed UI based on an ui-filePhilip Kaufmann
- extend network options with a SOCKS version selection - changing "Unit to show amounts in:" now also updates the unit used in the transaction fee box - string updates - link Apply button and OK button when enabling or disabling them - use LookupNumeric() from netbase to verify proxy address (via an EventFilter) - change proxy address field to QValidatedLineEdit and add visual feedback - add a status label used for displaying a message for invalid proxy addresses - allow usage of IPv6 address as proxy address - added warning message when enabling / disabling SOCKS proxy
2012-06-12Merge pull request #1444 from laanwj/2012_06_opendebuglogWladimir J. van der Laan
Cross-platform “Open debug logfile”
2012-06-12Merge pull request #1445 from Diapolo/RPCCon_Button_noAutoDefaultWladimir J. van der Laan
GUI: make buttons in debug window non autoDefault
2012-06-12Merge pull request #1446 from TheBlueMatt/changelogGavin Andresen
Update wiki changelog at doc/release-process.txt
2012-06-13Update wiki changelog at doc/release-process.txtMatt Corallo
2012-06-12merge toggleHidden() code into showNormalIfMinimized() to extend the ↵Philip Kaufmann
functionality, but keep a simpler toggleHidden() for use in SLOT() macro
2012-06-12make buttons in debug window non autoDefaultPhilip Kaufmann