Skip to content

Commit

Permalink
✨ Kreedzt - add about menus
Browse files Browse the repository at this point in the history
  • Loading branch information
Kreedzt committed May 12, 2020
1 parent f771564 commit b85fa14
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,24 @@ const menuTemplate = [
logger.info('log file path:', logFilePath);
shell.openExternal(`file://${logFilePath}`);
}
},
{
label: 'Download latest software',
click: () => {
shell.openExternal(
'https://github.com/Kreedzt/GFTool-Electron/releases'
);
}
},
{
label: 'Go to web page',
click: () => {
shell.openExternal('https://hycdes.com/');
}
},
{
label: `Current Version: ${app.getVersion()}`,
enabled: false
}
]
}
Expand Down

0 comments on commit b85fa14

Please sign in to comment.