Bump to 1.6.0

Former-commit-id: 38144fd4fef9dfea80474c31084fc050a6b48794 [formerly b363f272bf4dd71099a0a6dc26734237f0a2a1a2] [formerly d5c32a6623739a70c207adc06e8319df929ac598] [formerly ac21a6f2849ee4f7811c9fff299caf47ebfcaea1 [formerly df8c06dc029ae47fae558aa729ba0cc24e98351a [formerly 2aa70f8a931633995d0c38f39661ea764d1e61b9]]]
Former-commit-id: fdea2c768c581fa30451b7b3fa6314450045e809 [formerly 2591b69bc0294b2f2325a31a508bf1ff888a20d4 [formerly 3c0488cd0a4ec5da1435fb44fa6d56ce5c636be4]]
Former-commit-id: f55265bd806aad1b28dd42e0a172c3def76d5c78 [formerly 16fdd2cf73f23c0af3828369ae66044ad38b5b95]
Former-commit-id: 356242922798d01ec5b501858c20cdcc2080a323
This commit is contained in:
Jaifroid 2021-07-29 09:38:50 +01:00
parent d1e01f55ae
commit e1582f0599
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
// App version number - ENSURE IT MATCHES VALUE IN init.js // App version number - ENSURE IT MATCHES VALUE IN init.js
// DEV: Changing this will cause the browser to recognize that the Service Worker has changed, and it will download and // DEV: Changing this will cause the browser to recognize that the Service Worker has changed, and it will download and
// install a new copy // install a new copy
const appVersion = '1.6.0-rc4'; const appVersion = '1.6.0';
// Kiwix ZIM Archive Download Server in regex form // Kiwix ZIM Archive Download Server in regex form
// DEV: The server URL is defined in init.js, but is not available to us in SW // DEV: The server URL is defined in init.js, but is not available to us in SW

View File

@ -49,7 +49,7 @@ var params = {};
*/ */
var appstate = {}; var appstate = {};
/******** UPDATE VERSION IN pwabuilder-sw.js TO MATCH VERSION AND CHECK PWASERVER BELOW!!!!!!! *******/ /******** UPDATE VERSION IN pwabuilder-sw.js TO MATCH VERSION AND CHECK PWASERVER BELOW!!!!!!! *******/
params['version'] = "1.6.0-rc4"; //DEV: Manually update this version when there is a new release: it is compared to the Settings Store "version" in order to show first-time info, and the cookie is updated in app.js params['version'] = "1.6.0"; //DEV: Manually update this version when there is a new release: it is compared to the Settings Store "version" 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_100_maxi_2021-07.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_100_maxi_2021-07.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)
@ -459,4 +459,4 @@ var webpMachine = false;
if (!support) { if (!support) {
webpMachine = true; webpMachine = true;
} }
}); });