Browse Source

Merge pull request #1262 from gre/hotfixes/1.0.5-2

Prepare for 1.0.5
master
Gaëtan Renaudeau 7 years ago
committed by GitHub
parent
commit
274de7147b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. BIN
      build/icon.icns
  2. 2
      src/helpers/anonymizer.js
  3. 2
      src/helpers/derivations.js

BIN
build/icon.icns

Binary file not shown.

2
src/helpers/anonymizer.js

@ -21,7 +21,7 @@ function filepathReplace(path: string) {
if (!path) return path
const replaced = Object.keys(basePaths).reduce((path, name) => {
const p = basePaths[name]
return replaced
return path
.replace(p, name) // normal replace of the path
.replace(encodeURI(p.replace(/\\/g, '/')), name) // replace of the URI version of the path (that are in file:///)
}, path)

2
src/helpers/derivations.js

@ -14,7 +14,7 @@ type Derivation = {
const ethLegacyMEW: Derivation = ({ x }) => `44'/60'/0'/${x}`
ethLegacyMEW.mandatoryEmptyAccountSkip = 10
const etcLegacyMEW: Derivation = ({ x }) => `44'/60'/160720'/${x}'/0`
const etcLegacyMEW: Derivation = ({ x }) => `44'/60'/160720'/0'/${x}`
etcLegacyMEW.mandatoryEmptyAccountSkip = 10
const rippleLegacy: Derivation = ({ x }) => `44'/144'/0'/${x}'`

Loading…
Cancel
Save