MarcoFalke
fa48bb3148
[qt] Remove 0-fee from send dialog
9 years ago
Wladimir J. van der Laan
322a7a2fe0
qt: Remove reflection from `about` icon
...
While trying to find a black/white version of the Bitcoin
logo for the organization I noticed the about.png is not
entirely black - it has some reflection. Remove this to make
it the same as other icons.
Also ran the icons through `contrib/devtools/optimize-pngs.py`,
so `chevron.png` was optimized too.
9 years ago
Luv Khemani
ce7413fcb7
Add autocomplete to bitcoin-qt's console window.
...
Removed externs
Added listCommands() to CRPCTable
Move autocomplete init to RPCConsole::setClientModel()
9 years ago
Andrew C
21e45a097e
Fix history deletion bug after font change
...
The history is no longer cleared after the font size is changed
9 years ago
João Barbosa
d6cc6a1830
Use CCoinControl selection in CWallet::FundTransaction
9 years ago
Eric Shaw
b51ed4036e
QT: Add 'copy full transaction details' option
...
Adds feature from issue #7484
modifies the ctrl-c binding to copy full transaction details in transaction view.
Added translation
9 years ago
Jonas Schnelli
5ecfa36fd0
Remove openssl info from init/log and from Qt debug window
9 years ago
Luke Dashjr
027fdb83b4
When/if the copyright line does not mention Bitcoin Core developers, add a second line to copyrights in -version, About dialog, and splash screen
9 years ago
Kefkius
8b3d8e3991
GUI: Disable tab navigation for peers tables.
...
Fix a bug in which the Peers tab of the debug window
does not allow navigation to other tabs via Ctrl[+Shift]+Tab.
9 years ago
Luke Dashjr
78ec83ddfe
splashscreen: Resize text to fit exactly
9 years ago
Jonas Schnelli
43abb02aa2
[Qt] Add a new chevron/arrow icon for the console prompt line
9 years ago
Jonas Schnelli
56c9e66a6d
[Qt] keep scroll position in GUI console after changing font size
9 years ago
Jonas Schnelli
3a3a927325
[Qt] Add option to increase/decrease font size in the console window
9 years ago
MarcoFalke
faa9011d09
[qt] Peertable: Increase SUBVERSION_COLUMN_WIDTH
9 years ago
Daniel Cousens
a0eaff8a1d
move rpc* to rpc/
9 years ago
Jonas Schnelli
df6e8e17e4
[Qt] rename "amount" to "requested amount" in receive coins table
9 years ago
MarcoFalke
fa6a59dd39
[qt] Windows: Make rpcconsole monospace font larger
9 years ago
Chris Wheeler
9d263bd17c
Typo fixes in comments
9 years ago
crowning-
30cdacea3c
[Wallet] Transaction View: LastMonth calculation fixed
9 years ago
MarcoFalke
fa989fbf57
[qt] coincontrol workaround is still needed in qt5.4 (fixed in qt5.5)
9 years ago
Jonas Schnelli
8a7f0001be
[RPC] remove the option of having multiple timer interfaces
9 years ago
MarcoFalke
fa60d05a4e
Add missing copyright headers
9 years ago
MarcoFalke
fa7e4c0919
Bump copyright headers to 2014
9 years ago
MarcoFalke
faf3299b73
[qt] Intro: Display required space
...
Required space depends on the user's choice:
-prune=0
-prune=<n>
9 years ago
Alex Morcos
e420a1b15e
Add sane fallback for fee estimation
...
Add new commandline option "-fallbackfee" to use when fee estimation does not have sufficient data.
9 years ago
Wladimir J. van der Laan
136abda597
qt: periodic translations pull from transifex
9 years ago
Jonas Schnelli
621bd6919f
[Qt] fix coincontrol update issue when deleting a send coin entry
9 years ago
fanquake
6fd0a079d8
Remove hardcoded fee from CoinControl ToolTip
9 years ago
fanquake
33877ed3b8
Add note to CoinControl Dialog workaround
9 years ago
21E14
a5a0831458
Double semicolon cleanup.
9 years ago
fanquake
5fdf32de7e
Replace some instances of formatWithUnit with formatHtmlWithUnit
...
Strings in a HTML context should be using formatHtmlWithUnit.
9 years ago
Luke Dashjr
917b1d03cf
Set copyright holders displayed in notices separately from the package name
...
This helps avoid accidental removal of upstream copyright names
9 years ago
Luke Dashjr
1a6c67c8f5
Parameterise 2009 in translatable copyright strings
9 years ago
MarcoFalke
fa5769e95a
[qt] Fix misleading translation
9 years ago
MarcoFalke
fa2f4bc4eb
qt5: Use the fixed font the system recommends
9 years ago
Luke Dashjr
d5f46832de
Unify package name to as few places as possible without major changes
9 years ago
Matt Corallo
daf6466330
Add "NODE_BLOOM" to guiutil so that peers don't get UNKNOWN[4]
9 years ago
MarcoFalke
fa24439ff3
Bump copyright headers to 2015
9 years ago
MarcoFalke
fab83476ac
[qt] Use tr() instead of _()
...
Also, `make translate`
9 years ago
MarcoFalke
e69bad19f8
[trivial] Fix typo in peertablemodel.cpp
9 years ago
Wladimir J. van der Laan
93236c0455
qt: Final translation update before 0.12 fork
...
- Add new translations (finally, after a long time)
- update-translation script was not considering new translations - oops
- fixed this, also remove (nearly) empty translations
- Update translation process, it was still describing the old repository
structure
9 years ago
Jonas Schnelli
a3c3ddbd7b
[Qt] add InMempool() info to transaction details
9 years ago
Wladimir J. van der Laan
bc1f427570
qt: periodic translations update
9 years ago
Wladimir J. van der Laan
6da12dff28
qt: use QMetaObject::invokeMethod for cross-thread signaling in clientmodel
...
It's surprising to me that Q_EMIT even worked for this.
But it doesn't build in Qt4, so switch back to
`QMetaObject::invokeMethod`. Fixes #7138 .
9 years ago
Wladimir J. van der Laan
aabc897801
rpc: Don't translate warning messages
...
But keep translating them in the GUI.
This - necessarily - requires duplication of a few messages.
Alternative take on #7134 , that keeps the translations from being wiped.
Also document GetWarnings() input argument.
Fixes #5895 .
9 years ago
Jonas Schnelli
ff723da6f6
[Qt] improve minimum absolute fee option
...
- Only display the minimum absolute fee control if CoinControl is enabled
9 years ago
Jonas Schnelli
31b508a18b
[Qt] make use of the nMinimumTotalFee (absolute) in coincontrols fee calculation
9 years ago
Jonas Schnelli
80462dda0a
[Qt] use ASYMP_UTF8 (≈) whenever we show a fee that is not absolute
9 years ago
Jonas Schnelli
4082e46603
[Qt] call GuessVerificationProgress synchronous during core signal, pass double over UI signal
9 years ago
Jonas Schnelli
947d20b84a
[Qt] reduce cs_main in getVerificationProgress()
9 years ago