Skip to content

Commit b7f77fc

Browse files
committed
Add version number + v2.0.1 release
1 parent e551d0a commit b7f77fc

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
lines changed

dist/index.html

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -737,6 +737,7 @@ <h2>LOADING</h2>
737737
<div class="container">
738738
<div class="content">
739739
<h1>Seed Tool</h1>
740+
<h5 style="text-align:center;">v2.0.1</h5>
740741
<hr>
741742
<button class="accordion" title="Click to expand this section" id="aboutPanel">
742743
About
@@ -763,7 +764,7 @@ <h2>Warning</h2>
763764
amnesic operating system like
764765
<a href="https://tails.boum.org/about/index.en.html" target="_blank" rel="noopener noreferrer">Tails.</a>
765766
</p>
766-
<a href="https://github.com/BitcoinQnA/seedtool/releases/download/2.0.0/index.html">
767+
<a href="https://github.com/BitcoinQnA/seedtool/releases/download/2.0.1/index.html">
767768
<button class="btn" title="Download page for offline use">Download </button>
768769
</a>
769770

@@ -1713,9 +1714,9 @@ <h4>BIP141: Segregated Witness (Consensus layer)</h4>
17131714
<label>
17141715
Network Selection
17151716
<select id="bip47NetworkSelect">
1716-
<option value="bitcoin" selected>bitcoin main network</option>
1717-
<option value="regtest">regtest</option>
1718-
<option value="testnet">testnet</option>
1717+
<option value="bitcoin" selected>Mainnet</option>
1718+
<option value="regtest">Regtest</option>
1719+
<option value="testnet">Testnet</option>
17191720
</select>
17201721
</label>
17211722
<h4>My Details</h4>
@@ -190568,6 +190569,7 @@ <h3>Changelog</h3>
190568190569
<li>V1.0.6 - ADD: Raw Entropy Input Method</li>
190569190570
<li>V1.0.7 - ADD: BIP86 Taproot Address Generation</li>
190570190571
<li>V2.0.0 - ADD: Predictive seed word input, Single Address Tool and BIP48 Multisig Address Derivation</li>
190572+
<li>V2.0.1 - ADD: Version number to header. FIX: BIP47 testnet derivation </li>
190571190573
</ul>`,
190572190574
UNKNOWN: /*html*/ `
190573190575
<h3>ERROR: 404</h3>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "seed-tool",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "Bitcoin wallet seed tool",
55
"main": "index.js",
66
"scripts": {

src/www/dev.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ <h2>LOADING</h2>
9696
<div class="container">
9797
<div class="content">
9898
<h1>Seed Tool</h1>
99-
<h5 style="text-align:center;">v2.0.0</h5>
99+
<h5 style="text-align:center;">v2.0.1</h5>
100100
<hr>
101101
<button class="accordion" title="Click to expand this section" id="aboutPanel">
102102
About
@@ -123,7 +123,7 @@ <h2>Warning</h2>
123123
amnesic operating system like
124124
<a href="https://tails.boum.org/about/index.en.html" target="_blank" rel="noopener noreferrer">Tails.</a>
125125
</p>
126-
<a href="https://github.com/BitcoinQnA/seedtool/releases/download/2.0.0/index.html">
126+
<a href="https://github.com/BitcoinQnA/seedtool/releases/download/2.0.1/index.html">
127127
<button class="btn" title="Download page for offline use">Download </button>
128128
</a>
129129

@@ -1073,9 +1073,9 @@ <h4>BIP141: Segregated Witness (Consensus layer)</h4>
10731073
<label>
10741074
Network Selection
10751075
<select id="bip47NetworkSelect">
1076-
<option value="bitcoin" selected>bitcoin main network</option>
1077-
<option value="regtest">regtest</option>
1078-
<option value="testnet">testnet</option>
1076+
<option value="bitcoin" selected>Mainnet</option>
1077+
<option value="regtest">Regtest</option>
1078+
<option value="testnet">Testnet</option>
10791079
</select>
10801080
</label>
10811081
<h4>My Details</h4>

src/www/js/info.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -529,6 +529,7 @@ window.infoHtml = {
529529
<li>V1.0.6 - ADD: Raw Entropy Input Method</li>
530530
<li>V1.0.7 - ADD: BIP86 Taproot Address Generation</li>
531531
<li>V2.0.0 - ADD: Predictive seed word input, Single Address Tool and BIP48 Multisig Address Derivation</li>
532+
<li>V2.0.1 - ADD: Version number to header. FIX: BIP47 testnet derivation </li>
532533
</ul>`,
533534
UNKNOWN: /*html*/ `
534535
<h3>ERROR: 404</h3>

0 commit comments

Comments
 (0)