diff --git a/manifest.json b/manifest.json index 66ecdb4f..15f4439d 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 3, "name": "Kiwix", - "version": "3.9.3", + "version": "3.10.0", "description": "Kiwix Offline Browser", diff --git a/manifest.v2.json b/manifest.v2.json index 2ba32f72..6f91e3d4 100644 --- a/manifest.v2.json +++ b/manifest.v2.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Kiwix", - "version": "3.9.3", + "version": "3.10.0", "description": "Kiwix : offline Wikipedia reader", diff --git a/manifest.webapp b/manifest.webapp index 0108a92e..4d6d6353 100644 --- a/manifest.webapp +++ b/manifest.webapp @@ -1,5 +1,5 @@ { - "version": "3.9.3", + "version": "3.10.0", "name": "Kiwix", "description": "Offline Wikipedia Viewer, and more", "launch_path": "/www/index.html", diff --git a/service-worker.js b/service-worker.js index 96c8b4ba..71342c9a 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.9.3'; +const appVersion = '3.10.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 ff460285..df327fd3 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.9.3", + "version": "3.10.0", "title": "Kiwix", "hooks": { "kiwix": { diff --git a/www/js/init.js b/www/js/init.js index db870189..a2c4f125 100644 --- a/www/js/init.js +++ b/www/js/init.js @@ -39,7 +39,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.9.3'; // **IMPORTANT** Ensure this is the same as the version number in service-worker.js +params['appVersion'] = '3.10.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