From e1582f0599e46be060973406d69255cfd2f3c569 Mon Sep 17 00:00:00 2001 From: Jaifroid Date: Thu, 29 Jul 2021 09:38:50 +0100 Subject: [PATCH] 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 --- pwabuilder-sw.js | 2 +- www/js/init.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pwabuilder-sw.js b/pwabuilder-sw.js index 22f12f48..756511ad 100644 --- a/pwabuilder-sw.js +++ b/pwabuilder-sw.js @@ -4,7 +4,7 @@ // 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 // install a new copy -const appVersion = '1.6.0-rc4'; +const appVersion = '1.6.0'; // 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 diff --git a/www/js/init.js b/www/js/init.js index c76ca2ae..11ad7a9d 100644 --- a/www/js/init.js +++ b/www/js/init.js @@ -49,7 +49,7 @@ var params = {}; */ var appstate = {}; /******** 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 !! ********************/ 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) @@ -459,4 +459,4 @@ var webpMachine = false; if (!support) { webpMachine = true; } -}); \ No newline at end of file +});