Age | Commit message (Collapse) | Author |
|
- new language "se"
- update bitcoin.qrc and bitcoin_en.ts
- fetch current translations from Transifex
|
|
Bitcoin-Qt: misc small changes
|
|
qt: register metatype for bool*
|
|
rework ClientModel::getBlockSource() + BitcoinGUI::setNumBlocks()
|
|
new splash screen
|
|
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
|
|
new testnet ico file
|
|
|
|
- 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()
|
|
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.
|
|
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"
|
|
Conflicts:
doc/assets-attribution.txt
|
|
translations update 2013-04-08
|
|
- this reduces the places, where we need to change the year further
|
|
- this allows usage of that information also in other places (e.g. splash
screen)
|
|
- updates ClientModel::getBlockSource() to return all available states and
sorts enum BlockSource in order of usage cases (none default, then reindex,
import and network)
- updates BitcoinGUI::setNumBlocks() to better use getBlockSource() and
also adds a message, when we have NO block source available
|
|
- icon quality of the win icon of <256px resolutions are now much better
Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch>
|
|
- continue the mac behavior of clearing button icons (because it's unusual on mac apps)
- fix: new button variable names, new buttons (verifyMessage, signMessage)
Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch>
|
|
- redefined the green color
- created new toolbar icons
- updated the assets-attribution.txt
Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch>
|
|
Bitcoin-Qt: emit numBlocksChanged for changed reindex or importing state
|
|
Bitcoin-Qt: update for BitcoinGUI::eventFilter()
|
|
qt: remove redundant wallet methods from bitcoingui
|
|
new icons for windows, linux, etc.
|
|
- updates for bitcoinstrings.cpp and bitcoin_en.ts
- changes help text for -rpcthreads to match -par
- fix a small glitch with -par to be "-par=<n>"
|
|
- added languages in bitcoin.qrc: bs, ca, cy, eo, gu_IN, hi_IN, ja, la,
lv_LV and th_TH (some translations files were already in src/qt/locale
but not added in the .qrc file
|
|
send encryptWallet/backupWallet/changePassphrase directly to walletFrame
|
|
- new windows .ico contains multiple resolutions up to 256px
- new testnet (green) icon
- new png icon for llinux, etc.
- new doxygen icon
- changed the assets-attribution.txt
Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch>
|
|
Signed-off-by: Jonas Schnelli <jonas.schnelli@include7.ch>
|
|
- this allows our progressbarlabel to correctly update, when we
finish a reindex or import, but do not get new blocks from other sources
|
|
- this allows us to use the progressbar and the label independently (if
needed) and still prevents setStatusTip() to use them, if one of the 2
is active
|
|
small indentation, space, formatting fixes (no code changes)
|
|
|
|
Bitcoin-Qt: updates to addressbookpage
|
|
Bitcoin-Qt: add Genesis blocks time for testnet
|
|
Bitcoin-Qt: small RPCConsole cleanup
|
|
new mac osx icon
|
|
- add the Genesis blocks time for the testnet in
ClientModel::getLastBlockDate()
|
|
|
|
|
|
|
|
- use labelExplanation for sending and receiving tab and move the string
from the ui-file to the source
- ensure that the table holding the label and address is resized so that
the address column fits the address and the label column is stretched to
fit the window size
- rename some stuff for much easier readbility in the code (I find it hard
to get the meaning of stuff like labels or buttons)
|
|
Create a boost::thread_group object at the qt/bitcoind main-loop level
that will hold pointers to all the main-loop threads.
This will replace the vnThreadsRunning[] array.
For testing, ported the BitcoinMiner threads to use its
own boost::thread_group.
|