Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-05-08 | RPC: Support HTTP/1.0 and HTTP/1.1, including the proper use of keep-alives | David Joel Schwartz | |
2012-05-08 | Support multi-threaded JSON-RPC | David Joel Schwartz | |
Change internal HTTP JSON-RPC server from single-threaded to thread-per-connection model. The IP filter list is applied prior to starting the thread, which then processes the RPC. A mutex covers the entire RPC operation, because not all RPC operations are thread-safe. [minor modifications by jgarzik, to make change upstream-ready] | |||
2012-05-08 | Merge branch 'tmp-ipv6' into merge-ipv6 | Jeff Garzik | |
2012-05-08 | Merge pull request #886 from luke-jr/getblock_full | Gregory Maxwell | |
More details for getblock and gettransaction | |||
2012-05-08 | remove 2 obsolete functions from init.h that moved to util.h | Philip Kaufmann | |
2012-05-08 | Support for decomposing scripts as "obj" | Luke Dashjr | |
2012-05-08 | Second parameter to JSON-RPC getblock/gettransaction: decompositions | Luke Dashjr | |
This is an Object specifying how to decompose specific elements. Currently supported: - "tx": "no", "hash", "hex", "obj" - "script": "no", "hex", "asm" | |||
2012-05-08 | Add block "confirmations" to getblock, mainly for identifying orphans | Luke Dashjr | |
2012-05-08 | Merge pull request #1180 from jgarzik/sign-compare | Jeff Garzik | |
Fix final sign comparison warnings | |||
2012-05-08 | Merge pull request #841 from sipa/getalltransactions | Gregory Maxwell | |
gettransaction RPC for non-wallet transactions | |||
2012-05-08 | Merge pull request #883 from sipa/loadblock | Gregory Maxwell | |
Add -loadblock to load from an external blk000?.dat file | |||
2012-05-08 | Merge pull request #1075 from laanwj/2012_04_consoleui | Gregory Maxwell | |
Add UI RPC console / debug window | |||
2012-05-08 | Increase client version to 0.6.99 | Gregory Maxwell | |
2012-05-07 | Merge pull request #1219 from luke-jr/rm_fee_tip | Wladimir J. van der Laan | |
Bitcoin-Qt: Remove redundant tooltip on optional transaction fee. Fixes #1218 | |||
2012-05-07 | Bitcoin-Qt: Remove redundant tooltip on optional transaction fee. Fixes #1218 | Luke Dashjr | |
2012-05-07 | Make user action more straightforward in address book | Wladimir J. van der Laan | |
- Add all actions that can be triggered with buttons to the context menu - Hide delete action from context menu for receiving tab | |||
2012-05-06 | Merge pull request #1196 from sipa/fix_948 | Gregory Maxwell | |
Prevent stuck download: correct solution | |||
2012-05-07 | Move back setPlaceholderText to code, from xml, as this broke building with ↵ | Wladimir J. van der Laan | |
Qt 4.6 | |||
2012-05-06 | Merge pull request #1189 from Diapolo/fix#952 | Wladimir J. van der Laan | |
fix for #952 (send coins tab glitch) | |||
2012-05-06 | Prevent stuck download: correct solution | Pieter Wuille | |
Pull request #948 introduced a fix for nodes stuck on a long side branch of the main chain. The fix was non-functional however, as the additional getdata request was created in a first step of processing, but dropped in a second step as it was considered redundant. This commits fixes it by sending the request directly. | |||
2012-05-06 | passphrasedialog: change dialog title to "Passphrase Dialog" / remove ↵ | Philip Kaufmann | |
style-sheet for bold font and use Qt Designer option / remove an unused label default-text and remove an obsolete clear()' | |||
2012-05-06 | move many overviewpage settings from code to ui XML-file / removed ability ↵ | Philip Kaufmann | |
to translate "0 BTC" and "123.456 BTC" as this is only used as preview in the Qt Designer anyway / set mouse cursor to IBeam for selectable labels | |||
2012-05-05 | Merge pull request #1209 from laanwj/2012_05_hideonshutdown | Wladimir J. van der Laan | |
Hide UI immediately after leaving the main loop | |||
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 | Merge pull request #1207 from sipa/fix_addrman | Gregory Maxwell | |
Fix addrman crashes | |||
2012-05-05 | Merge pull request #1160 from retep/master | Gregory Maxwell | |
Minor error message fix | |||
2012-05-05 | Bugfix: store source address in addrman | Pieter Wuille | |
2012-05-05 | Fix addrman crashes | Pieter Wuille | |
A function returned the element to remove from a bucket, instead of its position in that bucket. This function was only called when a tried bucket overflowed, which only happens after many outgoing connections have been made. Closes: #1065, #1156 | |||
2012-05-05 | Add extra asserts to addrman | Pieter Wuille | |
2012-05-05 | Bugfix: %-12I64d is not valid and causes the parameter to be skipped, use ↵ | Luke Dashjr | |
%12"PRI64d" instead | |||
2012-05-05 | Merge pull request #1201 from Diapolo/about-dialog | Wladimir J. van der Laan | |
changed cursor for selectable text on the about dialog to IBeamCursor... | |||
2012-05-05 | changed cursor for selectable text on the about dialog to IBeamCursor and ↵ | Philip Kaufmann | |
removed an unused tag | |||
2012-05-05 | Merge pull request #1202 from Diapolo/messagepage | Wladimir J. van der Laan | |
change text on message.ui from "Copy to Clipboard" to "Copy Signature"... | |||
2012-05-05 | change text on message.ui from "Copy to Clipboard" to "Copy Signature" and | Philip Kaufmann | |
add an Alt-Shortcut to "Clear &All" | |||
2012-05-05 | Merge pull request #1203 from Diapolo/qrcodedialog | Wladimir J. van der Laan | |
renamed qrcodedialog.ui window title to "QR-Code Dialog"... | |||
2012-05-05 | renamed qrcodedialog.ui window title to "QR-Code Dialog" and changed window ↵ | Philip Kaufmann | |
size to the minimum values Qt Creator allows me to set | |||
2012-05-05 | simplified qrcode icon that scales gracefully to 16x16 | Wladimir J. van der Laan | |
2012-05-05 | Add UI RPC console / debug window | Wladimir J. van der Laan | |
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-05 | signmessage: auto-select signature when field is focused/clicked | Wladimir J. van der Laan | |
2012-05-05 | Merge pull request #1166 from Diapolo/signmessage_clear | Wladimir J. van der Laan | |
add a clear all button to the sign message page (addresses #943) | |||
2012-05-05 | Merge pull request #1175 from Diapolo/translators | Wladimir J. van der Laan | |
small translation-file handling / loading changes and re-work comments to be clearer | |||
2012-05-05 | Merge pull request #1187 from TheBlueMatt/win32_ie | Wladimir J. van der Laan | |
Update to require IE 5.1 as it is required to build on mingw64. | |||
2012-05-05 | Merge pull request #1194 from Diapolo/sendcoins_placeholdertext | Wladimir J. van der Laan | |
move label placeholdertext from sendcoinsentry.cpp to ui-file | |||
2012-05-04 | Merge pull request #1032 from Diapolo/fix#945 | Wladimir J. van der Laan | |
Remove HTML font crap from "Wallet" message (fix for #945) | |||
2012-05-04 | move label placeholdertext from sendcoinsentry.cpp to ui-file | Philip Kaufmann | |
2012-05-04 | Bump version numbers for 0.6.1rc2v0.6.1 | Gavin Andresen | |
2012-05-04 | Added -externalip and -discover | Pieter Wuille | |
-externalip=<ip> can be used to explicitly set the public IP address of your node. -discover=0 can be used to disable the automatic public IP discovery system. | |||
2012-05-04 | Support for multiple local addresses | Pieter Wuille | |
2012-05-04 | Add -seednode connections, and use this for -dnsseed + -proxydns | Pieter Wuille | |