diff --git a/repo/core/tray.js b/repo/core/tray.js index 280bb50..031dd85 100644 --- a/repo/core/tray.js +++ b/repo/core/tray.js @@ -112,6 +112,25 @@ module.exports = (store, __exports) => { } const contextMenu = electron.Menu.buildFromTemplate([ + { + type: 'normal', + label: 'GitHub', + click: () => { + electron.shell.openExternal( + 'https://github.com/dragonwocky/notion-enhancer/blob/master/DOCUMENTATION.md' + ); + }, + }, + { + type: 'normal', + label: 'Discord', + click: () => { + electron.shell.openExternal('https://discord.gg/sFWPXtA'); + }, + }, + { + type: 'separator', + }, { type: 'normal', label: 'Bug Report', @@ -133,15 +152,6 @@ module.exports = (store, __exports) => { { type: 'separator', }, - { - type: 'normal', - label: 'Docs', - click: () => { - electron.shell.openExternal( - 'https://github.com/dragonwocky/notion-enhancer/tree/js' - ); - }, - }, { type: 'normal', label: 'Enhancements',