aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-05-01Improve gettxoutsetinfo commandPieter Wuille
* Bugfix: output the correct best block hash (during IBD, it can differ from the actual current best block) * Add height to output * Add hash_serialized, which is a hash of the entire UTXO state. Can be useful to compare two nodes. * Add total_amount, the sum of all UTXOs' values.
2013-05-01RPC: strictly require HTTP URI "/"Jeff Garzik
Previously, JSON-RPC clients accessed URI "/", and the JSON-RPC server did not care about the URI at all, and would accept any URI as valid. Change the JSON-RPC server to require URI "/" for all current accesses. This changes enables the addition of future interfaces at different URIs, such as pull request #1982 which demonstrates HTTP REST wallet download. Or, a future, breaking change in JSON-RPC interface could be introduced by serving JSON-RPC calls from new URI "/v2/".
2013-04-30Don't announce to non-peer CNodesPieter Wuille
2013-04-29Merge pull request #2583 from laanwj/2013_04_netbase_bitfieldPieter Wuille
netbase: fix !O_NONBLOCK where ~O_NONBLOCK was meant
2013-04-29Merge pull request #2589 from sipa/win32ldberrPieter Wuille
Some win32-leveldb related fixes
2013-04-29Merge pull request #2568 from sipa/rlimitGavin Andresen
Try to increase file descriptor rlimit if necessary
2013-04-29Merge pull request #2349 from dserrano5/masterPieter Wuille
Accept negative -par values to leave N CPUs free.
2013-04-29Accept negative -par values to leave N CPUs free.David Serrano
2013-04-29Merge pull request #2569 from sipa/win1024fdWladimir J. van der Laan
Allow select()ing up to 1024 file descriptors on Windows
2013-04-29Try to increase file descriptor rlimit if necessaryPieter Wuille
As the default can be too low, especially on OSX.
2013-04-28Allow files to be opened for reading multiple timesPieter Wuille
2013-04-28move WSAStartup to initWladimir J. van der Laan
WSAStartup should be called before using any other socket functions. BindListenPort is not called if not listening. Closes #2585.
2013-04-27Checking whether closing succeedsPieter Wuille
2013-04-27Print actual Win32 error that occurred on file creation failure.Pieter Wuille
2013-04-27Prevent prevent file descriptor leak in ShrinkDebugFile()Tariq Bashir
2013-04-27fix !O_NONBLOCK where ~O_NONBLOCK was meantWladimir J. van der Laan
Using ! on a non-zero value will always return 0. Also remove some duplicate and superfluous code in other places.
2013-04-27Merge pull request #2530 from jonasschnelli/mac_win_reopen_fixWladimir J. van der Laan
fixes #1522: GUI Disappearing (Mac OSX)
2013-04-27Merge pull request #2564 from Diapolo/walletviewWladimir J. van der Laan
small updates for walletview.cpp
2013-04-27qt: remove fee recommendation in settingsWladimir J. van der Laan
This value gets stale really quickly, do not hardcode it into a message. Completely remove it for now. Later on, a mechanism will be added to determine fees based on the mempool. Closes #2576
2013-04-26qt: remove extraneous padding introduced in multiwallet support patchWladimir J. van der Laan
solve issue #2529
2013-04-26Allow select()ing up to 1024 file descriptors on WindowsPieter Wuille
2013-04-25Allow the default key to be unavailablePieter Wuille
This solves the issue where no default key can be added after -salvagewallet.
2013-04-25translations update 2013-04-25Philip Kaufmann
- new language "se" - update bitcoin.qrc and bitcoin_en.ts - fetch current translations from Transifex
2013-04-25small updates for walletview.cppPhilip Kaufmann
- make "&Export" translatable - fix some includes - small formatting changes
2013-04-24Remove database/ after clean shutdownPieter Wuille
2013-04-24Try moving database/ away in case of failurePieter Wuille
2013-04-24remove duplicate bitdb.Open() code from initPhilip Kaufmann
- remove code from step 7, which we already have in step 5 of init
2013-04-24Reduce number of open LevelDB files to 64Pieter Wuille
2013-04-23Merge pull request #2526 from Diapolo/Qt_miscWladimir J. van der Laan
Bitcoin-Qt: misc small changes
2013-04-18Do not invoke DoS for non-canonical sigsPieter Wuille
2013-04-18Merge pull request #2525 from laanwj/2013_04_metatypeboolWladimir J. van der Laan
qt: register metatype for bool*
2013-04-18Merge pull request #2501 from Diapolo/progressWladimir J. van der Laan
rework ClientModel::getBlockSource() + BitcoinGUI::setNumBlocks()
2013-04-18Merge pull request #2524 from jonasschnelli/new_splashscreen_freshWladimir J. van der Laan
new splash screen
2013-04-17Merge pull request #2536 from jcalvinowens/makefile-clarifying-commentsGavin Andresen
Add comments to UNIX Makefile regarding USE_UPNP
2013-04-17new toolbar icon for liunx/win fix #2518Jonas Schnelli
On black toolbars, the new icon doesn't look very well. Now the toolbar icon has again a transparent "B" for better style on toolbars. Does not affect the mac client. Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch>
2013-04-17new splash screenJonas Schnelli
why: - the current splash-screen has no referring to official images on - https://en.bitcoin.it/wiki/Promotional_graphics - the current splash screen only exists in a low res jpg - current splash screen looks dark and "hackish" - new splash screen should generate positive, "trust-emotions". - new splash screen gives the user infos about the running client. - new splash screen can handle long messages (in a lot of - languages the text is cropped in current release) - new size (x2) 400x312 - contains textual information about the client - textinfos are dynamicly written to the pixmap when -testnet is switch on, the splashscreen will show the bitcoin logo in testnet-color (as well as a text [testnet]) example: https://dl.dropbox.com/u/7383846/new_bitcoin_splash.png
2013-04-17Add comments to UNIX Makefile regarding USE_UPNPCalvin Owens
The tri-state nature of USE_UPNP isn't immediately obvious, so paste the explanation from doc/build-unix.txt as a comment in the makefile.
2013-04-15Merge pull request #2519 from jonasschnelli/new_testnet_ico_fileWladimir J. van der Laan
new testnet ico file
2013-04-15fix: GUI Disappearing #1522 (Mac OSX)Jonas Schnelli
- this solution works stable on mac and ensures that the window get's reopened when the user clicks the dock icon . - tested on 10.8 with Qt4.8.4 and Qt5.0.1 Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch>
2013-04-14embed bitcoin_testnet.ico in bitcoin-qt.exe (usable for shortcuts)Philip Kaufmann
2013-04-14overviewpage: make some code Qt5 compatiblePhilip Kaufmann
- that changes will be fine for Qt4 also
2013-04-14bitcoingui: remove 2 unneeded includesPhilip Kaufmann
2013-04-14bitcoin: use static QApplication:: instead of app.Philip Kaufmann
2013-04-14aboutdialog: use just "The Bitcoin developers" as tr()-stringPhilip Kaufmann
- this ensures our new splash screen and this will share a translatable string an remove the need for an additional translation
2013-04-14qt: register metatype for bool*Wladimir J. van der Laan
This allows the bool* type to be passed between threads. Should solve issue #2402.
2013-04-14Require strictly-standard encodings in mempoolPieter Wuille
2013-04-13Merge pull request #2492 from Diapolo/Qt_messageWladimir J. van der Laan
Bitcoin-Qt: remove " - " on empty title in BitcoinGUI::message()
2013-04-13Merge pull request #2515 from laanwj/2013_04_move_exportbuttonWladimir J. van der Laan
qt: move export button to tabs
2013-04-12Merge pull request #2418 from sipa/uintworkGavin Andresen
Use a uint256 for bnChainWork
2013-04-12qt: move export button to tabsWladimir J. van der Laan
Having the export button at the top was confusing people into thinking the entire wallet was exported. This commit moves the export button to the address book, receiving addresses and transaction tabs separately.