From ddd559718f5395190ad3903cdb9c42e2e6e50443 Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Fri, 1 Sep 2017 11:01:53 -0700 Subject: [PATCH 1/3] Update support link --- ui/app/info.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/info.js b/ui/app/info.js index 899841c83..c69d83715 100644 --- a/ui/app/info.js +++ b/ui/app/info.js @@ -103,7 +103,7 @@ InfoScreen.prototype.render = function () { [ h('div.fa.fa-support', [ h('a.info', { - href: 'http://metamask.consensyssupport.happyfox.com', + href: 'https://support.metamask.com', target: '_blank', }, 'Visit our Support Center'), ]), From 8498daee88f1002b6a2d980a66101a0d62a7918c Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Fri, 1 Sep 2017 11:03:49 -0700 Subject: [PATCH 2/3] Update etherscan links to https Fixes #2005 --- ui/lib/account-link.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ui/lib/account-link.js b/ui/lib/account-link.js index d061d0ad1..037d990fa 100644 --- a/ui/lib/account-link.js +++ b/ui/lib/account-link.js @@ -3,19 +3,19 @@ module.exports = function (address, network) { let link switch (net) { case 1: // main net - link = `http://etherscan.io/address/${address}` + link = `https://etherscan.io/address/${address}` break case 2: // morden test net - link = `http://morden.etherscan.io/address/${address}` + link = `https://morden.etherscan.io/address/${address}` break case 3: // ropsten test net - link = `http://ropsten.etherscan.io/address/${address}` + link = `https://ropsten.etherscan.io/address/${address}` break case 4: // rinkeby test net - link = `http://rinkeby.etherscan.io/address/${address}` + link = `https://rinkeby.etherscan.io/address/${address}` break case 42: // kovan test net - link = `http://kovan.etherscan.io/address/${address}` + link = `https://kovan.etherscan.io/address/${address}` break default: link = '' From 01f961976a90fc353bba6afbc8d3b733db9d91e6 Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Fri, 1 Sep 2017 11:42:44 -0700 Subject: [PATCH 3/3] Bump changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 43b52e5fa..e6835e7bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ - Fix bug with network version serialization over synchronous RPC - Add MetaMask version to state logs. - Add the total amount of tokens when multiple tokens are added under the token list +- Use HTTPS links for Etherscan. +- Update Support center link to new one with HTTPS. ## 3.9.11 2017-8-24