|
|
|
|
@ -3,6 +3,7 @@ import electron, { BrowserWindow } from 'electron';
|
|
|
|
|
import { t } from 'i18next';
|
|
|
|
|
|
|
|
|
|
import { homepage, getReleaseUrl, licensesPage } from './constants.js';
|
|
|
|
|
import { logFilePath } from './logger.js';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// menu-safe i18n.t:
|
|
|
|
|
@ -424,6 +425,11 @@ export default ({ app, mainWindow, newVersion, isStoreBuild }: {
|
|
|
|
|
click() { electron.shell.openExternal('https://github.com/mifi/lossless-cut/issues'); },
|
|
|
|
|
},
|
|
|
|
|
{ type: 'separator' },
|
|
|
|
|
{
|
|
|
|
|
label: esc(t('Log file')),
|
|
|
|
|
click() { electron.shell.openPath(logFilePath); },
|
|
|
|
|
},
|
|
|
|
|
{ type: 'separator' },
|
|
|
|
|
{
|
|
|
|
|
label: esc(t('Licenses')),
|
|
|
|
|
click() { electron.shell.openExternal(licensesPage); },
|
|
|
|
|
|