mirror of
https://github.com/kiwix/kiwix-js-pwa.git
synced 2025-09-10 04:40:27 -04:00
Bump app version to 2.2.0
Former-commit-id: 80040db804e986130ffaf606b19e7366d256c2c8
This commit is contained in:
parent
81f72e1750
commit
c764e73e0a
@ -1,6 +1,6 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## In progress release 2.2.0
|
## Release 2.2.0
|
||||||
|
|
||||||
* UPDATE: Sample archive updated to `wikipedia_en_climate_change_mini_2022-10.zim`
|
* UPDATE: Sample archive updated to `wikipedia_en_climate_change_mini_2022-10.zim`
|
||||||
* ENHANCEMENT: Display media download alert only when the medium is fetched from the ZIM
|
* ENHANCEMENT: Display media download alert only when the medium is fetched from the ZIM
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "kiwix-js-electron",
|
"name": "kiwix-js-electron",
|
||||||
"productName": "Kiwix JS Electron",
|
"productName": "Kiwix JS Electron",
|
||||||
"version": "2.1.91-E",
|
"version": "2.2.0-E",
|
||||||
"description": "Kiwix JS packaged for the Electron framework",
|
"description": "Kiwix JS packaged for the Electron framework",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"build": {
|
"build": {
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "kiwix_js_windows",
|
"name": "kiwix_js_windows",
|
||||||
"productName": "Kiwix JS Windows",
|
"productName": "Kiwix JS Windows",
|
||||||
"version": "2.1.91-N",
|
"version": "2.2.0-N",
|
||||||
"description": "Kiwix JS Windows for NWJS",
|
"description": "Kiwix JS Windows for NWJS",
|
||||||
"main": "index.html",
|
"main": "index.html",
|
||||||
"domain": "kiwix.js.windows",
|
"domain": "kiwix.js.windows",
|
||||||
|
@ -9,9 +9,9 @@ if (-Not $only32bit) {
|
|||||||
} else {
|
} else {
|
||||||
"Caller requested only32bit build"
|
"Caller requested only32bit build"
|
||||||
}
|
}
|
||||||
$version10 = "0.68.1" # <<< value updated automatically from package.json if launched from Create-DraftRelease
|
$version10 = "0.70.0" # <<< value updated automatically from package.json if launched from Create-DraftRelease
|
||||||
$versionXP = "0.14.7"
|
$versionXP = "0.14.7"
|
||||||
$appBuild = "2.1.91-N" # <<< value updated auotmatically from package.json if launched from Create-DraftRelease
|
$appBuild = "2.2.0-N" # <<< value updated auotmatically from package.json if launched from Create-DraftRelease
|
||||||
# $ZIMbase = "wikipedia_en_100"
|
# $ZIMbase = "wikipedia_en_100"
|
||||||
# Check that the dev has included the correct archive in this branch
|
# Check that the dev has included the correct archive in this branch
|
||||||
$init_params = Get-Content -Raw "$PSScriptRoot\..\www\js\init.js"
|
$init_params = Get-Content -Raw "$PSScriptRoot\..\www\js\init.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
|
* 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
|
* is cached in APP_CACHE
|
||||||
*/
|
*/
|
||||||
const appVersion = '2.1.91';
|
const appVersion = '2.2.0';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the Cache API cache in which assets defined in regexpCachedContentTypes will be stored
|
* The name of the Cache API cache in which assets defined in regexpCachedContentTypes will be stored
|
||||||
|
@ -50,7 +50,7 @@ var params = {};
|
|||||||
*/
|
*/
|
||||||
var appstate = {};
|
var appstate = {};
|
||||||
/******** UPDATE VERSION IN service-worker.js TO MATCH VERSION AND CHECK PWASERVER BELOW!!!!!!! *******/
|
/******** UPDATE VERSION IN service-worker.js TO MATCH VERSION AND CHECK PWASERVER BELOW!!!!!!! *******/
|
||||||
params['appVersion'] = "2.1.91"; //DEV: Manually update this version when there is a new release: it is compared to the Settings Store "appVersion" in order to show first-time info, and the cookie is updated in app.js
|
params['appVersion'] = "2.2.0"; //DEV: Manually update this version when there is a new release: it is compared to the Settings Store "appVersion" in order to show first-time info, and the cookie is updated in app.js
|
||||||
/******* UPDATE THIS ^^^^^^ IN service worker AND PWA-SERVER BELOW !! ********************/
|
/******* UPDATE THIS ^^^^^^ IN service worker AND PWA-SERVER BELOW !! ********************/
|
||||||
params['packagedFile'] = getSetting('packagedFile') || "wikipedia_en_climate_change_mini_2022-10.zim"; //For packaged Kiwix JS (e.g. with Wikivoyage file), set this to the filename (for split files, give the first chunk *.zimaa) and place file(s) in default storage
|
params['packagedFile'] = getSetting('packagedFile') || "wikipedia_en_climate_change_mini_2022-10.zim"; //For packaged Kiwix JS (e.g. with Wikivoyage file), set this to the filename (for split files, give the first chunk *.zimaa) and place file(s) in default storage
|
||||||
params['archivePath'] = "archives"; //The directory containing the packaged archive(s) (relative to app's root directory)
|
params['archivePath'] = "archives"; //The directory containing the packaged archive(s) (relative to app's root directory)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user