mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Merge branch 'master' into readd-loose
This commit is contained in:
commit
3e2bd19881
@ -3,11 +3,13 @@
|
|||||||
## Current Master
|
## Current Master
|
||||||
|
|
||||||
- Make eth_sign deprecation warning less noisy
|
- Make eth_sign deprecation warning less noisy
|
||||||
|
- Add useful link to eth_sign deprecation warning.
|
||||||
- Fix bug with network version serialization over synchronous RPC
|
- Fix bug with network version serialization over synchronous RPC
|
||||||
- Add MetaMask version to state logs.
|
- Add MetaMask version to state logs.
|
||||||
- Add the total amount of tokens when multiple tokens are added under the token list
|
- Add the total amount of tokens when multiple tokens are added under the token list
|
||||||
- Use HTTPS links for Etherscan.
|
- Use HTTPS links for Etherscan.
|
||||||
- Update Support center link to new one with HTTPS.
|
- Update Support center link to new one with HTTPS.
|
||||||
|
- Make web3 deprecation notice more useful by linking to a descriptive article.
|
||||||
|
|
||||||
## 3.9.11 2017-8-24
|
## 3.9.11 2017-8-24
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ function setupDappAutoReload (web3, observable) {
|
|||||||
get: (_web3, key) => {
|
get: (_web3, key) => {
|
||||||
// show warning once on web3 access
|
// show warning once on web3 access
|
||||||
if (!hasBeenWarned && key !== 'currentProvider') {
|
if (!hasBeenWarned && key !== 'currentProvider') {
|
||||||
console.warn('MetaMask: web3 will be deprecated in the near future in favor of the ethereumProvider \nhttps://github.com/ethereum/mist/releases/tag/v0.9.0')
|
console.warn('MetaMask: web3 will be deprecated in the near future in favor of the ethereumProvider \nhttps://github.com/MetaMask/faq/blob/master/detecting_metamask.md#web3-deprecation')
|
||||||
hasBeenWarned = true
|
hasBeenWarned = true
|
||||||
}
|
}
|
||||||
// get the time of use
|
// get the time of use
|
||||||
|
@ -35,10 +35,21 @@ PendingMsg.prototype.render = function () {
|
|||||||
style: {
|
style: {
|
||||||
margin: '10px',
|
margin: '10px',
|
||||||
},
|
},
|
||||||
}, `Signing this message can have
|
}, [
|
||||||
|
`Signing this message can have
|
||||||
dangerous side effects. Only sign messages from
|
dangerous side effects. Only sign messages from
|
||||||
sites you fully trust with your entire account.
|
sites you fully trust with your entire account.
|
||||||
This dangerous method will be removed in a future version.`),
|
This dangerous method will be removed in a future version. `,
|
||||||
|
h('a', {
|
||||||
|
href: 'https://medium.com/metamask/the-new-secure-way-to-sign-data-in-your-browser-6af9dd2a1527',
|
||||||
|
style: { color: 'rgb(247, 134, 28)' },
|
||||||
|
onClick: (event) => {
|
||||||
|
event.preventDefault()
|
||||||
|
const url = 'https://medium.com/metamask/the-new-secure-way-to-sign-data-in-your-browser-6af9dd2a1527'
|
||||||
|
global.platform.openWindow({ url })
|
||||||
|
},
|
||||||
|
}, 'Read more here.'),
|
||||||
|
]),
|
||||||
|
|
||||||
// message details
|
// message details
|
||||||
h(PendingTxDetails, state),
|
h(PendingTxDetails, state),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user