aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.js')
-rw-r--r--src/config.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/config.js b/src/config.js
index c6c31ce23..d46db36dc 100644
--- a/src/config.js
+++ b/src/config.js
@@ -34,6 +34,16 @@ export const GA_ID = !isDevMode ? 'UA-74126766-10' : 'UA-74126766-12';
34export const DEFAULT_LOCK_PASSWORD = 'ferdi'; 34export const DEFAULT_LOCK_PASSWORD = 'ferdi';
35export const KEEP_WS_LOADED_USID = '0a0aa000-0a0a-49a0-a000-a0a0a0a0a0a0'; 35export const KEEP_WS_LOADED_USID = '0a0aa000-0a0a-49a0-a000-a0a0a0a0a0a0';
36 36
37export const HIBERNATION_STRATEGIES = {
38 10: 'Extemely Fast Hibernation (10sec)',
39 30: 'Very Fast Hibernation (30sec)',
40 60: 'Fast Hibernation (1min)',
41 300: 'Normal Hibernation (5min)',
42 600: 'Slow Hibernation (10min)',
43 1800: 'Very Slow Hibernation (30min)',
44 3600: 'Extemely Slow Hibernation (1hour)',
45};
46
37export const DEFAULT_APP_SETTINGS = { 47export const DEFAULT_APP_SETTINGS = {
38 autoLaunchInBackground: false, 48 autoLaunchInBackground: false,
39 runInBackground: true, 49 runInBackground: true,
@@ -63,6 +73,7 @@ export const DEFAULT_APP_SETTINGS = {
63 scheduledDNDStart: '17:00', 73 scheduledDNDStart: '17:00',
64 scheduledDNDEnd: '09:00', 74 scheduledDNDEnd: '09:00',
65 hibernate: false, 75 hibernate: false,
76 hibernationStrategy: 300,
66 noUpdates: false, 77 noUpdates: false,
67}; 78};
68 79