fchat-rising/electron/common.ts

32 lines
918 B
TypeScript
Raw Normal View History

2018-01-06 16:14:21 +00:00
import * as electron from 'electron';
2017-09-02 01:50:31 +00:00
import * as path from 'path';
2020-06-30 21:51:06 +00:00
import log from 'electron-log'; //tslint:disable-line:match-default-export-name
2019-09-17 17:14:14 +00:00
export const defaultHost = 'wss://chat.f-list.net/chat2';
2018-01-06 16:14:21 +00:00
export class GeneralSettings {
account = '';
closeToTray = true;
profileViewer = true;
host = defaultHost;
2018-01-06 16:14:21 +00:00
logDirectory = path.join(electron.app.getPath('userData'), 'data');
2020-04-03 00:46:36 +00:00
spellcheckLang: string[] | string | undefined = 'en_GB';
2018-01-06 16:14:21 +00:00
theme = 'default';
version = electron.app.getVersion();
beta = false;
2018-08-10 16:59:37 +00:00
customDictionary: string[] = [];
2018-09-28 00:08:10 +00:00
hwAcceleration = true;
2020-07-01 15:00:37 +00:00
risingCacheExpiryDays = 30;
2020-06-30 21:51:06 +00:00
risingSystemLogLevel: log.LevelOption = 'info';
2018-01-06 16:14:21 +00:00
}
2017-09-02 01:50:31 +00:00
//tslint:disable
const Module = require('module');
2018-01-06 16:14:21 +00:00
2017-09-02 01:50:31 +00:00
export function nativeRequire<T>(module: string): T {
return Module.prototype.require.call({paths: Module._nodeModulePaths(__dirname)}, module);
}
2018-01-06 16:14:21 +00:00
2020-04-03 00:46:36 +00:00
//tslint:enable