diff --git a/manifest.json b/manifest.json index 59c462bde..0417d81b5 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 3, "name": "Kiwix", - "version": "3.10.2", + "version": "3.11.0", "description": "Kiwix Offline Browser", diff --git a/manifest.v2.json b/manifest.v2.json index d055f5b06..09d87b56d 100644 --- a/manifest.v2.json +++ b/manifest.v2.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Kiwix", - "version": "3.10.2", + "version": "3.11.0", "description": "Kiwix : offline Wikipedia reader", diff --git a/manifest.webapp b/manifest.webapp index 06d07d028..313fe9fad 100644 --- a/manifest.webapp +++ b/manifest.webapp @@ -1,5 +1,5 @@ { - "version": "3.10.2", + "version": "3.11.0", "name": "Kiwix", "description": "Offline Wikipedia Viewer, and more", "launch_path": "/www/index.html", diff --git a/package-lock.json b/package-lock.json index 6357324cb..5d0d7372c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,10 +1,12 @@ { "name": "kiwix-js", + "version": "3.11.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "kiwix-js", + "version": "3.11.0", "dependencies": { "@fortawesome/fontawesome-free": "5.9.0", "@types/fs-extra": "^9.0.11", diff --git a/package.json b/package.json index f63dbeb66..1b15ace93 100644 --- a/package.json +++ b/package.json @@ -1,4 +1,8 @@ { + "name": "kiwix-js", + "productName": "Kiwix JS", + "version": "3.11.0", + "description": "Kiwix JS offline ZIM archive reader", "type": "module", "scripts": { "serve": "vite", diff --git a/service-worker.js b/service-worker.js index 416a7c6e2..1250e2753 100644 --- a/service-worker.js +++ b/service-worker.js @@ -31,7 +31,7 @@ * 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 */ -const appVersion = '3.10.2'; +const appVersion = '3.11.0'; /** * The name of the Cache API cache in which assets defined in regexpCachedContentTypes will be stored diff --git a/ubuntu_touch/manifest.json b/ubuntu_touch/manifest.json index 43e51ab6c..61f2f30e9 100644 --- a/ubuntu_touch/manifest.json +++ b/ubuntu_touch/manifest.json @@ -4,7 +4,7 @@ "architecture": "all", "maintainer": "Kiwix team ", "framework": "ubuntu-sdk-16.04", - "version": "3.10.2", + "version": "3.11.0", "title": "Kiwix", "hooks": { "kiwix": { diff --git a/www/js/init.js b/www/js/init.js index d670f89c7..4cb38a346 100644 --- a/www/js/init.js +++ b/www/js/init.js @@ -77,7 +77,7 @@ var params = {}; * WARNING: Only change these parameters if you know what you are doing */ // The current version number of this app -params['appVersion'] = '3.10.2'; // **IMPORTANT** Ensure this is the same as the version number in service-worker.js +params['appVersion'] = '3.11.0'; // **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) 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