Added link to homepage in Help menu

This commit is contained in:
jtc42 2019-06-07 17:28:01 +01:00
parent 901fc50fe5
commit a8161413f3

View file

@ -1,4 +1,4 @@
const { app, Menu } = require('electron')
const { app, shell, Menu } = require('electron')
const updater = require("electron-updater");
const autoUpdater = updater.autoUpdater;
const path = require('path')
@ -62,6 +62,13 @@ const template = [
})
}
},
{
label: 'Homepage',
click () {
shell.openExternal('https://openflexure.org')
}
},
{ type: 'separator' },
{
label: 'Check for Updates',
click () {