diff --git a/README.md b/README.md index 419f4ff731..fe8b6bf041 100644 --- a/README.md +++ b/README.md @@ -104,3 +104,7 @@ You're probably boarding on the Simpsons. You might want to escape North Korea t ## Contributers We would love help on this project. If you are interested in helping out feel free to email charles@wonderunit.com or submit a PR. + +## License + +ISC \ No newline at end of file diff --git a/package.json b/package.json index fc0e753414..34ec6e66c3 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,10 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/wonderunit/storyboarder.git" + "url": "https://github.com/wonderunit/storyboarder.git" + }, + "bugs": { + "url": "https://github.com/wonderunit/storyboarder/issues" }, "keywords": [ "fountain", diff --git a/src/js/utils/accelerator.js b/src/js/utils/accelerator.js index f72a96771c..b4f07d0bd7 100644 --- a/src/js/utils/accelerator.js +++ b/src/js/utils/accelerator.js @@ -2,12 +2,13 @@ var os = require('os') const IS_MAC = os.platform() === 'darwin' -const CMD_OR_CTRL = IS_MAC ? '\u2318' : '\u2303' +const CODE_CMD_OR_CTRL = IS_MAC ? 'Command' : 'Control' +const CMD_OR_CTRL = IS_MAC ? 'Cmd' : 'Ctrl' const MODIFIER_MAP = { 'Command': '\u2318', 'Cmd': '\u2318', - 'CommandOrControl': CMD_OR_CTRL, + 'CommandOrControl': CODE_CMD_OR_CTRL, 'CmdOrCtrl': CMD_OR_CTRL, 'Super': '\u2318', 'Control': '\u2303',