mirror of
https://github.com/kiwix/kiwix-js.git
synced 2025-09-11 08:09:13 -04:00
Source code for v4.0.1
This commit is contained in:
parent
b167feb129
commit
d9d0ec177a
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"manifest_version": 3,
|
"manifest_version": 3,
|
||||||
"name": "Kiwix",
|
"name": "Kiwix",
|
||||||
"version": "4.0.0",
|
"version": "4.0.1",
|
||||||
|
|
||||||
"description": "Kiwix is an offline reader for content from Wikipedia, TED Talks, Stackexchange, and many other sources.",
|
"description": "Kiwix is an offline reader for content from Wikipedia, TED Talks, Stackexchange, and many other sources.",
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"manifest_version": 3,
|
"manifest_version": 3,
|
||||||
"name": "Kiwix JS Browser Extension",
|
"name": "Kiwix JS Browser Extension",
|
||||||
"short_name": "Kiwix JS",
|
"short_name": "Kiwix JS",
|
||||||
"version": "4.0.0",
|
"version": "4.0.1",
|
||||||
|
|
||||||
"description": "Kiwix is an offline reader for content from Wikipedia, TED Talks, Stackexchange, and many other sources.",
|
"description": "Kiwix is an offline reader for content from Wikipedia, TED Talks, Stackexchange, and many other sources.",
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"name": "Kiwix",
|
"name": "Kiwix",
|
||||||
"version": "4.0.0",
|
"version": "4.0.1",
|
||||||
|
|
||||||
"description": "Kiwix is an offline reader for content from Wikipedia, TED Talks, Stackexchange, and many other sources.",
|
"description": "Kiwix is an offline reader for content from Wikipedia, TED Talks, Stackexchange, and many other sources.",
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "4.0.0",
|
"version": "4.0.1",
|
||||||
"name": "Kiwix",
|
"name": "Kiwix",
|
||||||
"description": "Offline Wikipedia Viewer, and more",
|
"description": "Offline Wikipedia Viewer, and more",
|
||||||
"launch_path": "/www/index.html",
|
"launch_path": "/www/index.html",
|
||||||
|
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "kiwix-js",
|
"name": "kiwix-js",
|
||||||
"version": "4.0.0",
|
"version": "4.0.1",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "kiwix-js",
|
"name": "kiwix-js",
|
||||||
"version": "4.0.0",
|
"version": "4.0.1",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fortawesome/fontawesome-free": "5.9.0",
|
"@fortawesome/fontawesome-free": "5.9.0",
|
||||||
"@types/fs-extra": "^9.0.11",
|
"@types/fs-extra": "^9.0.11",
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "kiwix-js",
|
"name": "kiwix-js",
|
||||||
"productName": "Kiwix JS",
|
"productName": "Kiwix JS",
|
||||||
"version": "4.0.0",
|
"version": "4.0.1",
|
||||||
"description": "Kiwix is an offline reader for content from Wikipedia, TED Talks, Stackexchange, and many other sources.",
|
"description": "Kiwix is an offline reader for content from Wikipedia, TED Talks, Stackexchange, and many other sources.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -33,7 +33,7 @@
|
|||||||
* download and install a new copy; we have to hard code this here because it is needed before any other file
|
* download and install a new copy; we have to hard code this here because it is needed before any other file
|
||||||
* is cached in APP_CACHE
|
* is cached in APP_CACHE
|
||||||
*/
|
*/
|
||||||
const appVersion = '4.0.0';
|
const appVersion = '4.0.1';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the Cache API cache in which assets defined in regexpCachedContentTypes will be stored
|
* The name of the Cache API cache in which assets defined in regexpCachedContentTypes will be stored
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
"architecture": "all",
|
"architecture": "all",
|
||||||
"maintainer": "Kiwix team <contact+ubuntutouch@kiwix.org>",
|
"maintainer": "Kiwix team <contact+ubuntutouch@kiwix.org>",
|
||||||
"framework": "ubuntu-sdk-16.04",
|
"framework": "ubuntu-sdk-16.04",
|
||||||
"version": "4.0.0",
|
"version": "4.0.1",
|
||||||
"title": "Kiwix",
|
"title": "Kiwix",
|
||||||
"hooks": {
|
"hooks": {
|
||||||
"kiwix": {
|
"kiwix": {
|
||||||
|
@ -79,7 +79,7 @@ var params = {};
|
|||||||
* WARNING: Only change these parameters if you know what you are doing
|
* WARNING: Only change these parameters if you know what you are doing
|
||||||
*/
|
*/
|
||||||
// The current version number of this app
|
// The current version number of this app
|
||||||
params['appVersion'] = '4.0.0'; // **IMPORTANT** Ensure this is the same as the version number in service-worker.js
|
params['appVersion'] = '4.0.1'; // **IMPORTANT** Ensure this is the same as the version number in service-worker.js
|
||||||
// The PWA server (for use with the browser extensions in ServiceWorker mode)
|
// The PWA server (for use with the browser extensions in ServiceWorker mode)
|
||||||
params['PWAServer'] = 'https://browser-extension.kiwix.org/current/'; // Include final slash!
|
params['PWAServer'] = 'https://browser-extension.kiwix.org/current/'; // Include final slash!
|
||||||
// params['PWAServer'] = 'https://kiwix.github.io/kiwix-js/'; // DEV: Uncomment this line for testing code on GitHub Pages
|
// params['PWAServer'] = 'https://kiwix.github.io/kiwix-js/'; // DEV: Uncomment this line for testing code on GitHub Pages
|
||||||
|
Loading…
x
Reference in New Issue
Block a user