1
0
mirror of https://github.com/hyperspacedev/hyperspace synced 2025-02-03 10:47:32 +01:00

Add 'Hyperspace Docs' entry to Help (#73)

Signed-off-by: Marquis Kurt <software@marquiskurt.net>
This commit is contained in:
Marquis Kurt 2019-09-17 17:25:14 -04:00
parent 73ad78ccba
commit b47765420d
No known key found for this signature in database
GPG Key ID: 725636D259F5402D

View File

@ -337,9 +337,18 @@ function createMenubar() {
{ {
role: 'help', role: 'help',
submenu: [ submenu: [
{
label: 'Hyperspace Docs',
click () { require('electron').shell.openExternal('https://hyperspace.marquiskurt.net/docs/') }
},
{ {
label: 'Report a Bug', label: 'Report a Bug',
click () { require('electron').shell.openExternal('https://github.com/hyperspacedev/hyperspace/issues') } click () { require('electron').shell.openExternal('https://github.com/hyperspacedev/hyperspace/issues') }
},
{ type: 'separator' },
{
label: 'Acknowledgements',
click () { require('electron').shell.openExternal('https://github.com/hyperspacedev/hyperspace/blob/master/patreon.md') }
} }
] ]
} }