Merge pull request #94 from Microsoft/user/kumraj/updateInstaller

update menu choices
This commit is contained in:
Kumar Rajeev 2018-11-22 15:48:49 -08:00 коммит произвёл GitHub
Родитель aa10860adf ede61610a7
Коммит af588092f5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 19 добавлений и 24 удалений

Просмотреть файл

@ -12,35 +12,29 @@ export function createMenu(electron: typeof Electron) {
label: 'File',
submenu: [
{ label: 'Open', accelerator: 'Ctrl+O', click: onOpen },
{ label: 'Open Recent', click: onOpen, enabled: false },
{ label: 'Save', accelerator: 'Ctrl+S', click: onSave, enabled: false },
],
}, {
label: 'Edit',
submenu: [
{ role: 'undo' },
{ role: 'redo' },
{ type: 'separator' },
{ role: 'cut' },
{ role: 'copy' },
{ role: 'paste' },
{ role: 'pasteandmatchstyle' },
{ role: 'delete' },
{ role: 'selectall '},
],
}, {
label: 'View',
submenu: [
{ role: 'toggledevtools' },
{ type: 'separator' },
{ role: 'resetzoom' },
{ role: 'zoomin' },
{ role: 'zoomout' },
{ type: 'separator' },
{ role: 'togglefullscreen '},
],
}, {
role: 'help',
submenu: [
{
label: 'Documentation',
click() {
const tpnUrl = 'https://github.com/Microsoft/Windows-Machine-Learning/blob/RS5/Tools/WinMLDashboard/README.md';
require('electron').shell.openExternal(tpnUrl);
},
},
{ type: 'separator' },
{
label: 'Report Issues/Request Features',
click() {
const tpnUrl = 'https://github.com/Microsoft/Windows-Machine-Learning/issues/new';
require('electron').shell.openExternal(tpnUrl);
},
},
{ role: 'toggledevtools' },
{ type: 'separator' },
{
label: 'Third Party Notice',
click() {
@ -48,6 +42,7 @@ export function createMenu(electron: typeof Electron) {
require('electron').shell.openExternal(tpnUrl);
},
},
{ type: 'separator' },
{
label: "About",
click() {