From 323331d25835397f94d800d875132fa961f050dd Mon Sep 17 00:00:00 2001 From: The MMGen Project Date: Fri, 27 Jan 2023 08:56:51 +0000 Subject: [PATCH] README: update image link, add XMR donation address --- README.md | 8 +++++--- mmgen/data/version | 2 +- mmgen/util.py | 1 + 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ce87f127..9e42ca88 100644 --- a/README.md +++ b/README.md @@ -185,8 +185,10 @@ Code repository mirrors: [Reddit](https://www.reddit.com/user/mmgen-py) | [Bitcointalk](https://bitcointalk.org/index.php?topic=567069.new#new) [PGP Signing Key][5]: 5C84 CB45 AEE2 250F 31A6 A570 3F8B 1861 E32B 7DA2 -Donate (BTC): *bc1qxmymxf8p5ckvlxkmkwgw8ap5t2xuaffmrpexap* -Donate (BCH): *15TLdmi5NYLdqmtCqczUs5pBPkJDXRs83w* +Donate: + ⊙ BTC: *bc1qxmymxf8p5ckvlxkmkwgw8ap5t2xuaffmrpexap* + ⊙ BCH: *15TLdmi5NYLdqmtCqczUs5pBPkJDXRs83w* + ⊙ XMR: *8B14zb8wgLuKDdse5p8f3aKpFqRdB4i4xj83b7BHYABHMvHifWxiDXeKRELnaxL5FySfeRRS5girgUvgy8fQKsYMEzPUJ8h* [1]: ../../wiki/Install-MMGen-on-Microsoft-Windows [2]: ../../wiki/Install-MMGen-on-Linux @@ -195,7 +197,7 @@ Donate (BCH): *15TLdmi5NYLdqmtCqczUs5pBPkJDXRs83w* [6]: ../../wiki/MMGen-command-help [7]: http://bitcoinmagazine.com/8396/deterministic-wallets-advantages-flaw/ [8]: https://github.com/mmgen/MMGenLive -[9]: https://cloud.githubusercontent.com/assets/6071028/20677261/6ccab1bc-b58a-11e6-8ab6-094f88befef2.jpg +[9]: https://mmgen.org/images/rxvt-txcreate.jpg [Q]: ../../wiki/MMGen-Quick-Start-with-Regtest-Mode [K]: ../../wiki/Recovering-Your-Keys-Without-the-MMGen-Software [S]: ../../wiki/Recovering-Your-Keys-Without-the-MMGen-Software#a_mh diff --git a/mmgen/data/version b/mmgen/data/version index 7ae5cc96..d1fce55b 100644 --- a/mmgen/data/version +++ b/mmgen/data/version @@ -1 +1 @@ -13.3.dev34 +13.3.dev35 diff --git a/mmgen/util.py b/mmgen/util.py index d1e97e4d..f761c427 100755 --- a/mmgen/util.py +++ b/mmgen/util.py @@ -158,6 +158,7 @@ def fmt_list(iterable,fmt='dfl',indent=''): 'no_spc': ("','", "'", "'"), 'min': (",", "'", "'"), 'col': ('\n'+indent, indent, '' ), + 'list': ('\n- '+indent, '- '+indent, '' ), }[fmt] return lq + sep.join(str(i) for i in iterable) + rq