| Index: adblockplus/issue-7415.patch |
| =================================================================== |
| new file mode 100644 |
| --- /dev/null |
| +++ b/adblockplus/issue-7415.patch |
| @@ -0,0 +1,41 @@ |
| +Issue 7415 - ABP data is not being migrated |
| + |
| +diff --git a/lib/io.js b/lib/io.js |
| +--- a/lib/io.js |
| ++++ b/lib/io.js |
| +@@ -243,17 +243,17 @@ |
| + */ |
| + statFile(fileName) |
| + { |
| + return callWebExt("statFile", fileName); |
| + } |
| + }; |
| + |
| + let {application} = require("info"); |
| +-if (application != "firefox" && application != "fennec2") |
| ++if (application != "firefox" && application != "fennec2" && application != "adblockbrowser") |
| + { |
| + // Currently, only Firefox has a working WebExtensions implementation, other |
| + // applications should just use the fallback. |
| + exports.IO = fallback; |
| + } |
| + else |
| + { |
| + // Add fallbacks to IO methods - fall back to legacy I/O if file wasn't found. |
| +diff --git a/metadata.gecko b/metadata.gecko |
| +--- a/metadata.gecko |
| ++++ b/metadata.gecko |
| +@@ -1,12 +1,12 @@ |
| + [general] |
| + id={d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d} |
| + basename=adblockplus |
| +-version=2.9.1 |
| ++version=2.9.2 |
| + author=Wladimir Palant |
| + options=chrome://adblockplus/content/ui/settings.xul |
| + optionsType=2 |
| + |
| + [contributors] |
| + 1=Claude Lespagnol aka Efdur |
| + 2=Nickolay Ponomarev |
| + 3=Kevin Keller |