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

Commit

Permalink
Merge pull request #2129 from kvhnuke/devop/release-v3.24.0
Browse files Browse the repository at this point in the history
Devop/release v3.24.0
  • Loading branch information
gamalielhere authored Oct 29, 2018
2 parents 73e5d0a + 4aca35e commit 7c624c2
Show file tree
Hide file tree
Showing 18 changed files with 518 additions and 260 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
### Release v3.24.0

### New

- Add C20 contract abi [#2122](https://github.com/kvhnuke/etherwallet/pull/2122)
- Adds VIC tokens [#2120](https://github.com/kvhnuke/etherwallet/pull/2120)
- Adds VIC contracts [#2121](https://github.com/kvhnuke/etherwallet/pull/2121)
- Adds phishfort extension [#2113](https://github.com/kvhnuke/etherwallet/pull/2113)
- Update POA block explorrer [#2111](https://github.com/kvhnuke/etherwallet/pull/2111)
- Fix trezor signing [#2109](https://github.com/kvhnuke/etherwallet/pull/2109)
- Add Credits custom gas [#2107](https://github.com/kvhnuke/etherwallet/pull/2107)
Expand Down
6 changes: 3 additions & 3 deletions app/includes/header.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -100,18 +100,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.23.1</p>
<p class="small visible-xs">3.24.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.23.1</p>
<p class="small visible-xs">3.24.0</p>
</a>
}
<div class="tagline">
<span class="hidden-xs">3.23.1</span>
<span class="hidden-xs">3.24.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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "MyEtherWallet",
"version": "3.23.1",
"version": "3.24.0",
"manifest_version": 2,
"description": "MyEtherWallet Chrome Extension",
"homepage_url": "https://www.myetherwallet.com/",
Expand Down
386 changes: 262 additions & 124 deletions app/scripts/controllers/decryptWalletCtrl.js

Large diffs are not rendered by default.

12 changes: 7 additions & 5 deletions chrome-extension/background/extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
localStorage.getItem("iosiro-blacklisted-domains") === null
? getDomains("iosiro")
: checkIfDataIsRecent("iosiro");
localStorage.getItem("phishfort-blacklisted-domains") === null
localStorage.getItem("phishfort-blacklisted-domains") === null
? getDomains("phishfort")
: checkIfDataIsRecent("phishfort");

Expand Down Expand Up @@ -71,12 +71,14 @@ function querycB(tabs) {
const ealBlacklisted = localStorage.getItem("eal-blacklisted-domains")
? JSON.parse(localStorage.getItem("eal-blacklisted-domains"))
: eal;

const iosiroBlacklisted = localStorage.getItem("iosiro-blacklisted-domains")
? JSON.parse(localStorage.getItem("iosiro-blacklisted-domains"))
: iosiro;

const phishfortBlacklisted = localStorage.getItem("phishfort-blacklisted-domains")
? JSON.parse(localStorage.getItem("phishfort-blacklisted-domains"))
: phishfort;
? JSON.parse(localStorage.getItem("phishfort-blacklisted-domains"))
: phishfort;

const whitelisted = localStorage.getItem("409h-whitelisted-domains")
? JSON.parse(localStorage.getItem("409h-whitelisted-domains"))
Expand Down Expand Up @@ -197,10 +199,10 @@ function getDomains(str) {

let newName;

if (str && str !== "" && (str === "eal" || str === "iosiro" || str === "phishfort")) {
if (str && str !== "" && (str === "eal" || str === "iosiro" || str == "phishfort")) {
newName = str + "-blacklisted-domains";
setInStorage(blackListDomains[str], newName);
} else if (str && str !== "" && (str !== "eal" || str !== "iosiro" || str !== "phishfort")) {
} else if (str && str !== "" && (str !== "eal" || str !== "iosiro" || str != "phishfort")) {
newName = str + "-whitelisted-domains";
setInStorage(whiteListDomains[str], newName);
} else {
Expand Down
6 changes: 4 additions & 2 deletions chrome-extension/contest.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@
or
<a href="https://kb.myetherwallet.com/migration/moving-from-private-key-to-metamask.html" target="_blank" rel="noopener noreferrer">MetaMask</a>
or
<a href="https://chrome.google.com/webstore/detail/phishfort-protect/bdiohckpogchppdldbckcdjlklanhkfc" target="_blank" rel="noopener noreferrer">PhishFort</a>
or
<a href="https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige" target="_blank" rel="noopener noreferrer">Cryptonite</a>
</span>
</div>
Expand All @@ -98,13 +100,13 @@

<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.23.1</p>
<p class="small visible-xs">3.24.0</p>
</a>


<div class="tagline">

<span class="hidden-xs">3.23.1</span>
<span class="hidden-xs">3.24.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
4 changes: 2 additions & 2 deletions chrome-extension/cx-wallet.html
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,12 @@

<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.23.1</p>
<p class="small visible-xs">3.24.0</p>
</a>

<div class="tagline">

<span class="hidden-xs">3.23.1</span>
<span class="hidden-xs">3.24.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
6 changes: 4 additions & 2 deletions chrome-extension/helpers.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@
or
<a href="https://kb.myetherwallet.com/migration/moving-from-private-key-to-metamask.html" target="_blank" rel="noopener noreferrer">MetaMask</a>
or
<a href="https://chrome.google.com/webstore/detail/phishfort-protect/bdiohckpogchppdldbckcdjlklanhkfc" target="_blank" rel="noopener noreferrer">PhishFort</a>
or
<a href="https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige" target="_blank" rel="noopener noreferrer">Cryptonite</a>
</span>
</div>
Expand All @@ -99,13 +101,13 @@

<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.23.1</p>
<p class="small visible-xs">3.24.0</p>
</a>


<div class="tagline">

<span class="hidden-xs">3.23.1</span>
<span class="hidden-xs">3.24.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
Loading

0 comments on commit 7c624c2

Please sign in to comment.