OLD | NEW |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-2017 eyeo GmbH | 3 * Copyright (C) 2006-2017 eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 28 matching lines...) Expand all Loading... |
39 update_last_error: 0, | 39 update_last_error: 0, |
40 update_soft_expiration: 0, | 40 update_soft_expiration: 0, |
41 update_hard_expiration: 0, | 41 update_hard_expiration: 0, |
42 currentVersion: "0.0", | 42 currentVersion: "0.0", |
43 notificationdata: {}, | 43 notificationdata: {}, |
44 notificationurl: "https://notification.adblockplus.org/notification.json", | 44 notificationurl: "https://notification.adblockplus.org/notification.json", |
45 suppress_first_run_page: false, | 45 suppress_first_run_page: false, |
46 disable_auto_updates: false, | 46 disable_auto_updates: false, |
47 first_run_subscription_auto_select: true, | 47 first_run_subscription_auto_select: true, |
48 notifications_ignoredcategories: [], | 48 notifications_ignoredcategories: [], |
| 49 allowed_connection_type: "" |
49 }; | 50 }; |
50 | 51 |
51 let preconfigurable = ["suppress_first_run_page", "disable_auto_updates", | 52 let preconfigurable = ["suppress_first_run_page", "disable_auto_updates", |
52 "first_run_subscription_auto_select", "allowed_connection_type"]; | 53 "first_run_subscription_auto_select", "allowed_connection_type"]; |
53 | 54 |
54 let values; | 55 let values; |
55 let path = _fileSystem.resolve("prefs.json"); | 56 let path = _fileSystem.resolve("prefs.json"); |
56 let listeners = []; | 57 let listeners = []; |
57 let isDirty = false; | 58 let isDirty = false; |
58 let isSaving = false; | 59 let isSaving = false; |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 defaults[key] = _preconfiguredPrefs[key]; | 145 defaults[key] = _preconfiguredPrefs[key]; |
145 | 146 |
146 // Define defaults | 147 // Define defaults |
147 for (let key in defaults) | 148 for (let key in defaults) |
148 defineProperty(key); | 149 defineProperty(key); |
149 | 150 |
150 // Set values of prefs based on defaults | 151 // Set values of prefs based on defaults |
151 values = Object.create(defaults); | 152 values = Object.create(defaults); |
152 | 153 |
153 load(); | 154 load(); |
OLD | NEW |