Skip to content

Commit

Permalink
Changelog and version for v3.6.0 (#911)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaifroid authored Nov 12, 2022
1 parent 56906d5 commit 005d054
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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*
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Kiwix",
"version": "3.6-WIP",
"version": "3.6",

"description": "Kiwix : offline Wikipedia reader",

Expand Down
2 changes: 1 addition & 1 deletion service-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion www/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 005d054

Please sign in to comment.