valoq-math-work 1.0.12 → 1.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +8 -0
- package/index.html +6 -6
- package/package.json +1 -1
- package/uv/uv.config.js +1 -1
package/index.html
CHANGED
|
@@ -841,7 +841,7 @@ nfiguration Panel Improvements */
|
|
|
841
841
|
</script>
|
|
842
842
|
<script>
|
|
843
843
|
(() => {
|
|
844
|
-
let uvPfx = "/valoq-math-work@1.0.
|
|
844
|
+
let uvPfx = "/valoq-math-work@1.0.14/uv/";
|
|
845
845
|
// check if config is loaded in context of service worker or not
|
|
846
846
|
let loc = self.location.pathname.includes(uvPfx)
|
|
847
847
|
? self.location.pathname.substring(
|
|
@@ -8339,7 +8339,7 @@ select {
|
|
|
8339
8339
|
<div style="text-align: center; color: #7dd3c0; margin-top: 1.5rem; font-size: 0.95rem;">
|
|
8340
8340
|
<i class="fas fa-heart"></i> valoq says hello to all fellow students at Paul Laurence Dunbar High School <i class="fas fa-heart"></i>
|
|
8341
8341
|
</div>
|
|
8342
|
-
<div class="bottom-text" style="position: absolute; bottom: 0.5rem; left: 1rem; color: #888;">
|
|
8342
|
+
<div id="bottom-text" class="bottom-text" style="position: absolute; bottom: 0.5rem; left: 1rem; color: #888;">
|
|
8343
8343
|
made with <i class="fa-solid fa-heart"></i> by dinguschan
|
|
8344
8344
|
</div>
|
|
8345
8345
|
<div class="bottom-text" style="position: absolute; bottom: 0.5rem; right: 1rem; color: #888;">
|
|
@@ -25010,7 +25010,7 @@ async function reinitializeTransport() {
|
|
|
25010
25010
|
}
|
|
25011
25011
|
|
|
25012
25012
|
try {
|
|
25013
|
-
await connection.setTransport("/valoq-math-work@1.0.
|
|
25013
|
+
await connection.setTransport("/valoq-math-work@1.0.14/libcurl/index.mjs", [{ wisp: wispUrl }]);
|
|
25014
25014
|
console.log('[Wisp] Transport reinitialized with:', wispUrl);
|
|
25015
25015
|
} catch (e) {
|
|
25016
25016
|
console.error('[Wisp] Failed to reinitialize transport:', e);
|
|
@@ -25045,13 +25045,13 @@ function initWispDropdown() {
|
|
|
25045
25045
|
// register sw
|
|
25046
25046
|
if ("serviceWorker" in navigator) {
|
|
25047
25047
|
window.addEventListener("load", () => {
|
|
25048
|
-
navigator.serviceWorker.register("/valoq-math-work@1.0.
|
|
25048
|
+
navigator.serviceWorker.register("/valoq-math-work@1.0.14/uv/sw.js")
|
|
25049
25049
|
})
|
|
25050
25050
|
}
|
|
25051
25051
|
</script>
|
|
25052
25052
|
|
|
25053
25053
|
<script>
|
|
25054
|
-
const connection = new BareMux.BareMuxConnection("/valoq-math-work@1.0.
|
|
25054
|
+
const connection = new BareMux.BareMuxConnection("/valoq-math-work@1.0.14/baremux/worker.js");
|
|
25055
25055
|
const wispUrl = localStorage.getItem("nOS_wispUrl") || "wss://wisp-server-167340080388.us-central1.run.app/"
|
|
25056
25056
|
const bareUrl = localStorage.getItem("nOS_bareUrl") || "https://useclassplay.vercel.app/fq/"
|
|
25057
25057
|
|
|
@@ -25060,7 +25060,7 @@ function initWispDropdown() {
|
|
|
25060
25060
|
// Transport function - initializes the proxy transport
|
|
25061
25061
|
async function transport() {
|
|
25062
25062
|
if (!await connection.getTransport()) {
|
|
25063
|
-
await connection.setTransport("/valoq-math-work@1.0.
|
|
25063
|
+
await connection.setTransport("/valoq-math-work@1.0.14/libcurl/index.mjs", [{ wisp: wispUrl }]);
|
|
25064
25064
|
}
|
|
25065
25065
|
}
|
|
25066
25066
|
|
package/package.json
CHANGED
package/uv/uv.config.js
CHANGED