feat(manual): usage manual (help) in menu

This commit is contained in:
Alexey Kasyanchuk
2018-03-10 19:12:59 +03:00
parent cb1b27c915
commit cbc6a49aec

View File

@ -43,7 +43,7 @@ export const aboutMenuTemplate = {
},
{
label: "Donate",
accelerator: "CmdOrCtrl+]",
accelerator: "CmdOrCtrl+*",
click: () => {
const win = new BrowserWindow({
parent: BrowserWindow.getFocusedWindow(),
@ -56,6 +56,13 @@ export const aboutMenuTemplate = {
slashes: true
}))
},
},
{
label: "Help",
accelerator: "CmdOrCtrl+?",
click: () => {
shell.openExternal('https://github.com/DEgITx/rats-search/blob/master/docs/MANUAL.md')
},
}
]
};