1
0
mirror of https://github.com/BoostIo/Boostnote synced 2025-12-12 17:26:17 +00:00

Add BoostHub link to menu

This commit is contained in:
Junyoung Choi
2020-07-20 21:06:55 +09:00
parent c5b4c327fa
commit b50c5386a6

View File

@@ -472,9 +472,21 @@ const help = {
]
}
const team = {
label: 'For Team',
submenu: [
{
label: 'BoostHub',
click: async () => {
shell.openExternal('https://boosthub.io/')
}
}
]
}
module.exports =
process.platform === 'darwin'
? [boost, file, edit, view, window, help]
? [boost, file, edit, view, window, team, help]
: process.platform === 'win32'
? [boost, file, view, help]
: [file, view, help]
? [boost, file, view, team, help]
: [file, view, team, help]