mirror of
https://github.com/kiwix/kiwix-js-pwa.git
synced 2025-09-08 19:57:46 -04:00
Changelogs
Former-commit-id: 89491f2aad4ffa807db59977e628325a3bf1762f [formerly 4c9611df259406987998d356cd25101653e33463] [formerly 9b06ca6d59841426b292e0229d116c083437dee2] [formerly 3bbdebb58d82a4c6cd1fdb85f299ba4d0109cc4f [formerly d7033a34c37bf002684c55660268b2c190988f77 [formerly 6f98810ff8450033074b756d90412915351eb8cd]]] Former-commit-id: 930e92e2fd4a7770e9c3da8ad3ecac23b0f24240 [formerly 428682035f3dcfc97f2b8a86c1ca0aa078d0addf [formerly d6ecbfb1f2dd7fbd17b13f2e24a412f20285ef43]] Former-commit-id: 5a0d127f3b66d7eb3b599df978e0e50dddd9138f [formerly bb13350ab43925554e5facbb097fa29ca683d5db] Former-commit-id: f8d26b83f200c5b89d4947a30a4eeb06e47358af
This commit is contained in:
parent
47620dab79
commit
21db5f425c
@ -3,7 +3,8 @@
|
||||
## In progress release 1.4.3
|
||||
|
||||
* FEATURE: (Experimental) PWA is paritcipating in File Handling API origin trial
|
||||
* FEATURE: Search with wildcards '.*', '.+' or regex syntax '(?:my_regular_expression)' so long as search begins with normal alphanumeric string
|
||||
* FEATURE: Search with wildcards `.*`, `.+` or regex syntax `(?:my_regular_expression)` so long as search begins with normal alphanumeric string
|
||||
* ENHANCEMENT: Include `h4` headings in Table of Contents
|
||||
* FIX: Bug which failed to detect images correctly in a new tab
|
||||
* FIX: Touch-zoom of contents of iframe no longer blanks part of the display
|
||||
* FIX: Broken zoom of contents of iframe (with UI buttons) in Internet Explorer
|
||||
|
@ -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.4.3-rc4';
|
||||
const appVersion = '1.4.3-rc5';
|
||||
|
||||
// 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
|
||||
|
@ -129,6 +129,7 @@
|
||||
<li>Fixed broken zoom of contents of iframe (with UI buttons) in Internet Explorer</li>
|
||||
<li>Enabled search with wildcards '.*', '.+' or regex syntax '(?:my_regular_expression)': <b>NB search must begin with normal alphanumeric string</b></li>
|
||||
<li>Fixed bug setting up backlinks which caused some pages not to load</li>
|
||||
<li>Include h4 headings in Table of Contents</li>
|
||||
</ul>
|
||||
<p><a href="https://github.com/kiwix/kiwix-js-windows/blob/master/CHANGELOG.md" target="_blank">Full changelog...<img src="I/s/Icon_External_Link.png"></a></p>
|
||||
</div>
|
||||
|
@ -49,7 +49,7 @@ var params = {};
|
||||
*/
|
||||
var appstate = {};
|
||||
/******** UPDATE VERSION IN pwabuilder-sw.js TO MATCH VERSION AND CHECK PWASERVER BELOW!!!!!!! *******/
|
||||
params['version'] = "1.4.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.4.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 !! ********************/
|
||||
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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user