const pkg = require('../../package.json');
const Store = require('electron-store');
const conf = new Store();
const {app} = require('electron');
// On Snap, or when DISABLE_WAYLAND=1, force X11 per Electron 38+ breaking changes.
// Only apply if user didn't already specify --ozone-platform.
try {
const userSpecifiedOzone = app.commandLine.hasSwitch('ozone-platform');
const isSnap = Boolean(process.env.SNAP || process.env.SNAP_NAME);
const disableWayland = ['1', 'true', 'yes'].includes(String(process.env.DISABLE_WAYLAND || '').toLowerCase());
if (!userSpecifiedOzone && (isSnap || disableWayland)) {
app.commandLine.appendSwitch('ozone-platform', 'x11');
// Optional debug log to help with support
console.log('[P3X-OneNote] Forcing --ozone-platform=x11 (Snap or DISABLE_WAYLAND)');
}
} catch (err) {
console.error('[P3X-OneNote] ozone-platform init error:', err);
}
//app.allowRendererProcessReuse = true
//app.disableHardwareAcceleration()
let translationKey = conf.get('lang')
if (translationKey === undefined) {
translationKey = 'en-US'
conf.set('lang', translationKey)
}
let darkThemeInvert = conf.get('darkThemeInvert')
if (darkThemeInvert === undefined) {
darkThemeInvert = false
conf.set('darkThemeInvert', darkThemeInvert)
}
const path = require('path')
const langTranslations = {
'en-US': require('../translation/en-US'),
'de-DE': require('../translation/de-DE'),
'pt-BR': require('../translation/pt-BR'),
'es-ES': require('../translation/es-ES'),
'fr-FR': require('../translation/fr-FR'),
'nl-NL': require('../translation/nl-NL'),
'it-IT': require('../translation/it-IT'),
'zh-CN': require('../translation/zh-CN'),
'ru-RU': require('../translation/ru-RU'),
'pl-PL': require('../translation/pl-PL'),
'tr-TR': require('../translation/tr-TR'),
'ja-JP': require('../translation/ja-JP'),
'zh-TW': require('../translation/zh-TW'),
}
const translation = langTranslations[translationKey]
global.p3x = {
onenote: {
pkg: pkg,
darkThemeInvert: darkThemeInvert,
lang: translation,
translationKey: translationKey,
translations: undefined,
title: translation.title,
conf: conf,
disableHide: true,
allowMultiple: false,
optionToDisableInternalExternalPopup: false,
optionToHideMenu: false,
iconFile: path.resolve(`${__dirname}/images/128x128.png`),
tray: undefined,
window: {
onenote: undefined,
},
action: undefined,
menus: undefined,
mainMenu: undefined,
setVisible: undefined,
bookmarksEditMode: false,
createWindow: {
onenote: undefined,
},
isVisible: () => {
return global.p3x.onenote.window.onenote.isVisible() && global.p3x.onenote.window.onenote.isFocused()
}
}
}
global.p3x.onenote.translations = langTranslations
// configuration
global.p3x.onenote.disableHide = conf.get('disable-hide')
if (global.p3x.onenote.disableHide === undefined) {
conf.set('disable-hide', true)
global.p3x.onenote.disableHide = true;
}
// optionToHideMenu
global.p3x.onenote.optionToHideMenu = conf.get('option-to-hide-menu')
if (global.p3x.onenote.optionToHideMenu === undefined) {
conf.set('option-to-hide-menu', false)
global.p3x.onenote.optionToHideMenu = false;
}
// configuration
global.p3x.onenote.optionToDisableInternalExternalPopup = conf.get('option-to-disable-internal-external-popup')
if (global.p3x.onenote.optionToDisableInternalExternalPopup === undefined) {
conf.set('option-to-disable-internal-external-popup', false)
global.p3x.onenote.optionToDisableInternalExternalPopup = false;
}
// configuration
global.p3x.onenote.allowMultiple = conf.get('allow-multiple')
if (global.p3x.onenote.allowMultiple === undefined) {
conf.set('allow-multiple', false)
global.p3x.onenote.allowMultiple = false;
}
// loading
global.p3x.onenote.action = require('./main/action');
global.p3x.onenote.menus = require('./main/menus');
global.p3x.onenote.mainMenu = require('./main/create/menu')
global.p3x.onenote.mainTray = require('./main/create/tray')
global.p3x.onenote.setVisible = require('./main/set-visible')
global.p3x.onenote.createWindow.onenote = require('./main/create/window/onenote')
if (global.p3x.onenote.allowMultiple === false) {
const semver = require('semver')
if (semver.gt(process.versions.electron === undefined ? '4.0.0' : process.versions.electron, '3.0.0')) {
const gotTheLock = app.requestSingleInstanceLock()
app.on('second-instance', (event, commandLine, workingDirectory) => {
// Someone tried to run a second instance, we should focus our window.
global.p3x.onenote.setVisible(true);
//global.p3x.onenote.window.onenote.webContents.reload();
})
if (!gotTheLock) {
app.quit()
return
}
} else {
const isSecondInstance = app.makeSingleInstance((commandLine, workingDirectory) => {
global.p3x.onenote.setVisible(true);
//global.p3x.onenote.window.onenote.webContents.reload();
})
if (isSecondInstance) {
return app.quit()
}
}
}
// app and ipc main events and configuration
require('./main/ipc-main')
require('./main/app-events')