Skip to content

Commit

Permalink
Increment Version Numbers
Browse files Browse the repository at this point in the history
Just drop support for pre-Gecko 1.9 browsers; Gecko 2.0 introduced optional unpacking.
  • Loading branch information
RealityRipple committed Sep 21, 2020
1 parent f8174a1 commit 127b94c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,11 @@ Export your extensions!

#### Supports
* Pale Moon [25.0a1pre - 28.*]
* Firefox [2.0 - 50.*]
* Firefox [3.0 - 50.*]
* SeaMonkey [2.0a1 - 2.40]
* Thunderbird [2.0 - 50.*]
* Sunbird [1.0b1 - 5.0b2pre]

###### Note that this extension makes use of [nsIZipWriter.idl](//developer.mozilla.org/en-US/docs/Mozilla/Tech/XPCOM/Reference/Interface/nsIZipWriter), which requires Gecko 1.9 (Firefox 3) or newer. Software using older Gecko versions may fail to export unpacked extensions.

## Building
Simply download the contents of the repository and pack the contents (sans git data) into a .zip file. Then, rename the file to .xpi and drag into the browser.

Expand Down
2 changes: 1 addition & 1 deletion chrome/content/binding.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
var profPath = Components.classes['@mozilla.org/file/directory_service;1'].getService(Components.interfaces.nsIProperties).get('ProfD', Components.interfaces.nsIFile).path;
var extFile = Components.classes['@mozilla.org/file/local;1'].createInstance(Components.interfaces.nsILocalFile);
extFile.initWithPath(profPath);
extFile.appendRelativePath('extensions");
extFile.appendRelativePath('extensions');
extFile.appendRelativePath(extID + '.xpi');
if (extFile.exists())
return extFile.path;
Expand Down
4 changes: 2 additions & 2 deletions install.rdf
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<Description about="urn:mozilla:install-manifest">
<em:name>ExtExp</em:name>
<em:id>{A1B40EBE-CFA1-5353-8C69-9B76E30B8788}</em:id>
<em:version>1.7</em:version>
<em:version>2.0</em:version>
<em:type>2</em:type>
<!-- Firefox -->
<em:targetApplication>
<Description>
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
<em:minVersion>2.0</em:minVersion>
<em:minVersion>3.0</em:minVersion>
<em:maxVersion>50.*</em:maxVersion>
</Description>
</em:targetApplication>
Expand Down

0 comments on commit 127b94c

Please sign in to comment.