diff options
author | Jonathan McCrohan <jmccrohan@gmail.com> | 2011-09-26 22:54:17 +0100 |
---|---|---|
committer | Jonathan McCrohan <jmccrohan@gmail.com> | 2011-09-26 22:54:17 +0100 |
commit | 9d53da155722f532a1178921bd487f0ddb2729f2 (patch) | |
tree | f7aa1985f095248c81a44531c0ef44d09f6bcc36 | |
parent | 2b8ee39502171d67c39813343353f582a00f5bd0 (diff) | |
download | Multiproxy-Switch-9d53da155722f532a1178921bd487f0ddb2729f2.tar.gz |
Add support for Firefox 7.0v1.37
-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,9 +12,11 @@ Change the .zip file to .xpi, and add manually to Firefox Requirements: ---------------------- -Firefox 2.* - 6.* +Firefox 2.* - 7.* + or -Thunderbird 1.* - 6.* + +Thunderbird 1.* - 7.* TODO: ---------------------- diff --git a/src/chrome/content/globals.js b/src/chrome/content/globals.js index 6fd3db5..f447c86 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.36";
+const gmproxy_Version = "1.37";
const gmproxy_DownloadSite = "https://github.com/jmccrohan/Multiproxy-Switch";
var gSProxyStrBundle = null;
diff --git a/src/install.rdf b/src/install.rdf index e578292..b0ee4c9 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.36</em:version> + <em:version>1.37</em:version> <em:description>MPS lets you switch local proxies in Firefox and Thunderbird, and do more.</em:description> <em:creator>McFred</em:creator> <em:contributor>Jeremy Gillick (http://www.mozmonkey.com)</em:contributor> @@ -18,7 +18,7 @@ <Description> <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id> <em:minVersion>1.5</em:minVersion> - <em:maxVersion>6.*</em:maxVersion> + <em:maxVersion>7.*</em:maxVersion> </Description> </em:targetApplication> <!-- Thunderbird --> @@ -26,7 +26,7 @@ <Description> <em:id>{3550f703-e582-4d05-9a08-453d09bdfdc6}</em:id> <em:minVersion>1.0</em:minVersion> - <em:maxVersion>6.*</em:maxVersion> + <em:maxVersion>7.*</em:maxVersion> </Description> </em:targetApplication> <em:localized> |