mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Merge branch 'master' into networkIndication
This commit is contained in:
commit
94768175bf
@ -4,6 +4,10 @@
|
|||||||
|
|
||||||
- Added a network indicator mark in dropdown menu
|
- Added a network indicator mark in dropdown menu
|
||||||
- Added network name next to network indicator
|
- Added network name next to network indicator
|
||||||
|
- Unify wording for transaction approve/reject options on notifications and the extension.
|
||||||
|
|
||||||
|
## 2.4.5 2016-06-29
|
||||||
|
|
||||||
- Fixed bug where MetaMask interfered with PDF loading.
|
- Fixed bug where MetaMask interfered with PDF loading.
|
||||||
- Moved switch account icon into menu bar.
|
- Moved switch account icon into menu bar.
|
||||||
- Changed status shapes to be a yellow warning sign for failure and ellipsis for pending transactions.
|
- Changed status shapes to be a yellow warning sign for failure and ellipsis for pending transactions.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "__MSG_appName__",
|
"name": "__MSG_appName__",
|
||||||
"short_name": "Metamask",
|
"short_name": "Metamask",
|
||||||
"version": "2.4.4",
|
"version": "2.4.5",
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"description": "__MSG_appDescription__",
|
"description": "__MSG_appDescription__",
|
||||||
"icons": {
|
"icons": {
|
||||||
|
@ -96,9 +96,9 @@ function showNotification (state) {
|
|||||||
title: state.title,
|
title: state.title,
|
||||||
message: '',
|
message: '',
|
||||||
buttons: [{
|
buttons: [{
|
||||||
title: 'confirm',
|
title: 'Approve',
|
||||||
}, {
|
}, {
|
||||||
title: 'cancel',
|
title: 'Reject',
|
||||||
}],
|
}],
|
||||||
})
|
})
|
||||||
notificationHandlers[id] = {
|
notificationHandlers[id] = {
|
||||||
|
@ -36,10 +36,10 @@ PendingTx.prototype.render = function () {
|
|||||||
h('.flex-row.flex-space-around', [
|
h('.flex-row.flex-space-around', [
|
||||||
h('button', {
|
h('button', {
|
||||||
onClick: state.cancelTransaction,
|
onClick: state.cancelTransaction,
|
||||||
}, 'Cancel'),
|
}, 'Reject'),
|
||||||
h('button', {
|
h('button', {
|
||||||
onClick: state.sendTransaction,
|
onClick: state.sendTransaction,
|
||||||
}, 'Send'),
|
}, 'Approve'),
|
||||||
]),
|
]),
|
||||||
|
|
||||||
])
|
])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user