mirror of
https://github.com/kiwix/kiwix-js-pwa.git
synced 2025-09-08 11:48:26 -04:00
Update changelogs and bump
Former-commit-id: 9ee21e9b431d72136763977b601c0b714177bb62 [formerly e0f0e6cf7c3c0b1fe3f46b3b7410568d40bfb9ba] [formerly 2036bf34ef4d926f0411ed98494029ae049b8abf] [formerly 412834dbe3e918e0446fee02fb0b006de2d6f9e6 [formerly ac65acf68c7e106f881beffa4e006d297d300d5c [formerly 3b36f3f7ff8bfb026c9f0008eaa1fcad70e3076e]]] Former-commit-id: 03958134d9c8b8b9499b9af72bbff7fddd91399a [formerly 7dff008f8675af2a6712cd8fd8a5fff2431e43f0 [formerly 1b0619dd7e31417d4b085769b31628342a2b900b]] Former-commit-id: a74c434936a5db6a1cf75983ec3117a2f60fdb31 [formerly 62d72ad7ad1b746a0262e3c4e5390f80d4095a0d] Former-commit-id: c11ddfedc25280bcb48360dbfcc889e745694a8d
This commit is contained in:
parent
d04ddd9c26
commit
9a6e70e1c4
@ -6,6 +6,7 @@
|
|||||||
* UPDATE: Sample ZIM updated to `wikipedia_en_100_maxi_2021-05.zim`
|
* UPDATE: Sample ZIM updated to `wikipedia_en_100_maxi_2021-05.zim`
|
||||||
* UPDATE: KaTeX to v0.13.11
|
* UPDATE: KaTeX to v0.13.11
|
||||||
* UPDATE: System dark/light mode now used for "auto" setting in modern browsers (as well as UWP)
|
* UPDATE: System dark/light mode now used for "auto" setting in modern browsers (as well as UWP)
|
||||||
|
* FIX: Double-clicking on archive failed to launch it in UWP app running in SW mode
|
||||||
* FIX: Hide jump in page position during article load in Service Worker mode
|
* FIX: Hide jump in page position during article load in Service Worker mode
|
||||||
* FIX: Adjusted timing of hiding and showing the article during page composition
|
* FIX: Adjusted timing of hiding and showing the article during page composition
|
||||||
* FIX: Intermittent failure to compose page in UWP app on mobile
|
* FIX: Intermittent failure to compose page in UWP app on mobile
|
||||||
|
@ -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.3.3-RC4';
|
const appVersion = '1.3.3-RC5';
|
||||||
|
|
||||||
// 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
|
||||||
|
@ -119,6 +119,7 @@
|
|||||||
<li>Sample ZIM updated to wikipedia_en_100_maxi_2021-05.zim</li>
|
<li>Sample ZIM updated to wikipedia_en_100_maxi_2021-05.zim</li>
|
||||||
<li>System dark/light mode now used for "auto" setting in all modern browsers</li>
|
<li>System dark/light mode now used for "auto" setting in all modern browsers</li>
|
||||||
<li>Speed up article search by pre-calculating position of the article namespace</li>
|
<li>Speed up article search by pre-calculating position of the article namespace</li>
|
||||||
|
<li>Fixed failure to load an archive when double-clicked if UWP app is running as PWA</li>
|
||||||
<li>Fix an ugly jump in page position during article load in Service Worker mode</li>
|
<li>Fix an ugly jump in page position during article load in Service Worker mode</li>
|
||||||
<li>Adjusted timing of hiding and showing the article during page composition</li>
|
<li>Adjusted timing of hiding and showing the article during page composition</li>
|
||||||
<li>Reposition displaced multiple hatnotes</li>
|
<li>Reposition displaced multiple hatnotes</li>
|
||||||
|
@ -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.3.3-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.3.3-RC5"; //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-05.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-05.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