@supraio/client-daemon-js 0.0.0-mznacl.249 → 0.0.0-mznacl.256
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/daemon.html +1 -1
- package/daemon.js +2 -2
- package/nacl-decoder.js +316 -308
- package/package.json +1 -1
- package/screen.html +1 -1
- package/screen.js +6 -6
- package/screen.js.map +2 -2
- package/sdk.js +8 -8
- package/sdk.js.map +2 -2
- package/supra-client-daemon.js +5151 -3012
- package/supra-client-daemon.js.map +1 -1
- package/supra-client-daemon.wasm +0 -0
- package/supra-client-screen.js +5468 -2967
- package/supra-client-screen.js.map +1 -1
- package/supra-client-screen.wasm +0 -0
package/package.json
CHANGED
package/screen.html
CHANGED
package/screen.js
CHANGED
|
@@ -17338,7 +17338,7 @@
|
|
|
17338
17338
|
}
|
|
17339
17339
|
|
|
17340
17340
|
// screen/plain.ts
|
|
17341
|
-
var SCREEN_JS_URL = "supra-client-screen.js?v=0.0.0-mznacl.
|
|
17341
|
+
var SCREEN_JS_URL = "supra-client-screen.js?v=0.0.0-mznacl.256";
|
|
17342
17342
|
async function startPlainScreen(options) {
|
|
17343
17343
|
const screenOptions = options != null ? options : parseQueryOptions();
|
|
17344
17344
|
const fs = await initBrowserFS();
|
|
@@ -17350,11 +17350,11 @@
|
|
|
17350
17350
|
await new Promise(() => void 0);
|
|
17351
17351
|
}
|
|
17352
17352
|
function createNaClDecoder() {
|
|
17353
|
-
if (
|
|
17354
|
-
|
|
17353
|
+
if ("NaClDecoder" in window && window.NaClDecoder) {
|
|
17354
|
+
const naclDecoder = new NaClDecoder();
|
|
17355
|
+
return naclDecoder;
|
|
17355
17356
|
}
|
|
17356
|
-
|
|
17357
|
-
return naclDecoder;
|
|
17357
|
+
return void 0;
|
|
17358
17358
|
}
|
|
17359
17359
|
|
|
17360
17360
|
// node_modules/h264decoder/dist/b64.js
|
|
@@ -17492,7 +17492,7 @@
|
|
|
17492
17492
|
}
|
|
17493
17493
|
|
|
17494
17494
|
// screen/wasm.ts
|
|
17495
|
-
var SCREEN_WASM_URL = "supra-client-screen.wasm?v=0.0.0-mznacl.
|
|
17495
|
+
var SCREEN_WASM_URL = "supra-client-screen.wasm?v=0.0.0-mznacl.256";
|
|
17496
17496
|
async function startWasmScreen(options) {
|
|
17497
17497
|
const screenOptions = options != null ? options : parseQueryOptions();
|
|
17498
17498
|
const h264Decoder = await createH264Decoder();
|