valoq-math-work 1.0.11 → 1.0.12
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/index.html +13 -9
- 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.12/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(
|
|
@@ -10609,9 +10609,13 @@ document.addEventListener("keydown", function (e) {
|
|
|
10609
10609
|
function selectBoot() {
|
|
10610
10610
|
localStorage.setItem("nautilusOS_bootChoice", bootSelectedIndex);
|
|
10611
10611
|
|
|
10612
|
-
document.getElementById("bootOptions")
|
|
10613
|
-
document.querySelector(".boot-hint")
|
|
10614
|
-
document.getElementById("bootLoading")
|
|
10612
|
+
const bootOptions = document.getElementById("bootOptions");
|
|
10613
|
+
const bootHint = document.querySelector(".boot-hint");
|
|
10614
|
+
const bootLoading = document.getElementById("bootLoading");
|
|
10615
|
+
|
|
10616
|
+
if (bootOptions) bootOptions.style.display = "none";
|
|
10617
|
+
if (bootHint) bootHint.style.display = "none";
|
|
10618
|
+
if (bootLoading) bootLoading.classList.add("active");
|
|
10615
10619
|
startBootSequence();
|
|
10616
10620
|
}
|
|
10617
10621
|
|
|
@@ -20746,7 +20750,7 @@ if (cloakingConfig.antiScreenMonitoring) setupScreenMonitoringListener();
|
|
|
20746
20750
|
if (cloakingConfig.confirmPageClosing) setupPageClosingListener();
|
|
20747
20751
|
function hideProperties() {
|
|
20748
20752
|
const tooltip = document.getElementById("propertiesTooltip");
|
|
20749
|
-
tooltip.classList.remove("active");
|
|
20753
|
+
if (tooltip) tooltip.classList.remove("active");
|
|
20750
20754
|
}
|
|
20751
20755
|
|
|
20752
20756
|
document.addEventListener("click", (e) => {
|
|
@@ -25006,7 +25010,7 @@ async function reinitializeTransport() {
|
|
|
25006
25010
|
}
|
|
25007
25011
|
|
|
25008
25012
|
try {
|
|
25009
|
-
await connection.setTransport("/valoq-math-work@1.0.
|
|
25013
|
+
await connection.setTransport("/valoq-math-work@1.0.12/libcurl/index.mjs", [{ wisp: wispUrl }]);
|
|
25010
25014
|
console.log('[Wisp] Transport reinitialized with:', wispUrl);
|
|
25011
25015
|
} catch (e) {
|
|
25012
25016
|
console.error('[Wisp] Failed to reinitialize transport:', e);
|
|
@@ -25041,13 +25045,13 @@ function initWispDropdown() {
|
|
|
25041
25045
|
// register sw
|
|
25042
25046
|
if ("serviceWorker" in navigator) {
|
|
25043
25047
|
window.addEventListener("load", () => {
|
|
25044
|
-
navigator.serviceWorker.register("/valoq-math-work@1.0.
|
|
25048
|
+
navigator.serviceWorker.register("/valoq-math-work@1.0.12/uv/sw.js")
|
|
25045
25049
|
})
|
|
25046
25050
|
}
|
|
25047
25051
|
</script>
|
|
25048
25052
|
|
|
25049
25053
|
<script>
|
|
25050
|
-
const connection = new BareMux.BareMuxConnection("/valoq-math-work@1.0.
|
|
25054
|
+
const connection = new BareMux.BareMuxConnection("/valoq-math-work@1.0.12/baremux/worker.js");
|
|
25051
25055
|
const wispUrl = localStorage.getItem("nOS_wispUrl") || "wss://wisp-server-167340080388.us-central1.run.app/"
|
|
25052
25056
|
const bareUrl = localStorage.getItem("nOS_bareUrl") || "https://useclassplay.vercel.app/fq/"
|
|
25053
25057
|
|
|
@@ -25056,7 +25060,7 @@ function initWispDropdown() {
|
|
|
25056
25060
|
// Transport function - initializes the proxy transport
|
|
25057
25061
|
async function transport() {
|
|
25058
25062
|
if (!await connection.getTransport()) {
|
|
25059
|
-
await connection.setTransport("/valoq-math-work@1.0.
|
|
25063
|
+
await connection.setTransport("/valoq-math-work@1.0.12/libcurl/index.mjs", [{ wisp: wispUrl }]);
|
|
25060
25064
|
}
|
|
25061
25065
|
}
|
|
25062
25066
|
|
package/package.json
CHANGED
package/uv/uv.config.js
CHANGED