Skip to content

Commit

Permalink
Updated Help menu options
Browse files Browse the repository at this point in the history
  • Loading branch information
klaudiosinani committed Aug 31, 2017
1 parent 6f2d3c5 commit fc87951
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,26 @@ function activate(command) {
}

const helpSubmenu = [{
label: 'Tusk Repo',
label: `Tusk Homepage`,
click() {
shell.openExternal('https://champloohq.github.io/tusk');
}
}, {
type: 'separator'
}, {
label: 'Fork Source',
click() {
shell.openExternal(`https://github.com/champloohq/tusk`);
}
}, {
label: `Tusk Homepage`,
label: `Report Issue`,
click() {
shell.openExternal('https://champloohq.github.io/tusk');
shell.openExternal(`https://github.com/champloohq/tusk/issues/new`);
}
}, {
label: `Latest Release`,
click() {
shell.openExternal(`https://github.com/champloohq/tusk/releases/latest`);
}
}];

Expand Down

0 comments on commit fc87951

Please sign in to comment.