Skip to content
This repository has been archived by the owner on Nov 21, 2019. It is now read-only.

Commit

Permalink
Release: v3.39.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gamalielhere committed Jul 30, 2019
1 parent 6d4459a commit ced61d0
Show file tree
Hide file tree
Showing 32 changed files with 3,671 additions and 21,440 deletions.
19 changes: 13 additions & 6 deletions CHANGELOG.md
@@ -1,18 +1,25 @@
### v3.38.0
### Release v3.39.0

- Add BOK token [#2282](https://github.com/kvhnuke/etherwallet/pull/2282)
- Add Ampleforth abi [#2287](https://github.com/kvhnuke/etherwallet/pull/2287)
- Add HW token [#2270](https://github.com/kvhnuke/etherwallet/pull/2270)
- Re-add sv.js changes and Ledger show data [#2280](https://github.com/kvhnuke/etherwallet/pull/2280)

### Release v3.38.0
- XSS fix [#2273](https://github.com/kvhnuke/etherwallet/pull/2273)

### v3.37.0
### Release v3.37.0
- Change Webchain chain ID [#2256](https://github.com/kvhnuke/etherwallet/pull/2256)
- Added InsightsNetworkMigrationToEOS contract ABI [#2252](https://github.com/kvhnuke/etherwallet/pull/2252)
- Update ethAbi.json [#2254](https://github.com/kvhnuke/etherwallet/pull/2254)

### v3.36.0
### Release v3.36.0
- Add new tokens from ethlist [#2249](https://github.com/kvhnuke/etherwallet/pull/2249)

### v3.35.1
### Release v3.35.1

- Remove `;` [#2244](https://github.com/kvhnuke/etherwallet/pull/2244)
### v3.35.0
### Release v3.35.0

- Add LDX custom Gas [#2227](https://github.com/kvhnuke/etherwallet/pull/2226)
- Add LondonCoin custom Gas [#2226](https://github.com/kvhnuke/etherwallet/pull/2226)
Expand All @@ -21,7 +28,7 @@
- Add Crypto20 contract, Add 1SG, BCASH, BRP, BTR, CAS, EMB, FORK, FZCOIN, GUSD, PXG, TMTG, VIDT, DST, HEY, HV, VEGAN, XCL and XCHF, update ORME token, Update custom node function [#2242](https://github.com/kvhnuke/etherwallet/pull/2242)


### v3.34.0
### Release v3.34.0

- Add MAS token [https://github.com/kvhnuke/etherwallet/pull/2237](2237)
- Added BitherPlatformToken contract ABI [#2234](https://github.com/kvhnuke/etherwallet/pull/2234)
Expand Down
6 changes: 3 additions & 3 deletions app/includes/header.tpl
Expand Up @@ -90,18 +90,18 @@
@@if (site === 'mew' ) {
<a class="brand" href="/" aria-label="Go to homepage">
<img src="images/logo-myetherwallet.svg" height="64px" width="245px" alt="MyEtherWallet" />
<p class="small visible-xs">3.38.0</p>
<p class="small visible-xs">3.39.0</p>
</a>
}
@@if (site === 'cx' ) {
<a class="brand" href="/cx-wallet.html" aria-label="Go to homepage">
<img src="images/logo-myetherwalletcx.svg" height="64px" width="245px" alt="MyEtherWallet" />
<p class="small visible-xs">3.38.0</p>
<p class="small visible-xs">3.39.0</p>
</a>
}
<div class="tagline">

<span class="hidden-xs">3.38.0</span>
<span class="hidden-xs">3.39.0</span>

<span class="dropdown dropdown-lang" ng-cloak>
<a tabindex="0" aria-haspopup="true" aria-expanded="false" aria-label="change language. current language {{curLang}}" class="dropdown-toggle" ng-click="dropdown = !dropdown">{{curLang}}<i class="caret"></i></a>
Expand Down
2 changes: 1 addition & 1 deletion app/manifest.json
@@ -1,6 +1,6 @@
{
"name": "MyEtherWallet",
"version": "3.38.0",
"version": "3.39.0",
"manifest_version": 2,
"description": "MyEtherWallet Chrome Extension",
"homepage_url": "https://vintage.myetherwallet.com/",
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
@@ -1,6 +1,6 @@
{
"name": "MyEtherWallet",
"version": "3.38.0",
"version": "3.39.0",
"description": "An NPM dist of MyEtherWallet. For easier downloading & updating via CLI.",
"author": "MyEtherWallet",
"license": "ISC",
Expand Down
2 changes: 2 additions & 0 deletions app/scripts/main.js
Expand Up @@ -79,13 +79,15 @@ if (IS_CX) {
var MewConnect = require("@myetherwallet/mewconnect-web-client").Initiator;
var ledger3 = require("./staticJS/ledger3");
var ledgerEth = require("./staticJS/ledger-eth");
var byContractAddress = require('@ledgerhq/hw-app-eth/erc20').byContractAddress;
var trezorConnect = require("trezor-connect").default;
var digitalBitboxUsb = require("./staticJS/digitalBitboxUsb");
var digitalBitboxEth = require("./staticJS/digitalBitboxEth");
var secalotUsb = require("./staticJS/secalotUsb");
var secalotEth = require("./staticJS/secalotEth");
window.Ledger3 = ledger3;
window.ledgerEth = ledgerEth;
window.ledgerByContractAddress = byContractAddress;
window.TrezorConnect = trezorConnect;
window.DigitalBitboxUsb = digitalBitboxUsb;
window.DigitalBitboxEth = digitalBitboxEth;
Expand Down

0 comments on commit ced61d0

Please sign in to comment.