Philip Kaufmann
851296a72f
[Qt] add option to allow self signed root certs (for testing)
...
- it is helpful to be able to test and verify payment request processing
by allowing self signed root certificates (e.g. generated by Gavins
"certificate authority in a box")
- This option is just shown in the UI options, if -help-debug is enabled.
10 years ago
Philip Kaufmann
0fd9e2bf43
[Qt] don't allow amount changes when AmountSpinBox is read-only
...
- before it was possible to use the steps to change e.g. amouns of
authenticated or unauthenticated payment requests (AmountSpinBox is
already set to read-only here) - this is now fixed
- also move the reimplemented stepEnabled() function to the
protected section of our class, where it belongs (see Qt doc)
10 years ago
Jonas Schnelli
98c222b5aa
[Qt] optimize helpmessage dialog
...
- enlarge standard size
- remove fixed 10px font
- remove left mood image
- ensure that table has no ugly line-breaks on OSX, Linux
10 years ago
Thomas Zander
e179eb3d9b
Make the command-line-args dialog better
...
Instead of using a fixed-width font in a label, which virtually
guarentees a horizontal scrollbar, use a proper text-document
that can re-layout based on user input.
10 years ago
Wladimir J. van der Laan
34cdc41128
String conversions uint256 -> uint256S
...
If uint256() constructor takes a string, uint256(0) will become
dangerous when uint256 does not take integers anymore (it will go
through std::string(const char*) making a NULL string, and the explicit
keyword is no help).
10 years ago
Luke Dashjr
7eeeac0ff5
Remove dead BitcoinUnits::id code and update assets-attribution for non-image unit selector
10 years ago
Cory Fields
a3241998e1
namespace: remove boost namespace pollution
10 years ago
Philip Kaufmann
643415aade
[Qt] update a translation string and argument counts
10 years ago
Michael Ford
06206bb3b7
Correct tooltip on address book page
10 years ago
Luke Dashjr
dd3f69736a
Use real text rather than image-rendered text for unit selector
...
The width of each unit is measured to set a fixed width for the widget, and the color is set to match the other status widgets.
10 years ago
Thomas Zander
99913f0f70
Fix reference.
...
The text talked about "Quit" while Bitcoin uses "Exit" in its menu.
10 years ago
Luke Dashjr
9b7d3fb165
Adopt style colour for button icons
10 years ago
Jonas Schnelli
de779b307b
[Qt] new icon for the debug window
10 years ago
sandakersmann
f914f1a746
Added "Core" to copyright headers
...
Github-Pull: #5494
Rebased-From: 15de949bb9277e442302bdd8dee299a8d6deee60
10 years ago
Philip Kaufmann
27df4123c4
make all catch() arguments const
...
- I saw this on http://en.cppreference.com/w/cpp/language/try_catch and
thought it would be a good idea
- also unify used format to better be able to search for exception
uses in our codebase
10 years ago
Jonas Schnelli
ff63801bc0
[Qt] light blue icon color for regtest
...
Changing the icons color for regtest in now lightweight.
10 years ago
Jonas Schnelli
270f42d39f
[Qt] fix a <Qt4.7 compatibility issue raised in #5228
10 years ago
Jonas Schnelli
ac23394ea8
resize tray icon because a 1024x1024 icon won't show in ubuntu (bug)
10 years ago
Wladimir J. van der Laan
8e76ca0429
Qt: Go back to using QIcon functionality for scaling
10 years ago
Jonas Schnelli
54f2571a00
Qt: HiDPI (retina) support for splash screen
...
- remove splash screen images (reduce binary size)
- dynamicly draw splash screen with available icon.
- remove testnet icon
- dynamicly colorize testnet icon
10 years ago
Michael Ford
78253fcbad
Remove references to X11 licence
10 years ago
Pavel Janík
73caf47dfe
Display time offset in the debug window's Peers tab
10 years ago
Wladimir J. van der Laan
7c001bb49c
qt: translations pull from transifex
10 years ago
Philip Kaufmann
5ec654b8ce
[Qt] update paymentserver license and cleanup ordering
10 years ago
Philip Kaufmann
4333e26c8e
[Qt] add BIP70 DoS protection test
...
- this test required to make readPaymentRequestFromFile() public in order
to be able to is it in paymentservertests.cpp
10 years ago
Philip Kaufmann
31f84944a5
[Qt] add BIP70 payment request size DoS protection for URIs
...
- current code only does this for payment request files, which are
used on Mac
- also rename readPaymentRequest to readPaymentRequestFromFile, so it's
obvious that function only handles payment request files and not URIs
- small logging changes in readPaymentRequestFromFile
10 years ago
Philip Kaufmann
2284ccbd13
[Qt] remove dup lock that is done in SetAddressBook()
10 years ago
Philip Kaufmann
1ec753f734
[Qt] ensure socket is set to NULL in PaymentServer::ipcSendCommandLine
10 years ago
Philip Kaufmann
814429dc72
[Qt] add BIP70/BIP71 constants for all messages and mime types
...
- also rename current ones to match the new ones
- remove constant from guiconstant.h and add it to paymentserver.cpp
10 years ago
Philip Kaufmann
b82695b89f
[Qt] make PaymentServer::ipcParseCommandLine void
...
- the function only returned true, so make it void
- add a comment about payment request network detection
10 years ago
Luke Dashjr
d227011184
MOVEONLY: core/ -> primitives/
10 years ago
Philip Kaufmann
4709160b50
[Qt] fix a translation that occurs 2 times but was a little different
10 years ago
Philip Kaufmann
50db7d9f09
[Qt] change some strings to reflect name change to Bitcoin Core
10 years ago
Philip Kaufmann
2747f7cf77
[Qt] fix missing plural form for a string in sendcoinsdialog
...
- this was reported on Transifex by pryds (Thank you!)
10 years ago
21E14
1cf23f6c50
Update the intent on SI-style separators.
10 years ago
Wladimir J. van der Laan
8ba38aba42
qt: Update translations from transifex
10 years ago
Philip Kaufmann
a328dd60a7
[Qt] small changes to sendcoinsdialog
...
- add newly added variables to the constructor init
- move an already existing bool also to constructor init
- move a connect call to setClientModel and add a NULL pointer check
10 years ago
Jonas Schnelli
c5a2282855
[Qt, OSX] fix Qt4.8 compatibility with QProgressBar issue
...
Rebased-From: 7f33d2cebfde99ded12c711ef6bd77c91725cfb8
Github-Issue: #5344
10 years ago
Philip Kaufmann
1b2600a13a
Change MIT/X11 to MIT in license displayed in the program
10 years ago
Wladimir J. van der Laan
4a106eeb33
qt: English translation update
10 years ago
Philip Kaufmann
aabe61cb37
[Qt] explicitly call proxy in GUI settings SOCKS5 proxy
...
- to ensure a consistent wording between core and GUI
10 years ago
Philip Kaufmann
4574248f9f
[Qt] minor ordering cleanup after new fee selection
10 years ago
Wladimir J. van der Laan
e0a25c54eb
qt: Make askpassphrase dialog behave more sanely
...
Set minimum sizes appropriately, and make sure that they
are enforced. Replaces #5226 .
10 years ago
Cozz Lovan
c1c9d5b415
[Qt] Add Smartfee to GUI
10 years ago
Jonas Schnelli
0ceab00d16
[Qt, OSX] move QProgressBarMac to guiutil.h
10 years ago
Jonas Schnelli
a7f2941068
[Qt, OSX] fix usage of osx 10.8+ user notification center
...
Currently Bitcoin-Qts support for OSX User Notification Center is broken. This pull will fix a known issue of non-official-apple-built apps having problems sending user notifications.
10 years ago
Jonas Schnelli
6093aa1bb0
[Qt, OSX] QProgressBar CPU-Issue workaround
...
fixes #5295
10 years ago
Luke Dashjr
5d60b694e9
Coin Control: Make list mode default
10 years ago
Luke Dashjr
4ff81d6092
Bugfix: Clarify coin control dialog labels
10 years ago
Cozz Lovan
7335ca1a05
[Qt] Fix height of BitcoinAmountField
10 years ago