forked from session-foundation/session-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout_preload.js
More file actions
28 lines (21 loc) · 951 Bytes
/
about_preload.js
File metadata and controls
28 lines (21 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* eslint-disable @typescript-eslint/no-var-requires */
/* global window */
const { ipcRenderer } = require('electron');
const url = require('url');
const os = require('os');
const { setupI18n } = require('./ts/util/i18n/i18n');
const config = url.parse(window.location.toString(), true).query;
const { crowdinLocale } = ipcRenderer.sendSync('locale-data');
window.theme = config.theme;
// Note: we have to call initializeRendererProcessLogger before setupI18n
const { initializeRendererProcessLogger } = require('./ts/util/logger/renderer_process_logging.js');
initializeRendererProcessLogger();
setupI18n({
crowdinLocale,
});
window.getOSRelease = () =>
`${os.type()} ${os.release()}, Node.js ${config.node_version} ${os.platform()} ${os.arch()}`;
window.getEnvironment = () => config.environment;
window.getVersion = () => config.version;
window.getCommitHash = () => config.commitHash;
window.getAppInstance = () => config.appInstance;