diff options
author | Jonathan McCrohan <jmccrohan@gmail.com> | 2012-05-11 01:26:04 +0100 |
---|---|---|
committer | Jonathan McCrohan <jmccrohan@gmail.com> | 2012-05-11 01:26:04 +0100 |
commit | dfbf8279a3bb742fc8e43d9050dad4206972ba20 (patch) | |
tree | 5a5d9b2ccb6674569661161b31964dd7f9803302 | |
parent | e5769bc2e3ae6377fc5c8f19adb876c064463766 (diff) | |
download | Multiproxy-Switch-dfbf8279a3bb742fc8e43d9050dad4206972ba20.tar.gz |
Bump version support to Firefox 12v1.40
-rw-r--r-- | README.md | 6 | ||||
-rw-r--r-- | src/chrome/content/globals.js | 2 | ||||
-rw-r--r-- | src/install.rdf | 6 |
3 files changed, 8 insertions, 6 deletions
@@ -12,11 +12,13 @@ Change the .zip file to .xpi, and add manually to Firefox Requirements: ---------------------- -Firefox 2.* - 9.* +Firefox 2.* - 12+ or -Thunderbird 1.* - 9.* +Thunderbird 1.* - 12+ + +Firefox/Thunderbird 10+ mark add-ons as compatible by default. TODO: ---------------------- diff --git a/src/chrome/content/globals.js b/src/chrome/content/globals.js index 1e9ffca..3591c88 100644 --- a/src/chrome/content/globals.js +++ b/src/chrome/content/globals.js @@ -6,7 +6,7 @@ const gSProxyRdfNodeId = gSProxyRdfNodeUriRoot+ "#id"; const gSProxyRdfNodeName = gSProxyRdfNodeUriRoot+ "#name";
const gSProxyRdfNodeProxy = gSProxyRdfNodeUriRoot+ "#proxy";
-const gmproxy_Version = "1.39";
+const mproxy_Version = "1.40";
const gmproxy_DownloadSite = "https://github.com/jmccrohan/Multiproxy-Switch";
var gSProxyStrBundle = null;
diff --git a/src/install.rdf b/src/install.rdf index 23de151..a6dcc72 100644 --- a/src/install.rdf +++ b/src/install.rdf @@ -5,7 +5,7 @@ <em:id>{BB080420-8088-F650-3D47-13799CCD6159}</em:id> <em:name>Multiproxy Switch</em:name> - <em:version>1.39</em:version> + <em:version>1.40</em:version> <em:description>MPS lets you switch local proxies in Firefox and Thunderbird, and do more.</em:description> <em:creator>jmccrohan</em:creator> <em:contributor>Jeremy Gillick (http://www.mozmonkey.com)</em:contributor> @@ -19,7 +19,7 @@ <Description> <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id> <em:minVersion>1.5</em:minVersion> - <em:maxVersion>9.*</em:maxVersion> + <em:maxVersion>12.*</em:maxVersion> </Description> </em:targetApplication> <!-- Thunderbird --> @@ -27,7 +27,7 @@ <Description> <em:id>{3550f703-e582-4d05-9a08-453d09bdfdc6}</em:id> <em:minVersion>1.0</em:minVersion> - <em:maxVersion>9.*</em:maxVersion> + <em:maxVersion>12.*</em:maxVersion> </Description> </em:targetApplication> </Description> |