aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.js')
-rw-r--r--src/config.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/config.js b/src/config.js
index ce946f00a..b5702a202 100644
--- a/src/config.js
+++ b/src/config.js
@@ -23,9 +23,15 @@ export const DEFAULT_APP_SETTINGS = {
23 beta: false, 23 beta: false,
24 isAppMuted: false, 24 isAppMuted: false,
25 enableGPUAcceleration: true, 25 enableGPUAcceleration: true,
26 serviceLimit: 5,
26}; 27};
27 28
28export const FRANZ_SERVICE_REQUEST = 'https://bit.ly/franz-service-request'; 29export const FRANZ_SERVICE_REQUEST = 'https://bit.ly/franz-service-request';
29export const FRANZ_TRANSLATION = 'https://bit.ly/franz-translate'; 30export const FRANZ_TRANSLATION = 'https://bit.ly/franz-translate';
30 31
31export const SETTINGS_PATH = path.join(app.getPath('userData'), 'config', 'settings.json'); 32export const FILE_SYSTEM_SETTINGS_TYPES = [
33 'app',
34 'proxy',
35];
36
37export const SETTINGS_PATH = path.join(app.getPath('userData'), 'config');