From 043065d56fce550fdbeb5152fb188dff84397cf9 Mon Sep 17 00:00:00 2001 From: Jaifroid Date: Sat, 14 Jun 2025 18:13:46 +0100 Subject: [PATCH] Bump app to v4.2.0 --- manifest.fx.v3.json | 2 +- manifest.json | 2 +- manifest.v2.json | 2 +- manifest.webapp | 2 +- service-worker.js | 2 +- ubuntu_touch/manifest.json | 2 +- www/js/init.js | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/manifest.fx.v3.json b/manifest.fx.v3.json index 1afecf80..dfb7b202 100644 --- a/manifest.fx.v3.json +++ b/manifest.fx.v3.json @@ -1,7 +1,7 @@ { "manifest_version": 3, "name": "__MSG_extensionName__", - "version": "4.1.2", + "version": "4.2.0", "description": "__MSG_extensionDescription__", diff --git a/manifest.json b/manifest.json index 28a369a2..bf9fa4f7 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "__MSG_extensionName__", "short_name": "Kiwix JS", - "version": "4.1.2", + "version": "4.2.0", "description": "__MSG_extensionDescription__", diff --git a/manifest.v2.json b/manifest.v2.json index 4a543a37..fdcafe77 100644 --- a/manifest.v2.json +++ b/manifest.v2.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "__MSG_extensionName__", - "version": "4.1.2", + "version": "4.2.0", "description": "__MSG_extensionDescription__", diff --git a/manifest.webapp b/manifest.webapp index cb76d946..464140be 100644 --- a/manifest.webapp +++ b/manifest.webapp @@ -1,5 +1,5 @@ { - "version": "4.1.2", + "version": "4.2.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 c0ddb2bc..839d0810 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 = '4.1.2'; +const appVersion = '4.2.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 a3b32a3a..d170072c 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": "4.1.2", + "version": "4.2.0", "title": "Kiwix", "hooks": { "kiwix": { diff --git a/www/js/init.js b/www/js/init.js index cd620d25..c8a2d671 100644 --- a/www/js/init.js +++ b/www/js/init.js @@ -82,7 +82,7 @@ var params = {}; * WARNING: Only change these parameters if you know what you are doing */ // The current version number of this app -params['appVersion'] = '4.1.2'; // **IMPORTANT** Ensure this is the same as the version number in service-worker.js +params['appVersion'] = '4.2.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