From 87522a0d99b2bada209ee043eee5c4bf6ef36b4b Mon Sep 17 00:00:00 2001 From: "Peter D. Gray" Date: Tue, 3 May 2022 14:12:44 -0400 Subject: [PATCH] rename bip-85 menu --- releases/ChangeLog.md | 11 ++++++----- shared/flow.py | 2 +- testing/test_drv_entro.py | 4 ++-- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/releases/ChangeLog.md b/releases/ChangeLog.md index d3bd3b71..dfadd1ad 100644 --- a/releases/ChangeLog.md +++ b/releases/ChangeLog.md @@ -1,10 +1,11 @@ -## 4.1.5 - May 5, 2022 +## 4.1.5 - May 4, 2022 -- Enhancement: Support P2TR outputs (pay to Taproot) outputs in PSBT files. Allows - on-screen verification of P2TR destination addresses (`bc1p..`) so you can sent your BTC - to them. However, does **not** support signing, so you cannot operate a Taproot wallet - with COLDCARD as the signing device... yet. +- Enhancement: Support P2TR outputs (pay to Taproot) in PSBT files. Allows + on-screen verification of P2TR destination addresses (`bc1p..`) so you can send + your BTC to them. Does **not** support signing, so you cannot operate a Taproot + wallet with Mk3 COLDCARD as the signing device. - Bugfix: Yikes error shown during BIP-85 menu operation. +- Enhancement: Rename "Derive Entropy" to "Derive Seed B85" to match Mk4 menus ## 4.1.4 - Apr 26, 2022 diff --git a/shared/flow.py b/shared/flow.py index a683eff0..27fea0b0 100644 --- a/shared/flow.py +++ b/shared/flow.py @@ -197,7 +197,7 @@ AdvancedNormalMenu = [ MenuItem("MicroSD Card", menu=SDCardMenu), MenuItem('Paper Wallets', f=make_paper_wallet, predicate=lambda: make_paper_wallet), MenuItem('User Management', menu=make_users_menu, predicate=lambda: version.has_fatram), - MenuItem('Derive Entropy', f=drv_entro_start), + MenuItem('Derive Seed B85', f=drv_entro_start), MenuItem("Export XPUB", menu=XpubExportMenu), MenuItem("Danger Zone", menu=DangerZoneMenu), ] diff --git a/testing/test_drv_entro.py b/testing/test_drv_entro.py index 65c5d94f..c53f6eff 100644 --- a/testing/test_drv_entro.py +++ b/testing/test_drv_entro.py @@ -48,7 +48,7 @@ def test_bip_vectors(mode, index, entropy, expect, goto_home() pick_menu_item('Advanced') - pick_menu_item('Derive Entropy') + pick_menu_item('Derive Seed B85') time.sleep(0.1) title, story = cap_story() @@ -196,7 +196,7 @@ def test_path_index(mode, pattern, index, goto_home() pick_menu_item('Advanced') - pick_menu_item('Derive Entropy') + pick_menu_item('Derive Seed B85') time.sleep(0.1) title, story = cap_story()