Skip to content

Commit bdabd9b

Browse files
Release 20250612
1 parent 61e230d commit bdabd9b

File tree

5 files changed

+22
-1
lines changed

5 files changed

+22
-1
lines changed

hlp/Help-cs.zip

1.73 KB
Binary file not shown.

hlp/Help-en.zip

1.49 KB
Binary file not shown.

hvdata/data.zip

2.68 KB
Binary file not shown.

index.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,25 @@
2222
}
2323
</script>
2424
<body class="inStandard"></body>
25+
<noscript>
26+
<div id="js-error"> ⚠ JavaScript is turned off!</div>
27+
</noscript>
28+
<div id="cors-error">
29+
<p> ⚠ Do you see this message only? Then viewer is not reading help file content.<br>This may be caused by your browser blocking local file access (file://) due to CORS policy restrictions. </p>
30+
<p>You need to run your browser in mode with bypass CORS policy:</p>
31+
<ul>
32+
<li><p>Chrome:</p>
33+
<blockquote>
34+
<p>Run in CLI:
35+
chrome.exe --disable-site-isolation-trials --disable-web-security --user-data-dir="C:\temp"</p>
36+
</blockquote>
37+
</li>
38+
<li><p>Edge:</p>
39+
<blockquote>
40+
<p>Run in CLI:
41+
msedge --disable-web-security --user-data-dir="C:\temp"</p>
42+
</blockquote>
43+
</li>
44+
</ul>
45+
</div>
2546
</html>

sw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const CACHE_NAME = 'helpviewer-cache-v1';
2-
const CACHE_FILES = [ '/manifest.webmanifest','/index.html','/hvdata/jszip.min.js','/hvdata/appmain.js','/hvdata/LICENSE-jszip.md','/hvdata/data.zip','/faviconPWA.png','/favicon.png' ];
2+
const CACHE_FILES = [ '/faviconPWA.png','/manifest.webmanifest','/hvdata/jszip.min.js','/hvdata/data.zip','/hvdata/LICENSE-jszip.md','/hvdata/appmain.js','/index.html','/favicon.png' ];
33

44
self.addEventListener('install', (event) => {
55
event.waitUntil(

0 commit comments

Comments
 (0)