diff --git a/CHANGELOG.md b/CHANGELOG.md index a45e1198..a89cd785 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## In-progress release 1.9.8 +* FEATURE: Experimental support for reading Zimit ZIM archives * BUILD: Nightly builds of main app are now uploaded to a new server (with sftp instead of ssh) * BUILD: Deploy PWA image on a k8s cluster * BUILD: PWA images are now uploaded to ghcr.io instead of Docker Hub diff --git a/package.json b/package.json index 3414f813..db6b6e6f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "kiwix-js-electron", "productName": "Kiwix JS Electron", - "version": "1.9.7-E", + "version": "1.9.8-E", "description": "Kiwix JS packaged for the Electron framework", "main": "main.js", "build": { @@ -106,3 +106,8 @@ } } + + + + + diff --git a/package.json.nwjs b/package.json.nwjs index 70be3294..5402f4b8 100644 --- a/package.json.nwjs +++ b/package.json.nwjs @@ -1,7 +1,7 @@ { "name": "kiwix_js_windows", "productName": "Kiwix JS Windows", - "version": "1.9.5-N", + "version": "1.9.8-N", "description": "Kiwix JS Windows for NWJS", "main": "index.html", "domain": "kiwix.js.windows", @@ -88,3 +88,8 @@ } } + + + + + diff --git a/scripts/Build-NWJS.ps1 b/scripts/Build-NWJS.ps1 index 1f7c6856..a9b4fa5e 100644 --- a/scripts/Build-NWJS.ps1 +++ b/scripts/Build-NWJS.ps1 @@ -11,7 +11,7 @@ if (-Not $only32bit) { } $version10 = "0.62.0" # <<< value updated automatically from package.json if launched from Create-DraftRelease $versionXP = "0.14.7" -$appBuild = "1.9.5-N" # <<< value updated auotmatically from package.json if launched from Create-DraftRelease +$appBuild = "1.9.8-N" # <<< value updated auotmatically from package.json if launched from Create-DraftRelease # $ZIMbase = "wikipedia_en_100" # Check that the dev has included the correct archive in this branch $init_params = Get-Content -Raw "$PSScriptRoot\..\www\js\init.js" @@ -102,3 +102,8 @@ foreach ($build in $builds) { } + + + + + diff --git a/service-worker.js b/service-worker.js index c00a44b2..a865560e 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 = '1.9.7'; +const appVersion = '1.9.8'; /** * The name of the Cache API cache in which assets defined in regexpCachedContentTypes will be stored diff --git a/www/index.html b/www/index.html index c717c80b..c41357f9 100644 --- a/www/index.html +++ b/www/index.html @@ -123,6 +123,7 @@

Changes in version 1.0