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-04-08 00:22:32 +00:00
|
|
|
|
2018-01-06 16:14:21 +00:00
|
|
|
export class GeneralSettings {
|
|
|
|
account = '';
|
|
|
|
closeToTray = true;
|
|
|
|
profileViewer = true;
|
2018-04-08 00:22:32 +00:00
|
|
|
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();
|
2018-03-04 02:32:26 +00:00
|
|
|
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
|