Age | Commit message (Collapse) | Author |
|
small init.cpp changes (strings / Winsock init)
|
|
- add a check that requested Winsock version is available
- update some strings
- remove -gen=0 from help-message as this is default
|
|
|
|
clear path cache after getting a proper config file (fixes #2605)
|
|
Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch>
|
|
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/".
|
|
|
|
netbase: fix !O_NONBLOCK where ~O_NONBLOCK was meant
|
|
Some win32-leveldb related fixes
|
|
Try to increase file descriptor rlimit if necessary
|
|
Accept negative -par values to leave N CPUs free.
|
|
|
|
Allow select()ing up to 1024 file descriptors on Windows
|
|
As the default can be too low, especially on OSX.
|
|
|
|
WSAStartup should be called before using any other socket
functions. BindListenPort is not called if not listening.
Closes #2585.
|
|
|
|
|
|
|
|
Using ! on a non-zero value will always return 0.
Also remove some duplicate and superfluous code in other places.
|
|
fixes #1522: GUI Disappearing (Mac OSX)
|
|
small updates for walletview.cpp
|
|
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
|
|
solve issue #2529
|
|
|
|
- new language "se"
- update bitcoin.qrc and bitcoin_en.ts
- fetch current translations from Transifex
|
|
- make "&Export" translatable
- fix some includes
- small formatting changes
|
|
|
|
Bitcoin-Qt: misc small changes
|
|
|
|
qt: register metatype for bool*
|
|
rework ClientModel::getBlockSource() + BitcoinGUI::setNumBlocks()
|
|
new splash screen
|
|
Add comments to UNIX Makefile regarding USE_UPNP
|
|
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>
|
|
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
|
|
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.
|
|
new testnet ico file
|
|
- 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>
|
|
|
|
- that changes will be fine for Qt4 also
|
|
|
|
|
|
- this ensures our new splash screen and this will share a translatable
string an remove the need for an additional translation
|
|
This allows the bool* type to be passed between threads. Should solve issue #2402.
|
|
|
|
Bitcoin-Qt: remove " - " on empty title in BitcoinGUI::message()
|
|
qt: move export button to tabs
|
|
Use a uint256 for bnChainWork
|
|
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.
|