Merge branch 'master' into networkIndication

feature/default_network_editable
Frankie 9 years ago
commit 94768175bf
  1. 4
      CHANGELOG.md
  2. 2
      app/manifest.json
  3. 4
      app/scripts/lib/notifications.js
  4. 6
      ui/app/components/pending-tx.js

@ -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,14 +36,14 @@ 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…
Cancel
Save