Skip to content

Commit b1b90a6

Browse files
committed
Version 4.7.1
1 parent fbcea70 commit b1b90a6

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Current Master
44

5+
## 4.7.1 Fri Jun 01 2018
6+
7+
- Fix bug where errors were not returned to Dapps.
8+
59
## 4.7.0 Wed May 30 2018
610

711
- Fix Brave support

app/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "__MSG_appName__",
33
"short_name": "__MSG_appName__",
4-
"version": "4.7.0",
4+
"version": "4.7.1",
55
"manifest_version": 2,
66
"author": "https://metamask.io",
77
"description": "__MSG_appDescription__",
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
const MessageManager = require('./lib/message-manager')
2+
const PersonalMessageManager = require('./lib/personal-message-manager')
3+
const TypedMessageManager = require('./lib/typed-message-manager')
4+
5+
class UserActionController {
6+
7+
constructor (opts = {}) {
8+
9+
this.messageManager = new MessageManager()
10+
this.personalMessageManager = new PersonalMessageManager()
11+
this.typedMessageManager = new TypedMessageManager()
12+
13+
}
14+
15+
}
16+
17+
module.exports = UserActionController

0 commit comments

Comments
 (0)