mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Merge pull request #4425 from MetaMask/master
Merge Master into Develop
This commit is contained in:
commit
72dde75e58
@ -2,6 +2,13 @@
|
|||||||
|
|
||||||
## Current Master
|
## Current Master
|
||||||
|
|
||||||
|
## 4.7.1 Fri Jun 01 2018
|
||||||
|
|
||||||
|
- Fix bug where errors were not returned to Dapps.
|
||||||
|
|
||||||
|
## 4.7.0 Wed May 30 2018
|
||||||
|
|
||||||
|
- Fix Brave support
|
||||||
- Adds error messages when passwords don't match in onboarding flow.
|
- Adds error messages when passwords don't match in onboarding flow.
|
||||||
- Adds modal notification if a retry in the process of being confirmed is dropped.
|
- Adds modal notification if a retry in the process of being confirmed is dropped.
|
||||||
- New unlock screen design.
|
- New unlock screen design.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "__MSG_appName__",
|
"name": "__MSG_appName__",
|
||||||
"short_name": "__MSG_appName__",
|
"short_name": "__MSG_appName__",
|
||||||
"version": "4.6.1",
|
"version": "4.7.1",
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"author": "https://metamask.io",
|
"author": "https://metamask.io",
|
||||||
"description": "__MSG_appDescription__",
|
"description": "__MSG_appDescription__",
|
||||||
@ -68,6 +68,8 @@
|
|||||||
"matches": [
|
"matches": [
|
||||||
"https://metamask.io/*"
|
"https://metamask.io/*"
|
||||||
],
|
],
|
||||||
"ids": ["*"]
|
"ids": [
|
||||||
|
"*"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
17
app/scripts/controllers/user-actions.js
Normal file
17
app/scripts/controllers/user-actions.js
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
const MessageManager = require('./lib/message-manager')
|
||||||
|
const PersonalMessageManager = require('./lib/personal-message-manager')
|
||||||
|
const TypedMessageManager = require('./lib/typed-message-manager')
|
||||||
|
|
||||||
|
class UserActionController {
|
||||||
|
|
||||||
|
constructor (opts = {}) {
|
||||||
|
|
||||||
|
this.messageManager = new MessageManager()
|
||||||
|
this.personalMessageManager = new PersonalMessageManager()
|
||||||
|
this.typedMessageManager = new TypedMessageManager()
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = UserActionController
|
Loading…
Reference in New Issue
Block a user