tractatus/public/check-version.html
2026-02-09 18:07:06 +13:00

47 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equi?v="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equi?v="Pragma" content="no-cache">
<meta http-equi?v="Expires" content="0">
<title>Version Check</title>
<style>
body { font-family: sans-serif; padding: 2rem; background: #f9fafb; }
.box { background: white; border: 1px solid #e5e7eb; padding: 1.5rem; margin: 1rem 0; border-radius: 0.5rem; }
.good { background: #d1fae5; border-color: #10b981; }
.bad { background: #fee2e2; border-color: #ef4444; }
code { background: #1f2937; color: #f3f4f6; padding: 0.25rem 0.5rem; border-radius: 0.25rem; }
pre { background: #1f2937; color: #f3f4f6; padding: 1rem; border-radius: 0.5rem; overflow-x: auto; }
</style>
<!-- Auto-reload on service worker update -->
</head>
<body>
<h1>Download Fix - Version Check</h1>
<div class="box">
<h2>Expected Version</h2>
<p>JavaScript should be version: <code>1759828916</code></p>
<p>Onclick handler should include: <code>window.location.href</code></p>
</div>
<div id="results">
<div class="box">
<p>Loading test...</p>
</div>
</div>
<div class="box">
<h2>If Version is Wrong:</h2>
<ol>
<li>Close ALL browser tabs for agenticgovernance.digital</li>
<li>Clear browser cache completely (not just for this site)</li>
<li>Or use a different browser you haven't used for this site</li>
<li>Or use private/incognito window</li>
</ol>
</div>
<script src="/js/check-version.js?v=0.1.2.1770613626623"></script>
</body>
</html>