-
-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
8 changed files
with
42 additions
and
8 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,11 @@ | ||
{ | ||
"extensionName": { | ||
"message": "Kiwix JS Browser Extension", | ||
"description": "Name of the extension." | ||
}, | ||
|
||
"extensionDescription": { | ||
"message": "Kiwix is an offline reader for content from Wikipedia, TED Talks, Stackexchange, and many other sources.", | ||
"description": "Description of the extension." | ||
} | ||
} |
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,11 @@ | ||
{ | ||
"extensionName": { | ||
"message": "Extensión de navegador Kiwix JS", | ||
"description": "Nombre de la extensión." | ||
}, | ||
|
||
"extensionDescription": { | ||
"message": "Kiwix es un lector sin conexión para contenido de Wikipedia, TED Talks, Stackexchange y muchas otras fuentes.", | ||
"description": "Descripción de la extensión." | ||
} | ||
} |
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,11 @@ | ||
{ | ||
"extensionName": { | ||
"message": "Extension de navigateur Kiwix JS", | ||
"description": "Nom de l'extension." | ||
}, | ||
|
||
"extensionDescription": { | ||
"message": "Kiwix est un lecteur hors ligne pour le contenu de Wikipédia, TED Talks, Stackexchange et de nombreuses autres sources.", | ||
"description": "Déscription de l'extension." | ||
} | ||
} |
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
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
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
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
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 |
---|---|---|
|
@@ -27,7 +27,7 @@ fi | |
cd tmp | ||
if [ "${TAG}zz" == "zz" ]; then | ||
echo "Packaging unsigned Firefox extension, version $VERSION" | ||
zip -r ../build/kiwix-firefox-unsigned-extension-$VERSION.zip www i18n backgroundscript.js manifest.json LICENSE-GPLv3.txt service-worker.js README.md | ||
zip -r ../build/kiwix-firefox-unsigned-extension-$VERSION.zip www _locales i18n backgroundscript.js manifest.json LICENSE-GPLv3.txt service-worker.js README.md | ||
|
||
if [ "${DRYRUN}zz" == "zz" ]; then | ||
# Sign the extension with the Mozilla API through web-ext, if we're not packaging a public version | ||
|
@@ -73,6 +73,6 @@ else | |
sed -i -e "s/[email protected]/[email protected]/" manifest.json | ||
|
||
echo "Packaging unsigned 'listed' Firefox extension, version $VERSION" | ||
zip -r ../build/kiwix-firefox-unsigned-listed-extension-$VERSION.zip www i18n backgroundscript.js manifest.json LICENSE-GPLv3.txt service-worker.js README.md | ||
zip -r ../build/kiwix-firefox-unsigned-listed-extension-$VERSION.zip www _locales i18n backgroundscript.js manifest.json LICENSE-GPLv3.txt service-worker.js README.md | ||
echo "*** This unsigned extension must be manually uploaded to Mozilla to be signed and distributed from their store ***" | ||
fi |