-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 71807b9
Showing
8 changed files
with
494 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
*.xpi | ||
*.exe |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
**GitHub Web Components Polyfill** provides a Web Components Polyfill for GitHub using [Web Components Polyfills](https://github.com/webcomponents/polyfills). |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:em="http://www.mozilla.org/2004/em-rdf#"> | ||
<Description about="urn:mozilla:install-manifest"> | ||
<em:id>[email protected]</em:id> | ||
<em:version>1.0.1</em:version> | ||
<em:type>2</em:type> | ||
<em:bootstrap>true</em:bootstrap> | ||
<em:name>GitHub Web Components Polyfill</em:name> | ||
<em:description>Provides Web Components Polyfill for GitHub</em:description> | ||
<em:creator>Off JustOff <[email protected]></em:creator> | ||
<em:contributor>The Polymer Authors https://github.com/webcomponents/polyfills</em:contributor> | ||
<em:homepageURL>https://github.com/JustOff/github-wc-polyfill/</em:homepageURL> | ||
<em:updateURL>https://raw.githubusercontent.com/JustOff/github-wc-polyfill/master/update.xml</em:updateURL> | ||
<em:targetApplication> | ||
<Description> | ||
<em:id>{8de7fcbb-c55c-4fbe-bfc5-fc555c87dbc4}</em:id> | ||
<em:minVersion>28.14.0</em:minVersion> | ||
<em:maxVersion>29.*</em:maxVersion> | ||
</Description> | ||
</em:targetApplication> | ||
</Description> | ||
</RDF> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
@echo off | ||
set VER=1.0.1 | ||
|
||
sed -i -E "s/version>.+?</version>%VER%</" install.rdf | ||
sed -i -E "s/version>.+?</version>%VER%</; s/download\/.+?\/github-wc-polyfill-.+?\.xpi/download\/%VER%\/github-wc-polyfill-%VER%\.xpi/" update.xml | ||
|
||
set XPI=github-wc-polyfill-%VER%.xpi | ||
if exist %XPI% del %XPI% | ||
zip -r9q %XPI% bootstrap.js icon.png install.rdf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<RDF:RDF xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:em="http://www.mozilla.org/2004/em-rdf#"> | ||
<RDF:Description about="urn:mozilla:extension:[email protected]"> | ||
<em:updates> | ||
<RDF:Seq> | ||
<RDF:li> | ||
<RDF:Description> | ||
<em:version>1.0.1</em:version> | ||
<em:targetApplication> | ||
<RDF:Description> | ||
<em:id>{8de7fcbb-c55c-4fbe-bfc5-fc555c87dbc4}</em:id> | ||
<em:minVersion>28.14.0</em:minVersion> | ||
<em:maxVersion>29.*</em:maxVersion> | ||
<em:updateLink>https://github.com/JustOff/github-wc-polyfill/releases/download/1.0.1/github-wc-polyfill-1.0.1.xpi</em:updateLink> | ||
</RDF:Description> | ||
</em:targetApplication> | ||
</RDF:Description> | ||
</RDF:li> | ||
</RDF:Seq> | ||
</em:updates> | ||
</RDF:Description> | ||
</RDF:RDF> |