Skip to content

Commit 8f62af4

Browse files
committed
Bump app version
1 parent cdfd42c commit 8f62af4

8 files changed

+9
-9
lines changed

package-github.appxmanifest

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3" xmlns:uap5="http://schemas.microsoft.com/appx/manifest/uap/windows10/5" IgnorableNamespaces="uap mp uap3 uap5">
3-
<Identity Name="Kiwix.KiwixJS" Version="3.4.6.0" Publisher="CN=Association Kiwix, O=Association Kiwix, L=Lausanne, S=Canton of Vaud, C=CH" />
3+
<Identity Name="Kiwix.KiwixJS" Version="3.4.7.0" Publisher="CN=Association Kiwix, O=Association Kiwix, L=Lausanne, S=Canton of Vaud, C=CH" />
44
<mp:PhoneIdentity PhoneProductId="9983be8d-4e36-4018-bfb3-5170659bf447" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
55
<Properties>
66
<DisplayName>Kiwix JS</DisplayName>

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.appxmanifest

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3" xmlns:uap5="http://schemas.microsoft.com/appx/manifest/uap/windows10/5" IgnorableNamespaces="uap mp uap3 uap5">
3-
<Identity Name="Kiwix.KiwixJS" Version="3.4.6.0" Publisher="CN=0A5438F5-EEA6-4300-9B77-E45BBD148885" />
3+
<Identity Name="Kiwix.KiwixJS" Version="3.4.7.0" Publisher="CN=0A5438F5-EEA6-4300-9B77-E45BBD148885" />
44
<mp:PhoneIdentity PhoneProductId="9983be8d-4e36-4018-bfb3-5170659bf447" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
55
<Properties>
66
<DisplayName>Kiwix JS</DisplayName>

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "kiwix-js-electron",
33
"productName": "Kiwix JS Electron",
4-
"version": "3.4.6-E",
4+
"version": "3.4.7-E",
55
"description": "Kiwix JS offline ZIM archive reader packaged for the Electron framework",
66
"main": "main.cjs",
77
"type": "module",

package.json.nwjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "kiwix_js_windows",
33
"productName": "Kiwix JS Windows",
4-
"version": "3.4.6-N",
4+
"version": "3.4.7-N",
55
"description": "Kiwix JS Windows for NWJS",
66
"main": "index.html",
77
"domain": "kiwix.js.windows",

scripts/Build-NWJS.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if (-Not $only32bit) {
1212
}
1313
$version10 = "0.87.0" # <<< value updated automatically from package.json if launched from Create-DraftRelease
1414
$versionXP = "0.14.7"
15-
$appBuild = "3.4.6-N" # <<< value updated auotmatically from package.json if launched from Create-DraftRelease
15+
$appBuild = "3.4.7-N" # <<< value updated auotmatically from package.json if launched from Create-DraftRelease
1616
# Check that the dev has included the correct archive in this branch
1717
$init_params = Get-Content -Raw "$PSScriptRoot\..\dist\www\js\init.js"
1818
$PackagedArchive = $init_params -imatch 'params\[.packagedFile.][^;]+?[''"]([^\s]+?\.zim)[''"];'

service-worker.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* download and install a new copy; we have to hard code this here because it is needed before any other file
3434
* is cached in APP_CACHE
3535
*/
36-
const appVersion = '3.4.6';
36+
const appVersion = '3.4.7';
3737

3838
/**
3939
* The name of the Cache API cache in which assets defined in regexpCachedContentTypes will be stored

www/js/init.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ var params = {};
6666
var appstate = {};
6767

6868
// ******** UPDATE VERSION IN service-worker.js TO MATCH VERSION AND CHECK PWASERVER BELOW!!!!!!! *******
69-
params['appVersion'] = '3.4.6'; // 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
69+
params['appVersion'] = '3.4.7'; // 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
7070
// ******* UPDATE THIS ^^^^^^ IN service worker AND PWA-SERVER BELOW !! ********************
7171
params['packagedFile'] = getSetting('packagedFile') || ''; // 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
7272
params['archivePath'] = 'archives'; // The directory containing the packaged archive(s) (relative to app's root directory)

0 commit comments

Comments
 (0)