Skip to content

Commit

Permalink
Add version number + v2.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
BitcoinQnA committed Aug 3, 2022
1 parent e551d0a commit b7f77fc
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
10 changes: 6 additions & 4 deletions dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -737,6 +737,7 @@ <h2>LOADING</h2>
<div class="container">
<div class="content">
<h1>Seed Tool</h1>
<h5 style="text-align:center;">v2.0.1</h5>
<hr>
<button class="accordion" title="Click to expand this section" id="aboutPanel">
About
Expand All @@ -763,7 +764,7 @@ <h2>Warning</h2>
amnesic operating system like
<a href="https://tails.boum.org/about/index.en.html" target="_blank" rel="noopener noreferrer">Tails.</a>
</p>
<a href="https://github.com/BitcoinQnA/seedtool/releases/download/2.0.0/index.html">
<a href="https://github.com/BitcoinQnA/seedtool/releases/download/2.0.1/index.html">
<button class="btn" title="Download page for offline use">Download </button>
</a>

Expand Down Expand Up @@ -1713,9 +1714,9 @@ <h4>BIP141: Segregated Witness (Consensus layer)</h4>
<label>
Network Selection
<select id="bip47NetworkSelect">
<option value="bitcoin" selected>bitcoin main network</option>
<option value="regtest">regtest</option>
<option value="testnet">testnet</option>
<option value="bitcoin" selected>Mainnet</option>
<option value="regtest">Regtest</option>
<option value="testnet">Testnet</option>
</select>
</label>
<h4>My Details</h4>
Expand Down Expand Up @@ -190568,6 +190569,7 @@ <h3>Changelog</h3>
<li>V1.0.6 - ADD: Raw Entropy Input Method</li>
<li>V1.0.7 - ADD: BIP86 Taproot Address Generation</li>
<li>V2.0.0 - ADD: Predictive seed word input, Single Address Tool and BIP48 Multisig Address Derivation</li>
<li>V2.0.1 - ADD: Version number to header. FIX: BIP47 testnet derivation </li>
</ul>`,
UNKNOWN: /*html*/ `
<h3>ERROR: 404</h3>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "seed-tool",
"version": "2.0.0",
"version": "2.0.1",
"description": "Bitcoin wallet seed tool",
"main": "index.js",
"scripts": {
Expand Down
10 changes: 5 additions & 5 deletions src/www/dev.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ <h2>LOADING</h2>
<div class="container">
<div class="content">
<h1>Seed Tool</h1>
<h5 style="text-align:center;">v2.0.0</h5>
<h5 style="text-align:center;">v2.0.1</h5>
<hr>
<button class="accordion" title="Click to expand this section" id="aboutPanel">
About
Expand All @@ -123,7 +123,7 @@ <h2>Warning</h2>
amnesic operating system like
<a href="https://tails.boum.org/about/index.en.html" target="_blank" rel="noopener noreferrer">Tails.</a>
</p>
<a href="https://github.com/BitcoinQnA/seedtool/releases/download/2.0.0/index.html">
<a href="https://github.com/BitcoinQnA/seedtool/releases/download/2.0.1/index.html">
<button class="btn" title="Download page for offline use">Download </button>
</a>

Expand Down Expand Up @@ -1073,9 +1073,9 @@ <h4>BIP141: Segregated Witness (Consensus layer)</h4>
<label>
Network Selection
<select id="bip47NetworkSelect">
<option value="bitcoin" selected>bitcoin main network</option>
<option value="regtest">regtest</option>
<option value="testnet">testnet</option>
<option value="bitcoin" selected>Mainnet</option>
<option value="regtest">Regtest</option>
<option value="testnet">Testnet</option>
</select>
</label>
<h4>My Details</h4>
Expand Down
1 change: 1 addition & 0 deletions src/www/js/info.js
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,7 @@ window.infoHtml = {
<li>V1.0.6 - ADD: Raw Entropy Input Method</li>
<li>V1.0.7 - ADD: BIP86 Taproot Address Generation</li>
<li>V2.0.0 - ADD: Predictive seed word input, Single Address Tool and BIP48 Multisig Address Derivation</li>
<li>V2.0.1 - ADD: Version number to header. FIX: BIP47 testnet derivation </li>
</ul>`,
UNKNOWN: /*html*/ `
<h3>ERROR: 404</h3>
Expand Down

0 comments on commit b7f77fc

Please sign in to comment.