Bump version to 4.2.1

This commit is contained in:
Jaifroid 2025-06-16 09:00:10 +01:00
parent eb3ed0aab3
commit d9f2804bdf
9 changed files with 10 additions and 10 deletions

View File

@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "__MSG_extensionName__",
"short_name": "Kiwix JS",
"version": "4.2.0",
"version": "4.2.1",
"description": "__MSG_extensionDescription__",

View File

@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "__MSG_extensionName__",
"short_name": "Kiwix JS",
"version": "4.2.0",
"version": "4.2.1",
"description": "__MSG_extensionDescription__",

View File

@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"version": "4.2.0",
"version": "4.2.1",
"description": "__MSG_extensionDescription__",

View File

@ -1,5 +1,5 @@
{
"version": "4.2.0",
"version": "4.2.1",
"name": "Kiwix",
"description": "Offline Wikipedia Viewer, and more",
"launch_path": "/www/index.html",

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "kiwix-js",
"version": "4.2.0",
"version": "4.2.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "kiwix-js",
"version": "4.2.0",
"version": "4.2.1",
"dependencies": {
"@fortawesome/fontawesome-free": "5.9.0",
"@types/fs-extra": "^9.0.11",

View File

@ -1,7 +1,7 @@
{
"name": "kiwix-js",
"productName": "Kiwix JS",
"version": "4.2.0",
"version": "4.2.1",
"description": "Kiwix is an offline reader for content from Wikipedia, TED Talks, Stackexchange, and many other sources.",
"type": "module",
"scripts": {

View File

@ -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.2.0';
const appVersion = '4.2.1';
/**
* The name of the Cache API cache in which assets defined in regexpCachedContentTypes will be stored

View File

@ -4,7 +4,7 @@
"architecture": "all",
"maintainer": "Kiwix team <contact+ubuntutouch@kiwix.org>",
"framework": "ubuntu-sdk-20.04",
"version": "4.2.0",
"version": "4.2.1",
"title": "Kiwix",
"hooks": {
"kiwix": {

View File

@ -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.2.0'; // **IMPORTANT** Ensure this is the same as the version number in service-worker.js
params['appVersion'] = '4.2.1'; // **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