Age | Commit message (Collapse) | Author |
|
Bitcoin-Qt could core dump if application initialization failed in certain ways.
I double-fixed this:
1) qt/bitcoin.cpp now shuts down core threads cleanly if AppInit2 returns false
2) init.cpp now exits before StartNode() if strErrors is set (no reason to StartNode if we're just going to exit immediately anyway).
Tested by triggering all of the various ways AppInit2 can fail, either by passing bogus command-line arguments or just recompiling tweaked code to simulate failure.
This is a partial fix for #2480
|
|
|
|
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.
|
|
Every block index entry currently requires a separately-allocated
CBigNum. By replacing them with uint256, it's just 32 bytes extra
in CBlockIndex itself.
This should save us a few megabytes in RAM, and less allocation
overhead.
|
|
GUI can't connect to RPC. Showing this option in the help confuses
people, so remove it.
|
|
new COPYRIGHT_YEAR macro in clientversion.h
|
|
Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch>
|
|
- don't display "Bitcoin - " when no title was supplied but just "Bitcoin"
|