bitromortac
6716004b47
bolt11: fix amount encoding for large values
4 years ago
SomberNight
5115e14aed
mac build: reuse previously built dylibs if available
4 years ago
SomberNight
55c988d540
Merge remote-tracking branch 'remotes/bitromortac-fork/2107-fix-self-payments'
4 years ago
bitromortac
4ee5fa75f6
lnrouter+lnworker: rename my_channels
4 years ago
ghost43
c24bb44554
Merge pull request #7433 from bitromortac/2107-fix-self-payments
...
lnrouter: fix self-payments
4 years ago
SomberNight
a1f69fef97
qt channels list: align "can send", "can recv" cols based on amounts
4 years ago
SomberNight
419d71b4ef
(trivial) qt settings: fix a type hint
...
(no change in behaviour)
4 years ago
SomberNight
e7ccf1584e
config: make adding thousand separators to amounts optional
4 years ago
SomberNight
9f5370f9c6
util.format_satoshis: fix (add_thousands_sep & whitespaces) param combo
4 years ago
djboi
6a431aab8c
Fixed issue with thousands separator for better readability ( #7427 )
...
util.format_satoshis: introduce new option to add thousands separators
4 years ago
bitromortac
e6ccbcf7b7
lnrouter: fix self-payments
4 years ago
ThomasV
07219cc4c6
make_downloads: generate signature lists
4 years ago
Siddhant Chawla
a8ecc68833
Added BTC and Fiat amount on the confirmation screen for Lightning Invoice ( #7425 )
...
Added BTC and Fiat amount(as enabled by the user) on the confirmation screen for a Lightning Invoice in the Kivy GUI
closes https://github.com/spesmilo/electrum/issues/7410
4 years ago
ThomasV
2a80ab1623
Merge pull request #7429 from Emzy/master
...
add gpg key of Emzy
4 years ago
Stephan Oeste
4e24081500
add gpg key of Emzy
4 years ago
SomberNight
2881d1e62c
kivy: fix: when changing units or ccy, history list was not updated
...
When changing e.g. from mBTC to BTC, the history list was only
partially updated: the displayed amounts got updated but the
displayed unit did not, so incorrect information was shown.
4 years ago
SomberNight
18c9a1af10
kivy: format_amount: minor clean-up
4 years ago
SomberNight
5891e039b1
config: add option to display amounts with msat precision
4 years ago
SomberNight
46badd128e
util.format_satoshis: fix whitespaces param for non-zero precision
4 years ago
SomberNight
5c80293696
util.format_satoshis: fix for amounts with higher than sat precision
...
Previously, msat precision was leaking through format_satoshis if the
user's base unit was set to "sat". This was a bug.
Some features of format_satoshis did not work well with such values, such
as the "whitespaces" param.
Old code:
>>> util.format_satoshis(Decimal('45831275.748'), decimal_point=2)
'458312.76'
>>> util.format_satoshis(Decimal('45831275.748'), decimal_point=0)
'45831275.748'
New code:
>>> util.format_satoshis(Decimal('45831275.748'), decimal_point=2)
'458312.76'
>>> util.format_satoshis(Decimal('45831275.748'), decimal_point=0)
'45831276.'
4 years ago
SomberNight
173225ae92
qt custom block explorer: fix handling non-str config values
...
fixes https://github.com/spesmilo/electrum/issues/7421
The config key can have non-str values (see line 367).
4 years ago
SomberNight
d35a68d2d1
release.sh: fix bugs discovered during last release
4 years ago
SomberNight
8e71361d29
mac build: README: mention Xcode path intricacies
4 years ago
ThomasV
f414562602
contrib/upload: minor fixes
4 years ago
ThomasV
f49371f5a4
add contrib/build-wine/signed to gitignore
4 years ago
ThomasV
d8d2c180aa
update locale
4 years ago
SomberNight
9f82dc07f2
release.sh: dmg is now reproducible as well
4 years ago
SomberNight
1f5a2df38d
prepare release 4.1.5
4 years ago
SomberNight
c1d28bcf53
mac build: compare_dmg: "diff" should handle missing directory
...
(as in, non-existent path)
4 years ago
SomberNight
9c2807cbb1
mac build: README: clarify note about reproducibility of unsigned dmg
4 years ago
ThomasV
1dfbba76d0
make_osx: disable set -e during test of signing identity
4 years ago
ThomasV
01a0cbf912
Merge pull request #7415 from SomberNight/20210718_mac_build
...
mac build: attempt at "reproducible" codesigned builds
4 years ago
SomberNight
f50882d8df
mac build: attempt at "reproducible" codesigned builds
...
- added notes about reproducibility requirements
- adapted build scripts from Bitcoin Core that can
- extract signatures from a signed .app
- apply previously extracted signatures to an unsigned .app
4 years ago
SomberNight
71b02df832
mac build: re-add note about needing full Xcode...
...
Turns out the Xcode CLI tools are still not enough, and we need full Xcode :(
This is only for notarization; as `altool` (which we need there) is only part
of full Xcode. So we need to download 8 gigs just for that single script...
related c1dbcab9bb
4 years ago
SomberNight
fa04c762c5
mac build: rm pyinstaller monkey-patch used to codesign embedded files
...
When the monkey-patch was added, we were building pyinstaller onefile
binaries; but since then we changed to build pyinstaller onedir binaries
instead. So I believe there are no embedded files inside the main executable
anymore, so doing `codesign --deep *.app` (near the end of make_osx)
should be sufficient.
4 years ago
SomberNight
e679e6074f
mac build: add "set -e"
...
for sanity...
re touching these files: not sure they are really needed
(but the ~/Library/Python/ and ~/.pyenv folders are no longer there
on the build machine)
5 years ago
ThomasV
9278a26a7d
make_osx: do not download python pkg unnecessarily
5 years ago
ThomasV
09f7d65b31
Merge pull request #7411 from SomberNight/20210715_macos_build
...
mac build: download python from python.org instead of using pyenv
5 years ago
ThomasV
4dd82cef74
set -e in compare_dmg
5 years ago
SomberNight
4fd6282f51
mac build: download python from python.org instead of using pyenv
5 years ago
SomberNight
8c1380ca8b
mac build: trivial clean-up
5 years ago
MrNaif2018
aafa74ed08
Improve _mythread checks ( #7403 )
...
* Improve _mythread checks
* Create get_running_loop util
5 years ago
SomberNight
c5129ee447
follow-up prev
5 years ago
SomberNight
8481afb286
lnchannel: introduce HTLCWithStatus NamedTuple
5 years ago
SomberNight
8a56c9eb66
invoices: explain status constants
5 years ago
ThomasV
ea24ab593f
Merge pull request #7400 from SomberNight/202107_mac_build_pyc
...
mac build: don't create __pycache__ folders
5 years ago
ThomasV
ace113358a
fix typo (follow-up prev)
5 years ago
ThomasV
0c17b49e2c
compare_dmg: compare two files
5 years ago
ghost43
cf7f66e9e6
Merge pull request #7399 from SomberNight/202107_wallet_request_status_event
...
wallet: fire "request_status" event also when conf number changes
5 years ago
ghost43
7d91e8144a
Merge pull request #7395 from MrNaif2018/feat/lightning-cmd-tag
...
Add lightning tag for commands
5 years ago