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

Commit

Permalink
Release: v3.11.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tayvano committed Jan 23, 2018
1 parent 871e91f commit c023176
Show file tree
Hide file tree
Showing 48 changed files with 196 additions and 201 deletions.
8 changes: 4 additions & 4 deletions app/includes/footer.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@
</div>
<p> Buy a... </p>
<div class="footer__pill-wrap">
<a class="footer__pill" href="https://www.ledgerwallet.com/r/fa4b?path=/products/" target="_blank" rel="noopener noreferrer">Ledger Wallet</a>
<a class="footer__pill" href="https://trezor.io/?a=myetherwallet.com" target="_blank" rel="noopener noreferrer">TREZOR</a>
<a class="footer__pill" href="https://digitalbitbox.com/?ref=mew" target="_blank" rel="noopener noreferrer">Digital Bitbox</a>
<a class="footer__pill" href="https://ether.cards/?utm_source=mew&utm_medium=cpm&utm_campaign=site" target="_blank" rel="noopener noreferrer">ether.card</a>
<a class="footer__pill" href="https://www.ledgerwallet.com/r/fa4b?path=/products/" target="_blank" rel="noopener">Ledger Wallet</a>
<a class="footer__pill" href="https://trezor.io/?a=myetherwallet.com" target="_blank" rel="noopener">TREZOR</a>
<a class="footer__pill" href="https://digitalbitbox.com/?ref=mew" target="_blank" rel="noopener">Digital Bitbox</a>
<a class="footer__pill" href="https://ether.cards/?utm_source=mew&utm_medium=cpm&utm_campaign=site" target="_blank" rel="noopener">ether.card</a>
</div>

<h5><i aria-hidden="true">💝</i> Donations are always appreciated!</h5>
Expand Down
6 changes: 3 additions & 3 deletions app/includes/header.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -98,18 +98,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.11.3.0</p>
<p class="small visible-xs">3.11.3.1</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.11.3.0</p>
<p class="small visible-xs">3.11.3.1</p>
</a>
}
<div class="tagline">
<span class="hidden-xs">3.11.3.0</span>
<span class="hidden-xs">3.11.3.1</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 btn btn-white" ng-click="dropdown = !dropdown">{{curLang}}<i class="caret"></i></a>
Expand Down
2 changes: 1 addition & 1 deletion app/includes/onboardingModal.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@
Always check the URL: `https://www.myetherwallet.com`.
</li>
<li translate="ONBOARD_secure_1_content__4">
Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.
Always make sure the URL bar has `MYETHERWALLET LLC` in green.
</li>
<li translate="ONBOARD_secure_1_content__5">
Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.
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.11.3.0",
"version": "3.11.3.1",
"manifest_version": 2,
"description": "MyEtherWallet Chrome Extension",
"homepage_url": "https://www.myetherwallet.com/",
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "MyEtherWallet",
"version": "3.11.3.0",
"version": "3.11.3.1",
"description": "An NPM dist of MyEtherWallet. For easier downloading & updating via CLI.",
"author": "MyEtherWallet",
"license": "ISC",
Expand Down
6 changes: 3 additions & 3 deletions app/scripts/controllers/tabsCtrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ var tabsCtrl = function($scope, globalService, $translate, $sce) {
$scope.notifier.danger(globalFuncs.errorMsgs[32]);
} else {
$scope.nodeIsConnected = true;
$scope.notifier.info( globalFuncs.successMsgs[5] + '— Now, check the URL: <strong>' + window.location.href + '.</strong> <br /> Network: <strong>' + $scope.nodeType + ' </strong> provided by <strong>' + $scope.nodeService + '.</strong>', 5000)
$scope.notifier.info( globalFuncs.successMsgs[5] + '<br /> URL: <strong>' + window.location.href + '</strong> <br /> Network: <strong>' + $scope.nodeType + ' </strong> provided by <strong>' + $scope.nodeService + '</strong>', 10000)
}
});
networkHasChanged && window.setTimeout(function() {
Expand All @@ -108,7 +108,7 @@ var tabsCtrl = function($scope, globalService, $translate, $sce) {
} else {
window.location.reload();
}

}, 250)
}
$scope.checkNodeUrl = function(nodeUrl) {
Expand All @@ -124,7 +124,7 @@ var tabsCtrl = function($scope, globalService, $translate, $sce) {
if (requestedNetwork && nodes.nodeList.hasOwnProperty(requestedNetwork)) {
node = JSON.stringify({ "key": requestedNetwork });
}

if (node == null) {
$scope.changeNode($scope.defaultNodeKey);
} else {
Expand Down
6 changes: 3 additions & 3 deletions app/scripts/directives/walletDecryptDrtv.html
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ <h5>
</li>
</ul>
<div class="form-group">
If you must, please <u>double-check the URL &amp; SSL cert</u>. It should say <code>https://www.myetherwallet.com</code> &amp; <code>MYETHERWALLET LLC [US]</code> in your URL bar.
If you must, please <u>double-check the URL &amp; SSL cert</u>. It should say <code>https://www.myetherwallet.com</code> &amp; <code>MYETHERWALLET LLC</code> in your URL bar.
</div>
<br />
<div class="form-group">
Expand Down Expand Up @@ -544,7 +544,7 @@ <h5>
</li>
</ul>
<div class="form-group">
If you must, please <u>double-check the URL &amp; SSL cert</u>. It should say <code>https://www.myetherwallet.com</code> &amp; <code>MYETHERWALLET LLC [US]</code> in your URL bar.
If you must, please <u>double-check the URL &amp; SSL cert</u>. It should say <code>https://www.myetherwallet.com</code> &amp; <code>MYETHERWALLET LLC</code> in your URL bar.
</div>
<br />
<div class="form-group">
Expand Down Expand Up @@ -625,7 +625,7 @@ <h5>
</li>
</ul>
<div class="form-group">
If you must, please <u>double-check the URL &amp; SSL cert</u>. It should say <code>https://www.myetherwallet.com</code> &amp; <code>MYETHERWALLET LLC [US]</code> in your URL bar.
If you must, please <u>double-check the URL &amp; SSL cert</u>. It should say <code>https://www.myetherwallet.com</code> &amp; <code>MYETHERWALLET LLC</code> in your URL bar.
</div>
<br />
<div class="form-group">
Expand Down
18 changes: 9 additions & 9 deletions app/scripts/nodes.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ nodes.nodeList = {
'chainId': 1,
'tokenList': require('./tokens/ethTokens.json'),
'abiList': require('./abiDefinitions/ethAbi.json'),
'service': 'MyEtherWallet',
'service': 'myetherapi.com',
'lib': new nodes.customNode('https://api.myetherapi.com/eth', '')
},
'eth_mycrypto': {
Expand All @@ -54,7 +54,7 @@ nodes.nodeList = {
'chainId': 1,
'tokenList': require('./tokens/ethTokens.json'),
'abiList': require('./abiDefinitions/ethAbi.json'),
'service': 'MyCrypto',
'service': 'mycryptoapi.com',
'lib': new nodes.customNode('https://api.mycryptoapi.com/eth', '')
},
'eth_ethscan': {
Expand All @@ -66,7 +66,7 @@ nodes.nodeList = {
'chainId': 1,
'tokenList': require('./tokens/ethTokens.json'),
'abiList': require('./abiDefinitions/ethAbi.json'),
'service': 'Etherscan.io',
'service': 'etherscan.io',
'lib': require('./nodeHelpers/etherscan')
},
'eth_infura': {
Expand All @@ -90,7 +90,7 @@ nodes.nodeList = {
'chainId': 1,
'tokenList': require('./tokens/ethTokens.json'),
'abiList': require('./abiDefinitions/ethAbi.json'),
'service': 'Giveth.io',
'service': 'giveth.io',
'lib': new nodes.customNode('https://mew.giveth.io', '')
},
'etc_epool': {
Expand All @@ -102,7 +102,7 @@ nodes.nodeList = {
'chainId': 61,
'tokenList': require('./tokens/etcTokens.json'),
'abiList': require('./abiDefinitions/etcAbi.json'),
'service': 'Epool.io',
'service': 'epool.io',
'lib': new nodes.customNode('https://mewapi.epool.io', '')
},
'rop_mew': {
Expand All @@ -114,7 +114,7 @@ nodes.nodeList = {
'chainId': 3,
'tokenList': require('./tokens/ropstenTokens.json'),
'abiList': require('./abiDefinitions/ropstenAbi.json'),
'service': 'MyEtherWallet',
'service': 'myetherapi.com',
'lib': new nodes.customNode('https://api.myetherapi.com/rop', '')
},
'rop_infura': {
Expand All @@ -138,7 +138,7 @@ nodes.nodeList = {
'chainId': 42,
'tokenList': require('./tokens/kovanTokens.json'),
'abiList': require('./abiDefinitions/kovanAbi.json'),
'service': 'Etherscan.io',
'service': 'etherscan.io',
'lib': require('./nodeHelpers/etherscanKov')
},
'kov_infura': {
Expand All @@ -162,7 +162,7 @@ nodes.nodeList = {
'chainId': 4,
'tokenList': require('./tokens/rinkebyTokens.json'),
'abiList': require('./abiDefinitions/rinkebyAbi.json'),
'service': 'Etherscan.io',
'service': 'etherscan.io',
'lib': require('./nodeHelpers/etherscanRin')
},
'rin_infura': {
Expand All @@ -187,7 +187,7 @@ nodes.nodeList = {
'tokenList': require('./tokens/expTokens.json'),
'abiList': require('./abiDefinitions/expAbi.json'),
'estimateGas': true,
'service': 'Expanse.tech',
'service': 'expanse.tech',
'lib': new nodes.customNode('https://node.expanse.tech/', '')
},
'ubq': {
Expand Down
2 changes: 1 addition & 1 deletion app/scripts/translations/ar.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ ONBOARD_secure_1_title : 'How To Protect Yourself from Phishers',
ONBOARD_secure_1_content__1 : 'Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.',
ONBOARD_secure_1_content__2 : 'Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.',
ONBOARD_secure_1_content__3 : 'Always check the URL: `https://www.myetherwallet.com`.',
ONBOARD_secure_1_content__4 : 'Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.',
ONBOARD_secure_1_content__4 : 'Always make sure the URL bar has `MYETHERWALLET LLC` in green.',
ONBOARD_secure_1_content__5 : 'Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.',
ONBOARD_secure_1_content__6 : 'Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.',
ONBOARD_secure_1_content__7 : '[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).',
Expand Down
2 changes: 1 addition & 1 deletion app/scripts/translations/ca.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ ONBOARD_secure_1_title : 'How To Protect Yourself from Phishers',
ONBOARD_secure_1_content__1 : 'Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.',
ONBOARD_secure_1_content__2 : 'Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.',
ONBOARD_secure_1_content__3 : 'Always check the URL: `https://www.myetherwallet.com`.',
ONBOARD_secure_1_content__4 : 'Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.',
ONBOARD_secure_1_content__4 : 'Always make sure the URL bar has `MYETHERWALLET LLC` in green.',
ONBOARD_secure_1_content__5 : 'Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.',
ONBOARD_secure_1_content__6 : 'Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.',
ONBOARD_secure_1_content__7 : '[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).',
Expand Down
2 changes: 1 addition & 1 deletion app/scripts/translations/de.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ ONBOARD_secure_1_title : 'How To Protect Yourself from Phishers',
ONBOARD_secure_1_content__1 : 'Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.',
ONBOARD_secure_1_content__2 : 'Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.',
ONBOARD_secure_1_content__3 : 'Always check the URL: `https://www.myetherwallet.com`.',
ONBOARD_secure_1_content__4 : 'Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.',
ONBOARD_secure_1_content__4 : 'Always make sure the URL bar has `MYETHERWALLET LLC` in green.',
ONBOARD_secure_1_content__5 : 'Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.',
ONBOARD_secure_1_content__6 : 'Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.',
ONBOARD_secure_1_content__7 : '[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).',
Expand Down
2 changes: 1 addition & 1 deletion app/scripts/translations/el.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ ONBOARD_secure_1_title : 'How To Protect Yourself from Phishers',
ONBOARD_secure_1_content__1 : 'Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.',
ONBOARD_secure_1_content__2 : 'Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.',
ONBOARD_secure_1_content__3 : 'Always check the URL: `https://www.myetherwallet.com`.',
ONBOARD_secure_1_content__4 : 'Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.',
ONBOARD_secure_1_content__4 : 'Always make sure the URL bar has `MYETHERWALLET LLC` in green.',
ONBOARD_secure_1_content__5 : 'Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.',
ONBOARD_secure_1_content__6 : 'Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.',
ONBOARD_secure_1_content__7 : '[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).',
Expand Down
2 changes: 1 addition & 1 deletion app/scripts/translations/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ ONBOARD_secure_1_title : 'How To Protect Yourself from Phishers',
ONBOARD_secure_1_content__1 : 'Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.',
ONBOARD_secure_1_content__2 : 'Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.',
ONBOARD_secure_1_content__3 : 'Always check the URL: `https://www.myetherwallet.com`.',
ONBOARD_secure_1_content__4 : 'Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.',
ONBOARD_secure_1_content__4 : 'Always make sure the URL bar has `MYETHERWALLET LLC` in green.',
ONBOARD_secure_1_content__5 : 'Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.',
ONBOARD_secure_1_content__6 : 'Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.',
ONBOARD_secure_1_content__7 : '[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).',
Expand Down
2 changes: 1 addition & 1 deletion app/scripts/translations/es.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ ONBOARD_secure_1_title : 'How To Protect Yourself from Phishers',
ONBOARD_secure_1_content__1 : 'Phishers send you a message with a link to a website that looks just like MyEtherWallet, EtherDelta, Paypal, or your bank, but is not the real website. They steal your information and then steal your money.',
ONBOARD_secure_1_content__2 : 'Install [EAL](https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn) or [MetaMask](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn) or [Cryptonite by Metacert](https://chrome.google.com/webstore/detail/cryptonite-by-metacert/keghdcpemohlojlglbiegihkljkgnige) or the [MyEtherWallet Chrome Extension](https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm) to block malicious websites.',
ONBOARD_secure_1_content__3 : 'Always check the URL: `https://www.myetherwallet.com`.',
ONBOARD_secure_1_content__4 : 'Always make sure the URL bar has `MYETHERWALLET LLC [US]` in green.',
ONBOARD_secure_1_content__4 : 'Always make sure the URL bar has `MYETHERWALLET LLC` in green.',
ONBOARD_secure_1_content__5 : 'Do not trust messages or links sent to you randomly via email, Slack, Reddit, Twitter, etc.',
ONBOARD_secure_1_content__6 : 'Always navigate directly to a site before you enter information. Do not enter information after clicking a link from a message or email.',
ONBOARD_secure_1_content__7 : '[Install an AdBlocker](https://chrome.google.com/webstore/detail/ublock-origin/cjpalhdlnbpafiamejdnhcphjbkeiagm?hl=en) and do not click ads on your search engine (e.g. Google).',
Expand Down
Loading

0 comments on commit c023176

Please sign in to comment.