From 005d05419371f3737cf4970a003acd8ed4a6fd10 Mon Sep 17 00:00:00 2001 From: Jaifroid Date: Sat, 12 Nov 2022 11:22:35 +0000 Subject: [PATCH] Changelog and version for v3.6.0 (#911) --- CHANGELOG.md | 12 ++++++++++++ manifest.json | 2 +- service-worker.js | 2 +- www/js/app.js | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30652385c..66fec820f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ Please note that this application has changed its name over time. It was first called Evopedia (and was using the file format of Evopedia). Then it was renamed Kiwix-html5 (and uses ZIM files), and then again was renamed to Kiwix-JS. +## Kiwix-JS v3.6.0 + +Released on *2022-12-11* + +* FEATURE: ServiceWorker Mode is now the default, and compatible clients upgrade automatically to this mode +* FEATURE: On first run after update, the user is informed of the ServiceWorker Mode upgrade status (upgraded or incompatible) +* NEW: A warning (with suggestions) is provided if user opens an incompatible Zimit (warc2zim) archive type +* COMPATIBILITY: Minimum Firefox version has been raised to >=52, due to lack of full Extension APIs in earlier versions +* UPDATE: Detection of active content updated for compatibility with more no-namespace ZIM archives +* UPDATE: Nightly packages on the download server now include the date in their filenames +* FIX: Kiwix icon now has an outline so that it is visible against dark OS backgrounds + ## Kiwix-JS v3.5.0 Released on *2022-08-05* diff --git a/manifest.json b/manifest.json index dc8548b52..5e8de5165 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Kiwix", - "version": "3.6-WIP", + "version": "3.6", "description": "Kiwix : offline Wikipedia reader", diff --git a/service-worker.js b/service-worker.js index 3039f4e80..0e5c0e6e0 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.6-WIP'; +const appVersion = '3.6'; /** * The name of the Cache API cache in which assets defined in regexpCachedContentTypes will be stored diff --git a/www/js/app.js b/www/js/app.js index aa115a9bc..ca66ccca3 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.6-WIP'; // **IMPORTANT** Ensure this is the same as the version number in service-worker.js + params['appVersion'] = '3.6'; // **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