diff --git a/src/main/menu/templates/help.js b/src/main/menu/templates/help.js index 2863c9a5..8d771b66 100755 --- a/src/main/menu/templates/help.js +++ b/src/main/menu/templates/help.js @@ -32,32 +32,27 @@ export default function () { label: '&Help', role: 'help', submenu: [{ - label: 'Learn More', + label: 'Quick Start', click () { - shell.openExternal('https://marktext.app') + shell.openExternal('https://github.com/marktext/marktext/blob/master/docs/README.md') } }, { - label: 'Source Code on GitHub', + label: 'Markdown syntax', click () { - shell.openExternal('https://github.com/marktext/marktext') - } - }, { - label: 'License', - click () { - shell.openExternal('https://github.com/marktext/marktext/blob/master/LICENSE') + shell.openExternal('https://github.com/marktext/marktext/blob/master/docs/MARKDOWN_SYNTAX.md') } }, { label: 'Changelog', click () { shell.openExternal('https://github.com/marktext/marktext/blob/master/.github/CHANGELOG.md') } - }, { - label: 'Markdown syntax', - click () { - shell.openExternal('https://github.com/marktext/marktext/blob/develop/docs/MARKDOWN_SYNTAX.md') - } }, { type: 'separator' + }, { + label: 'Donate via Open Collective', + click (item, win) { + shell.openExternal('https://opencollective.com/marktext') + } }, { label: 'Feedback via Twitter', click (item, win) { @@ -70,11 +65,33 @@ export default function () { } }, { type: 'separator' + }, { + label: 'Website', + click () { + shell.openExternal('https://marktext.app') + } + }, { + label: 'Watch on GitHub', + click () { + shell.openExternal('https://github.com/marktext/marktext') + } }, { label: 'Follow @Jocs on Github', click () { shell.openExternal('https://github.com/Jocs') } + }, { + label: 'Follow us on Twitter', + click () { + shell.openExternal('https://twitter.com/marktextapp') + } + }, { + type: 'separator' + }, { + label: 'License', + click () { + shell.openExternal('https://github.com/marktext/marktext/blob/master/LICENSE') + } }] }