From 8dfa701197c57d65262b285f009c612d065b0f16 Mon Sep 17 00:00:00 2001 From: Kevin Serrano Date: Wed, 24 Aug 2016 18:33:27 -0700 Subject: Fixed prohibited shortcut combination. --- app/manifest.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/manifest.json b/app/manifest.json index c1b9ee817..5bfd15f66 100644 --- a/app/manifest.json +++ b/app/manifest.json @@ -7,10 +7,10 @@ "commands": { "_execute_browser_action": { "suggested_key": { - "windows": "Ctrl+Alt+M", - "mac": "Command+Alt+M", - "chromeos": "Ctrl+Alt+M", - "linux": "Ctrl+Alt+M" + "windows": "Alt+Shift+M", + "mac": "Alt+Shift+M", + "chromeos": "Search+M", + "linux": "Alt+Shift+M" } } }, -- cgit v1.2.3 From a9b390c58c5fe3abe92ed3d33fd4d8cb74ff3cce Mon Sep 17 00:00:00 2001 From: Kevin Serrano Date: Wed, 24 Aug 2016 18:38:15 -0700 Subject: Bump versioning. --- CHANGELOG.md | 5 +++++ app/manifest.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee155f6ba..5e6bc5299 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## Current Master +## 2.9.2 2016-08-24 + +- Fixed shortcut bug from preventing installation. + + ## 2.9.1 2016-08-24 - Added static image as fallback for when WebGL isn't supported. diff --git a/app/manifest.json b/app/manifest.json index 2ee8338a6..e5e08c4b6 100644 --- a/app/manifest.json +++ b/app/manifest.json @@ -1,7 +1,7 @@ { "name": "MetaMask", "short_name": "Metamask", - "version": "2.9.1", + "version": "2.9.2", "manifest_version": 2, "description": "Ethereum Browser Extension", "commands": { -- cgit v1.2.3