Skip to content
This repository was archived by the owner on Feb 26, 2021. It is now read-only.

Commit 2eacaa8

Browse files
authored
Hotfix v2.5.3 (#398)
* fix syntax error in main.js * reclaim tool: invalidate new seeds longer than 81 trytes * bump version to 2.5.3
1 parent 748c0be commit 2eacaa8

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

app/js/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ var App = (function(App, undefined) {
581581
}
582582

583583
if (simple) {
584-
template[1].submenu.splce(0, 2); // Only language
584+
template[1].submenu.splice(0, 2); // Only language
585585
} else {
586586
if (process.platform == "win32") {
587587
template[1].submenu.splice(1, 1); // Hide fullscreen

locales/en/translation.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@
282282
"db_location":"Database Location",
283283
"invalid_seed":"Invalid Seed",
284284
"invalid_old_seed":"Invalid Old Seed",
285-
"invalid_new_seed":"Invalid New Seed. Minimum length: 81 trytes",
285+
"invalid_new_seed":"Invalid new seed. The seed must be 81 trytes in length",
286286
"amount":"Amount",
287287
"select_your_host":"Select Your Host",
288288
"custom":"Custom",

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "iota",
33
"productName": "IOTA Wallet",
44
"description": "IOTA Wallet",
5-
"version": "2.5.2",
5+
"version": "2.5.3",
66
"license": "GPL-3.0",
77
"main": "app/js/main.js",
88
"scripts": {

package.testnet.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "iota-testnet",
33
"productName": "IOTA Wallet Testnet",
44
"description": "IOTA Wallet Testnet",
5-
"version": "2.5.1-testnet",
5+
"version": "2.5.3-testnet",
66
"license": "GPL-3.0",
77
"main": "app/js/main.js",
88
"scripts": {

ui/js/ui.recover.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ var UI = (function (UI, $, undefined) {
5353
$('#recovery-old-seed').focus()
5454
return
5555
}
56-
if (newSeed.length === 0 || !iota.valid.isTrytes(newSeed) || newSeed.length < 81) {
56+
if (newSeed.length != 81 || !iota.valid.isTrytes(newSeed)) {
5757
UI.formError('recover', 'invalid_new_seed', {initial: 'publish_proof'})
5858
$('.remodal-close').off('click')
5959
publishProofBtn.loadingReset('publish_proof')

0 commit comments

Comments
 (0)