mirror of
https://github.com/kiwix/kiwix-js-pwa.git
synced 2025-09-08 03:37:12 -04:00
Preparations for 0.9.9.3 release
Former-commit-id: f8e97d63b7e0fc0b2c2f7fc20a3296505225474d [formerly afb1ccc5fecb06d26437390a0226ddc4691c5976] Former-commit-id: 388e39d0401431f76cf173b5142873e6f85ef88b
This commit is contained in:
parent
395dc5af97
commit
e67838fa2c
@ -1,3 +1,11 @@
|
||||
## Release 0.9.9.3 (beta)
|
||||
* FIX: Unhandled exception after using in-article word search
|
||||
* FIX: Browser history now remembered for first page load
|
||||
* ENHANCEMENT: Filter ZIM archives by date in download links
|
||||
* ENHANCEMENT: Option to remove maximum page width restriction for Wikipedia articles
|
||||
* ENHANCEMENT: Setting or clearing dark themes no longer require page reload
|
||||
* ENHANCEMENT: Wider range of infoboxes, and "homonymie" hatnotes supported
|
||||
|
||||
## Release 0.9.9.2 (beta)
|
||||
* FIX: Added more padding for content hidden under the bottom bar
|
||||
* FIX: New mode of injecting HTML into iframe fixes baseUrl issues
|
||||
|
@ -50,14 +50,14 @@
|
||||
Welcome to Kiwix JS for Windows
|
||||
</h2>
|
||||
<div class="update">
|
||||
<h3 style="margin-top:0;">Changes in 0.9.9.2 (beta)</h3>
|
||||
<h3 style="margin-top:0;">Changes in <span class="version">0.9 (beta)</span></h3>
|
||||
<ul style="padding-left: 15px;">
|
||||
<li>Fixed content being hidden under the bottom bar</li>
|
||||
<li>Faster typesetting of TeX equations</li>
|
||||
<li>Experimental support for TeX in Mathoverflow and other Stackechange</li>
|
||||
<li>Dark theme support for Mathoverflow and Stackexchange</li>
|
||||
<li>Better support for archives with subdirectories</li>
|
||||
<li>Uncluttered the UI for file selection</li>
|
||||
<li>Filter ZIM archives by date in download links</li>
|
||||
<li>Fixed app crash after using in-article word search</li>
|
||||
<li>Option to remove maximum page width restriction</li>
|
||||
<li>Fixed glitch with browser history not being rememberd occasionally</li>
|
||||
<li>Setting or clearing dark themes no longer require page reload</li>
|
||||
<li>Greater support for infoboxes, hatnotes and style fixes</li>
|
||||
</ul>
|
||||
</div>
|
||||
<h3>Please read this important information!</h3>
|
||||
@ -141,7 +141,7 @@
|
||||
Kiwix JS Windows
|
||||
</h2>
|
||||
<h3 style="margin-top:0;">
|
||||
Offline Wikipedia Viewer <small>(Version <span id="version"></span>)</small>
|
||||
Offline Wikipedia Viewer <small>(Version <span class="version"></span>)</small>
|
||||
</h3>
|
||||
<p><small>Packaged ZIM archive: <b><span class="fileVersion"></span></b></small></p>
|
||||
<p>Official site : <a href="http://www.kiwix.org/" target="_blank">http://www.kiwix.org/</a></p>
|
||||
|
@ -70,10 +70,13 @@ document.getElementById('cssUIDarkThemeCheck').checked = params.cssUITheme == 'd
|
||||
document.getElementById('useMathJaxRadio' + (params.useMathJax ? 'True' : 'False')).checked = true;
|
||||
document.getElementById('rememberLastPageCheck').checked = params.rememberLastPage;
|
||||
document.getElementById('displayFileSelectorsCheck').checked = params.showFileSelectors;
|
||||
document.getElementById('version').innerHTML = params.version;
|
||||
var versionDivs = document.getElementsByClassName('fileVersion');
|
||||
for (var i = 0; i < versionDivs.length; i++) {
|
||||
versionDivs[i].innerHTML = i ? params.fileVersion.replace(/\s+.+$/, "") : params['fileVersion'];
|
||||
var versionSpans = document.getElementsByClassName('version');
|
||||
for (var i = 0; i < versionSpans.length; i++) {
|
||||
versionSpans[i].innerHTML = params.version;
|
||||
}
|
||||
var fileVersionDivs = document.getElementsByClassName('fileVersion');
|
||||
for (i = 0; i < fileVersionDivs.length; i++) {
|
||||
fileVersionDivs[i].innerHTML = i ? params.fileVersion.replace(/\s+.+$/, "") : params.fileVersion;
|
||||
}
|
||||
if (!params.showFileSelectors && params.packagedFile && params.storedFile && params.storedFile != params.packagedFile) {
|
||||
var currentArchive = document.getElementById('currentArchive');
|
||||
|
Loading…
x
Reference in New Issue
Block a user