fchat-rising/electron/common.ts

27 lines
741 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';
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');
2018-03-28 13:51:05 +00:00
spellcheckLang: 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;
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
2017-09-02 01:50:31 +00:00
//tslint:enable