Sander van Grieken
2eaf3dcc64
qml: cleanup
3 years ago
Sander van Grieken
0be8beb9c4
qml: add secure flag to WalletDetails, set when seed is shown
3 years ago
SomberNight
53d61c011a
qml network: restrict cases where server is shown "lagging"
3 years ago
SomberNight
3bdda3a861
config: force 'history_rates' config var to bool
...
fixes https://github.com/spesmilo/electrum/issues/8367
probably regression from 503776c0de
(note that before that commit, we were casting to bool)
3 years ago
Sander van Grieken
c8c76a8d6f
qml: fix var ref
3 years ago
Sander van Grieken
0672ea20ab
qml: implement toggle for android SECURE_FLAG and add marker to wizard pages
...
that should be secured.
3 years ago
Sander van Grieken
8cd26820bf
qml: styling seedtextarea
3 years ago
Sander van Grieken
95f960bb67
qml: seedtext word suggestions below text area
3 years ago
Sander van Grieken
b290fbd4b5
qml: seedkeyboard padding, explicit keycode, backspace next to spacebar
3 years ago
ThomasV
6d392a67f9
wallet.get_tx_parents: populate cache regardless of self.is_up_to_date()
...
Fixes #8315
3 years ago
Sander van Grieken
6394cdcd3b
qml: disable Qt Virtual Keyboard and refactor keyboardFreeZone item to take
...
android system keyboard into account
3 years ago
Sander van Grieken
9ac83f6d9f
qml: add SeedKeyboard for seed entry without using system virtual keyboard
3 years ago
Sander van Grieken
5600375d51
qml: no auto caps on import and master key controls
3 years ago
Sander van Grieken
56165c3790
qml: don't start loadWallet if daemon is busy loading.
3 years ago
Sander van Grieken
1b362f64f2
qml: properly delete wizard components after use. fixes #8357
3 years ago
Sander van Grieken
db53b0f573
qml: fix 2fa callback issue #8368
3 years ago
SomberNight
f5f177f7e8
qml wizard: fix restoring from old mpk (watchonly for "old" seeds)
...
fixes https://github.com/spesmilo/electrum/issues/8356
3 years ago
SomberNight
87909485c5
qml: wizard to check if wallet name is already used
...
was erroring at the very last moment previously
3 years ago
SomberNight
ad5f95cb87
util.profiler: add "min_threshold" arg
3 years ago
SomberNight
312e50e9a9
qml: send screen: bip21: fallback to onchain addr if no LN channels
...
given a bip21 uri that has both onchain addr and bolt11,
if we have LN enabled but no LN channels, auto-fallback to paying onchain
we will have to clean up and unify this logic between GUIs. becoming spaghetti :/
rumour has it, Thomas has a branch? :P
3 years ago
SomberNight
5b122e723f
follow-up prev: re-add some newlines
3 years ago
SomberNight
55140a9e27
gui/messages.py: allow localization of these strings
3 years ago
Sander van Grieken
663ea431f6
followup 61179ede8c
3 years ago
Sander van Grieken
a23457f48d
qml: consistency camelcase pyqtProperties
3 years ago
Sander van Grieken
e26d49f11e
qml: consistency camelcase public slots qetxdetails, qelnpaymentdetails, qechannelopener, qeaddressdetails
3 years ago
Sander van Grieken
264540e12b
qml: consistency camelcase public slots qedaemon, qeinvoice, qewizard
3 years ago
Sander van Grieken
61179ede8c
qml: consistency camelcase qewallet
3 years ago
Sander van Grieken
f0bbbe9955
qml: consistency camelcase public slots listmodels
3 years ago
Sander van Grieken
2b091b283a
qml: qebitcoin remove unused code, fix scoping, camelcase
3 years ago
Sander van Grieken
96fd339a52
qml: followup 22fa84a0, use fixed font, use camelcase for QML properties
3 years ago
SomberNight
22fa84a0d5
qml: ReceiveDialog: clicking QR code to show encoded text
...
closes https://github.com/spesmilo/electrum/issues/8331
3 years ago
SomberNight
adf976fef4
qml: QERequestDetails: use uppercase in bolt11 QR code
...
same trick as in other GUIs
3 years ago
SomberNight
bf41675d4c
qml: invoice/request list: flip sort order: newest on top
...
to be consistent with the History, and with other GUIs
(the model is the easiest place to do it. QSortFilterProxyModel/etc looks overkill)
3 years ago
Sander van Grieken
407769cb5f
qml: remove Scan.qml
3 years ago
Sander van Grieken
5ead4feabb
qml: wallet menu wider to fit wide translated texts
3 years ago
SomberNight
8266ebcc46
fix flake8-bugbear B008
...
B008 Do not perform function calls in argument defaults. The call is performed only once at function definition time. All calls to your function will reuse the result of that definition-time function call. If this is intended, assign the function call to a module-level variable and use that variable as a default value.
3 years ago
SomberNight
e2406f21b4
fix flake8-bugbear B011
...
B011 Do not call assert False since python -O removes these calls. Instead callers should raise AssertionError().
3 years ago
SomberNight
312f2641e7
don't use bare except
...
use "except Exception", or if really needed explicitly "except BaseException"
3 years ago
Sander van Grieken
6848b8f375
qml: refactor all custom QRScan component wrappers to ScanDialog
...
(except SendDialog, which has a Paste button and slightly different behavior)
3 years ago
Sander van Grieken
49df18c613
qml: add hint property to QRScan
3 years ago
Sander van Grieken
959d481e93
qml: create ScanDialog
3 years ago
Sander van Grieken
674c2b55e7
qml: small fixes
3 years ago
Sander van Grieken
2fc9ee5c51
p4a: fix for Qt5 accessibility bug
...
see 087fc3c583
3 years ago
SomberNight
417423ecd7
qt: PayToEdit: fix input_qr_from_camera
...
closes https://github.com/spesmilo/electrum/issues/8342
probably regression from 1f4cedf56a
3 years ago
SomberNight
a8623f63bb
qml: fix send "flow with LN but not LN enabled AND having bip21 uri"
...
closes https://github.com/spesmilo/electrum/issues/8334
3 years ago
SomberNight
7907eb1f86
qml/qeinvoice.py: turn _bip21 field into local var
3 years ago
SomberNight
6b75d5f134
qt SwapDialog: handle sm.max_amount_forward_swap() being None
...
closes https://github.com/spesmilo/electrum/issues/8341
3 years ago
SomberNight
ea864cd5c9
qml: TxListModel: don't rely on wallet.db.get_transaction() finding tx
...
tx might get removed from wallet after wallet.get_full_history() but before the model is populated
closes https://github.com/spesmilo/electrum/issues/8339
3 years ago
SomberNight
1a2d4494eb
qt: fix sweeping
...
closes https://github.com/spesmilo/electrum/issues/8340
regression from 2f6d60c715
3 years ago
ThomasV
f787d6eede
qt piechart: show a full circle if there is only one item in the list
3 years ago