diff --git a/lib/main-menu.js b/lib/main-menu.js index 0c91cf1f..4d91f55f 100644 --- a/lib/main-menu.js +++ b/lib/main-menu.js @@ -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]