diff options
author | Jonathan McCrohan <jmccrohan@gmail.com> | 2011-12-20 11:33:12 +0000 |
---|---|---|
committer | Jonathan McCrohan <jmccrohan@gmail.com> | 2011-12-20 11:33:12 +0000 |
commit | 418e6ab9be9945ad0865a5d5760296bfb4e7dc71 (patch) | |
tree | 9090605a194217bb141e35e3f2521e98394cd8a2 | |
parent | e8cdf971c0225b75ea938b6f2fbfc2df87f0e353 (diff) | |
download | Multiproxy-Switch-418e6ab9be9945ad0865a5d5760296bfb4e7dc71.tar.gz |
Add support for Firefox 9.0.v1.39
Diffstat (limited to '')
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | src/chrome/content/globals.js | 2 | ||||
-rw-r--r-- | src/install.rdf | 6 |
3 files changed, 6 insertions, 6 deletions
@@ -12,11 +12,11 @@ Change the .zip file to .xpi, and add manually to Firefox Requirements: ---------------------- -Firefox 2.* - 8.* +Firefox 2.* - 9.* or -Thunderbird 1.* - 8.* +Thunderbird 1.* - 9.* TODO: ---------------------- diff --git a/src/chrome/content/globals.js b/src/chrome/content/globals.js index ee82427..1e9ffca 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.38.1";
+const gmproxy_Version = "1.39";
const gmproxy_DownloadSite = "https://github.com/jmccrohan/Multiproxy-Switch";
var gSProxyStrBundle = null;
diff --git a/src/install.rdf b/src/install.rdf index 99d21c2..23de151 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.38.1</em:version> + <em:version>1.39</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>8.*</em:maxVersion> + <em:maxVersion>9.*</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>8.*</em:maxVersion> + <em:maxVersion>9.*</em:maxVersion> </Description> </em:targetApplication> </Description> |