From b3f75c52d490ff3f4ac2bcac8dc54f7ab6b12bb2 Mon Sep 17 00:00:00 2001 From: Jaifroid Date: Mon, 9 Jan 2023 20:17:51 +0000 Subject: [PATCH] Bump app version to test updating --- manifest.json | 2 +- manifest.webapp | 2 +- service-worker.js | 2 +- ubuntu_touch/manifest.json | 2 +- www/js/app.js | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/manifest.json b/manifest.json index 89ee1d05..83c560e6 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Kiwix", - "version": "3.7.1", + "version": "3.7.2", "description": "Kiwix : offline Wikipedia reader", diff --git a/manifest.webapp b/manifest.webapp index 522cea20..0317876c 100644 --- a/manifest.webapp +++ b/manifest.webapp @@ -1,5 +1,5 @@ { - "version": "3.7.1", + "version": "3.7.2", "name": "Kiwix", "description": "Offline Wikipedia Viewer, and more", "launch_path": "/www/index.html", diff --git a/service-worker.js b/service-worker.js index 465cb6d5..749aad5a 100644 --- a/service-worker.js +++ b/service-worker.js @@ -29,7 +29,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.7.1'; +const appVersion = '3.7.2'; /** * 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 5aec3ddb..2fec52dd 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.7.1", + "version": "3.7.2", "title": "Kiwix", "hooks": { "kiwix": { diff --git a/www/js/app.js b/www/js/app.js index a444207c..e996e705 100644 --- a/www/js/app.js +++ b/www/js/app.js @@ -71,7 +71,7 @@ define(['jquery', 'zimArchiveLoader', 'uiUtil', 'settingsStore','abstractFilesys * WARNING: Only change these paramaeters if you know what you are doing */ // The current version number of this app - params['appVersion'] = '3.7.1'; // **IMPORTANT** Ensure this is the same as the version number in service-worker.js + params['appVersion'] = '3.7.2'; // **IMPORTANT** Ensure this is the same as the version number in service-worker.js // The PWA server (currently only for use with the Mozilla extension) params['PWAServer'] = 'https://moz-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