SomberNight
03c3ba0d36
gitignore: add more build folders
6 years ago
ThomasV
1b8673839a
buildozer: add tests to exclude_dirs
6 years ago
SomberNight
bc64051139
update release notes
6 years ago
SomberNight
f6a7e6ec7d
logging: don't log to file by default
Leaking addresses/pubkeys/txids is a privacy leak...
but with lightning, logging should be enabled by default, as otherwise
issues would be sometimes impossible to debug...
Well, disable it for now.
6 years ago
SomberNight
3ed502a728
qt dark: fix "In History tab, labels while edited were being clipped"
6 years ago
ThomasV
2a6b02d43e
Merge pull request #5321 from SomberNight/logging_shortcut_filtering_20190507
logging: '-V' cli option can blacklist/whitelist classes with short names
6 years ago
SomberNight
104b8804f7
logging: '-V' cli option can blacklist/whitelist classes with short names
for example, '-V ni' will whitelist the 'Network' and 'Interface' classes
'-V ^ni' will blacklist those instead
6 years ago
ThomasV
92260a798a
Merge pull request #5319 from SomberNight/sync_progress_3_20190507
synchronizer: show progress in GUI (take 3) (req_answered/req_sent)
6 years ago
SomberNight
0e6cf153d7
synchronizer: show progress in GUI
6 years ago
SomberNight
92ad7ec5c0
interface: use itertools.count
6 years ago
SomberNight
e63157c2ab
logging: fix another call with multiple args
did a search with following regex now: logger\..*\(.*,
6 years ago
SomberNight
06cff9ac10
logging: fix call with multiple args
6 years ago
SomberNight
fd09033890
kivy: fix a race at startup
on_history (fx) races with load_wallet
6 years ago
SomberNight
720519f610
fix wine build dir references
follow-up 8e32f49469
6 years ago
SomberNight
a0b711cfea
requirements: bump python-ecdsa minimum
0.9 was not actually enough...
6 years ago
SomberNight
70fd716cbe
kivy: fix IPv6
closes #5176
6 years ago
SomberNight
7a99fdc275
kivy: fix crash in logging.py; platform.platform() not available
6 years ago
SomberNight
8e32f49469
wine build: rm old README
6 years ago
SomberNight
3e8ca80afd
servers: remove phishing server
6 years ago
SomberNight
cb4784c8ed
requirements: use older pycryptodomex for now
see Legrandin/pycryptodome#286
6 years ago
SomberNight
b11cb11d95
qt console: failed to print certain objects with custom __eq__
6 years ago
SomberNight
f38eed2fad
rerun freeze_packages
One user reported not getting keepkey with fw 6.1.0 detected
with python-keepkey 6.0.3, but detecting it with 6.1.0.
Sounds weird as all the changes look to be tests-related,
and could not reproduce. Still, this should not hurt.
6 years ago
SomberNight
2481d708cc
network: sanitize_tx_broadcast_response - new strings in bitcoind 0.18
6 years ago
SomberNight
00b2fee461
qt dark style: fix padding of PayToEdit
based on Electron-Cash/Electron-Cash@7e69f0e6eaad2679850ad297dcd7fa31a7262a4f
see ColinDuquesnoy/QDarkStyleSheet#159
6 years ago
SomberNight
201909df51
update release notes
6 years ago
SomberNight
c80c3596a7
logging: expose 'disablefilelogging' option in Qt preferences
6 years ago
SomberNight
e361a8549c
qt paytoedit: enable up/down keys
useful if multiline, and no harm(?) otherwise
6 years ago
SomberNight
aac9826e1b
qt paytoedit: better height adjustment
was sometimes weird...
e.g. pasting several lines of outputs would leave the textedit single line
6 years ago
SomberNight
7278953c63
servers: update mainnet default list (emzy)
6 years ago
SomberNight
7fc9e109ed
servers: update mainnet default list
6 years ago
SomberNight
0c963b0894
network.broadcast_transaction: add "do not trust" text to log messages
6 years ago
SomberNight
bd5b7abd80
rerun freeze_packages
mainly for qdarkstyle
6 years ago
SomberNight
07ec0d41d5
fix prev
unintentionally committed
6 years ago
SomberNight
fd5b1acdc8
commands: fix encrypt/decrypt
based on Electron-Cash/Electron-Cash@62aa08a0ffde227ababe58a14285b588eab4fd15
6 years ago
SomberNight
387834164c
logging: port ugly accidental side-effect into readable explicit feature
LogFormatterForConsole.format() was mutating its 'record' argument,
which was affecting all handlers/formatters
6 years ago
ThomasV
a3e522efd9
Merge pull request #5296 from SomberNight/logging_20190328
use stdlib logging module instead of print_error
6 years ago
SomberNight
163a814dc4
logging: log exceptions caught by crash reporter
6 years ago
SomberNight
a7b13f4876
logging: make console log lines shorter
6 years ago
SomberNight
f22a23aaf2
logging: fix for kivy
6 years ago
SomberNight
6940c424d1
logging: cli options to filter for modules using -v
old style "-v" still works
filtering examples:
-v=debug,network=error,interface=error // effectively blacklists network and interface
-v=warning,network=debug,interface=debug // effectively whitelists network and interface
6 years ago
SomberNight
3385a94753
logging: basics
6 years ago
cluelessperson
4d64e132d7
standardized logging base with ISO8601, UTC, rotating file logs, and more!
6 years ago
ThomasV
ec6f4e9f1c
Decouple my GPG pubkey from Animazing
6 years ago
SomberNight
28d70963ec
qt txdialog: word-wrap blockhash
6 years ago
SomberNight
556fa30ddf
interface: partially fix ipv6 proxy
note that network.deserialize_proxy is still broken for ipv6
6 years ago
SomberNight
19ced234aa
qt: maybe batch do_update_fee() on network fee update
6 years ago
SomberNight
d56917f4b1
coinchooser: improve performance significantly
existing code was n^2 in number of UTXOs
this is now mostly linear
(linear if shortcut is hit; otherwise in rare cases still quadratic)
tested using wallet with 800 UTXOs, most of which were needed to make payment
coinchooser.make_tx() went from 18 sec to 0.8 sec
6 years ago
SomberNight
15dda65c52
qt network dialog: "use Tor proxy" cb would get auto-checked incorrectly
6 years ago
SomberNight
b4648eceda
rerun freeze_packages
6 years ago
SomberNight
33f5b6a288
requirements: relax qdarkstyle version
upstream issue ColinDuquesnoy/QDarkStyleSheet#123 now fixed
6 years ago