Compare commits

...

5 Commits
0.5.4 ... 0.5.6

Author SHA1 Message Date
Ian Coleman
de71c22328 Release v0.5.6 2023-08-01 13:44:51 +10:00
iancoleman
8fd86ecbe0 Merge pull request #640 from tayvano/patch-2
Add warning to site encouraging ppl not to share the info on this page
2023-08-01 13:10:18 +10:00
Taylor Monahan
20181be9a0 Update index.html 2023-07-29 08:06:50 -07:00
Ian Coleman
a9bf4823c7 Release v0.5.5 2023-07-13 11:30:36 +10:00
Ian Coleman
52e8f25e11 Avoid new bip39 mnemonic when bip85 index changed
Closes #634
2023-07-13 09:42:31 +10:00
3 changed files with 26 additions and 1 deletions

View File

@@ -1,3 +1,11 @@
# 0.5.6
* Add warning to not share info from the page
# 0.5.5
* Fix BIP85 bug when pressing enter
# 0.5.4
* Add Particl network

View File

@@ -15,7 +15,7 @@
<div class="container">
<h1 class="text-center">Mnemonic Code Converter</h1>
<p class="version">v0.5.4</p>
<p class="version">v0.5.6</p>
<hr>
<div class="row">
<div class="col-md-12">
@@ -29,6 +29,15 @@
For more info see the
<a href="https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki" target="_blank">BIP39 spec</a>.
</p>
<p>
<span class="text-danger">
If you share the information generated by this page with anyone, they can steal your assets.
Anyone asking you to share your your secret recovery phrase or BIP 32 root key is a scammer.
Do NOT copy & paste information from this page or send it to anyone offering to help you on Twitter, Discord, Telegram, Etherscan, or Line.
<strong>They will steal your coins.</strong>
</span>
</p>
</div>
</div>
<div class="form-group generate-container">

View File

@@ -607,6 +607,14 @@
if (isUsingOwnEntropy()) {
return;
}
// Pressing enter on BIP85 index field triggers generate click event.
// See https://github.com/iancoleman/bip39/issues/634
// To cancel the incorrect generation process, stop here if generate is
// not focused.
var buttonIsFocused = DOM.generate[0].contains(document.activeElement);
if (!buttonIsFocused) {
return;
}
clearDisplay();
showPending();
setTimeout(function() {