120 lines
No EOL
3.5 KiB
JavaScript
120 lines
No EOL
3.5 KiB
JavaScript
const { app, BrowserWindow } = require('electron');
|
|
const { readFileSync } = require('fs');
|
|
const { join } = require('path');
|
|
|
|
const Constants = require('./Constants');
|
|
|
|
process.env.PULSE_LATENCY_MSEC = process.env.PULSE_LATENCY_MSEC ?? 30;
|
|
app.setAppUserModelId(Constants.APP_ID);
|
|
app.name = 'discord'; // Force name as sometimes breaks
|
|
|
|
const paths = require('./paths');
|
|
global.moduleDataPath = paths.getModuleDataPath(); // Global because discord
|
|
app.setPath('userData', paths.getUserData()); // Set userData properly because electron
|
|
|
|
const buildInfo = require('./utils/buildInfo');
|
|
app.setVersion(buildInfo.version); // More global because discord / electron
|
|
global.releaseChannel = buildInfo.releaseChannel;
|
|
|
|
log('BuildInfo', 'Loaded build info', buildInfo);
|
|
|
|
const errorHandler = require('./errorHandler');
|
|
errorHandler.init();
|
|
|
|
const splashScreen = require('./splash');
|
|
const appSettings = require('./appSettings');
|
|
|
|
const updater = require('./updater/updater');
|
|
const moduleUpdater = require('./updater/moduleUpdater');
|
|
const appUpdater = require('./updater/appUpdater');
|
|
|
|
const settings = appSettings.getSettings();
|
|
if (!settings.get('enableHardwareAcceleration', true)) app.disableHardwareAcceleration();
|
|
|
|
let desktopCore;
|
|
const startCore = () => {
|
|
desktopCore = require('discord_desktop_core');
|
|
log('Bootstrap', 'Required core');
|
|
|
|
desktopCore.startup({
|
|
paths,
|
|
splashScreen,
|
|
moduleUpdater,
|
|
buildInfo,
|
|
appSettings,
|
|
Constants,
|
|
updater,
|
|
GPUSettings: require('./GPUSettings'),
|
|
autoStart: require('./autoStart'),
|
|
crashReporterSetup: require('./crashReporterSetup'),
|
|
});
|
|
|
|
const i = setImmediate(() => {
|
|
if (!global.mainWindowId) return;
|
|
clearInterval(i);
|
|
|
|
const bw = BrowserWindow.fromId(global.mainWindowId);
|
|
|
|
let donePageReady = false;
|
|
bw.webContents.on('dom-ready', () => {
|
|
if (!donePageReady) { // Only run once
|
|
splashScreen.pageReady(); // Override Core's pageReady with our own on dom-ready to show main window earlier
|
|
donePageReady = true;
|
|
}
|
|
|
|
const cmdSwitches = require('./cmdSwitches');
|
|
|
|
let injectJs = readFileSync(join(__dirname, 'mainWindowInject.js'), 'utf8');
|
|
|
|
const [ version1, version2 ] = oaVersion.split('-'); // Split via -
|
|
injectJs = injectJs
|
|
.replaceAll('<oa_version_channel>', version1[0].toUpperCase() + version1.substring(1).toLowerCase())
|
|
.replaceAll('<oa_version_hash>', version2 || 'custom')
|
|
.replaceAll('<oa_cmd_preset>', cmdSwitches.preset)
|
|
.replaceAll('<oa_cmd_full>', cmdSwitches.cmd);
|
|
|
|
bw.webContents.executeJavaScript(injectJs);
|
|
});
|
|
});
|
|
};
|
|
|
|
const startUpdate = async () => {
|
|
const startMinimized = process.argv.includes('--start-minimized');
|
|
|
|
paths.cleanOldVersions();
|
|
|
|
appUpdater.update(startMinimized, () => {
|
|
if (process.env.OPENASAR_NOSTART) return;
|
|
|
|
startCore();
|
|
}, () => {
|
|
log('Bootstrap', 'Main window visible');
|
|
desktopCore.setMainWindowVisible(!startMinimized);
|
|
|
|
setTimeout(() => { // Try to update our asar
|
|
if (oaConfig.autoupdate === false) return; // If autoupdate disabled, don't update
|
|
|
|
const asarUpdate = require('./asarUpdate');
|
|
|
|
try {
|
|
asarUpdate();
|
|
} catch (e) {
|
|
log('AsarUpdate', 'Failed', e);
|
|
}
|
|
}, 1000);
|
|
});
|
|
};
|
|
|
|
|
|
module.exports = () => {
|
|
if (!app.requestSingleInstanceLock() && !(process.argv.includes('--multi-instance') || oaConfig.multiInstance === true)) {
|
|
log('Bootstrap', 'Non-first instance');
|
|
return app.quit();
|
|
}
|
|
|
|
if (app.isReady()) {
|
|
startUpdate();
|
|
} else {
|
|
app.once('ready', startUpdate);
|
|
}
|
|
}; |