add discord to tray

This commit is contained in:
dragonwocky 2020-08-27 23:11:49 +10:00
parent a8dd8cb145
commit b9ce8e5e54

View File

@ -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',