@supraio/client-daemon-js 0.0.0-jvmaster.324 → 0.0.0-jvmaster.327

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supraio/client-daemon-js",
3
- "version": "0.0.0-jvmaster.324",
3
+ "version": "0.0.0-jvmaster.327",
4
4
  "description": "",
5
5
  "main": "sdk.js",
6
6
  "types": "sdk.d.ts",
package/screen.html CHANGED
@@ -5,6 +5,6 @@
5
5
  <link rel="stylesheet" href="screen.css"></link>
6
6
  </head>
7
7
  <body>
8
- <script type="text/javascript" src="screen.js?v=0.0.0-jvmaster.324"></script>
8
+ <script type="text/javascript" src="screen.js?v=0.0.0-jvmaster.327"></script>
9
9
  </body>
10
10
  </html>
package/screen.js CHANGED
@@ -18124,7 +18124,7 @@
18124
18124
  }
18125
18125
 
18126
18126
  // screen/plain.ts
18127
- var SCREEN_JS_URL = "supra-client-screen.js?v=0.0.0-jvmaster.324";
18127
+ var SCREEN_JS_URL = "supra-client-screen.js?v=0.0.0-jvmaster.327";
18128
18128
  async function startPlainScreen(options) {
18129
18129
  options = options != null ? options : parseQueryOptions();
18130
18130
  initNaCLDecoder();
@@ -18139,7 +18139,7 @@
18139
18139
  // screen/h264decoder.ts
18140
18140
  async function initH264Decoder() {
18141
18141
  window.h264Decoder = await createH264Decoder();
18142
- console.log("ASDF initH264Decoder done, window.h264Decoder: " + window.h264Decoder);
18142
+ console.log("ASDF[TS] initH264Decoder done, window.h264Decoder: " + window.h264Decoder);
18143
18143
  }
18144
18144
  async function createH264Decoder() {
18145
18145
  const { H264Decoder: H264Decoder2 } = (init_dist(), __toCommonJS(dist_exports));
@@ -18151,10 +18151,10 @@
18151
18151
  }
18152
18152
 
18153
18153
  // screen/wasm.ts
18154
- var SCREEN_WASM_URL = "supra-client-screen.wasm?v=0.0.0-jvmaster.324";
18154
+ var SCREEN_WASM_URL = "supra-client-screen.wasm?v=0.0.0-jvmaster.327";
18155
18155
  async function startWasmScreen(options) {
18156
18156
  options = options != null ? options : parseQueryOptions();
18157
- console.log("ASDF startWasmScreen, options: " + options);
18157
+ console.log("ASDF[TS] startWasmScreen, options: " + options);
18158
18158
  await initH264Decoder();
18159
18159
  await initGoEnvironment();
18160
18160
  await startGoScreen(options);
@@ -18171,10 +18171,10 @@
18171
18171
  // sdk.ts
18172
18172
  async function startScreen(options) {
18173
18173
  if (shouldUsePlainJS(options)) {
18174
- console.log("ASDF startScreen: starting plain screen");
18174
+ console.log("ASDF[TS] startScreen: starting plain screen");
18175
18175
  await startPlainScreen(options);
18176
18176
  } else {
18177
- console.log("ASDF startScreen: starting wasm screen");
18177
+ console.log("ASDF[TS] startScreen: starting wasm screen");
18178
18178
  await startWasmScreen(options);
18179
18179
  }
18180
18180
  }