1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Merge pull request #584 from MetaMask/shortcut-fix

Fixed prohibited shortcut combination.
This commit is contained in:
Kevin Serrano 2016-08-24 18:56:42 -07:00 committed by GitHub
commit 2faf3f7063
2 changed files with 10 additions and 5 deletions

View File

@ -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.

View File

@ -1,16 +1,16 @@
{
"name": "MetaMask",
"short_name": "Metamask",
"version": "2.9.1",
"version": "2.9.2",
"manifest_version": 2,
"description": "Ethereum Browser Extension",
"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"
}
}
},