feat(menu): new menu items (support)

This commit is contained in:
Alexey Kasyanchuk
2018-03-14 22:47:54 +03:00
parent 24808d767b
commit b346a1a25a

View File

@ -58,11 +58,25 @@ export const aboutMenuTemplate = {
}, },
}, },
{ {
label: "Help", label: "Help (Documentation)",
accelerator: "CmdOrCtrl+?", accelerator: "CmdOrCtrl+?",
click: () => { click: () => {
shell.openExternal('https://github.com/DEgITx/rats-search/blob/master/docs/MANUAL.md') shell.openExternal('https://github.com/DEgITx/rats-search/blob/master/docs/MANUAL.md')
}, },
},
{
label: "Support (Discussion)",
accelerator: "CmdOrCtrl+>",
click: () => {
shell.openExternal('https://discord.gg/t9GQtxA')
},
},
{
label: "About (GitHub)",
accelerator: "CmdOrCtrl+<",
click: () => {
shell.openExternal('https://github.com/DEgITx/rats-search')
},
} }
] ]
}; };