OLD | NEW |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <http://adblockplus.org/>, | 2 * This file is part of Adblock Plus <http://adblockplus.org/>, |
3 * Copyright (C) 2006-2013 Eyeo GmbH | 3 * Copyright (C) 2006-2013 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 17 matching lines...) Expand all Loading... |
28 data_directory: "", | 28 data_directory: "", |
29 savestats: false, | 29 savestats: false, |
30 privateBrowsing: false, | 30 privateBrowsing: false, |
31 subscriptions_fallbackerrors: 5, | 31 subscriptions_fallbackerrors: 5, |
32 subscriptions_fallbackurl: "https://adblockplus.org/getSubscription?version=%V
ERSION%&url=%SUBSCRIPTION%&downloadURL=%URL%&error=%ERROR%&channelStatus=%CHANNE
LSTATUS%&responseStatus=%RESPONSESTATUS%", | 32 subscriptions_fallbackurl: "https://adblockplus.org/getSubscription?version=%V
ERSION%&url=%SUBSCRIPTION%&downloadURL=%URL%&error=%ERROR%&channelStatus=%CHANNE
LSTATUS%&responseStatus=%RESPONSESTATUS%", |
33 subscriptions_autoupdate: true, | 33 subscriptions_autoupdate: true, |
34 subscriptions_exceptionsurl: "https://easylist-downloads.adblockplus.org/excep
tionrules.txt", | 34 subscriptions_exceptionsurl: "https://easylist-downloads.adblockplus.org/excep
tionrules.txt", |
35 documentation_link: "https://adblockplus.org/redirect?link=%LINK%&lang=%LANG%"
, | 35 documentation_link: "https://adblockplus.org/redirect?link=%LINK%&lang=%LANG%"
, |
36 update_url_release: "https://update.adblockplus.org/%NAME%/update.json?id=%ID%
&version=%VERSION%&app=%APP%&type=%TYPE%", | 36 update_url_release: "https://update.adblockplus.org/%NAME%/update.json?id=%ID%
&version=%VERSION%&app=%APP%&type=%TYPE%", |
37 update_url_devbuild: "https://adblockplus.org/devbuilds/%NAME%/update.json?id=
%ID%&version=%VERSION%&app=%APP%&type=%TYPE%", | 37 update_url_devbuild: "https://adblockplus.org/devbuilds/%NAME%/update.json?id=
%ID%&version=%VERSION%&app=%APP%&type=%TYPE%", |
38 next_update_check: 0 | 38 next_update_check: 0, |
| 39 statusbarasked: false |
39 }; | 40 }; |
40 | 41 |
41 let values = Object.create(defaults); | 42 let values = Object.create(defaults); |
42 let path = _fileSystem.resolve("prefs.json"); | 43 let path = _fileSystem.resolve("prefs.json"); |
43 let listeners = []; | 44 let listeners = []; |
44 let isDirty = false; | 45 let isDirty = false; |
45 let isSaving = false; | 46 let isSaving = false; |
46 | 47 |
47 function defineProperty(key) | 48 function defineProperty(key) |
48 { | 49 { |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 let index = listeners.indexOf(listener); | 119 let index = listeners.indexOf(listener); |
119 if (index >= 0) | 120 if (index >= 0) |
120 listeners.splice(index, 1); | 121 listeners.splice(index, 1); |
121 }, | 122 }, |
122 }; | 123 }; |
123 | 124 |
124 for (let key in defaults) | 125 for (let key in defaults) |
125 defineProperty(key); | 126 defineProperty(key); |
126 | 127 |
127 load(); | 128 load(); |
OLD | NEW |