@avs/go 0.13.71762 → 0.13.71764

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": "@avs/go",
3
- "version": "0.13.71762",
3
+ "version": "0.13.71764",
4
4
  "description": "AVS Go",
5
5
  "keywords": [
6
6
  "polymer",
@@ -224,7 +224,7 @@ export class AvsGoDataViz extends AvsDataSourceMixin(AvsStreamMixin(AvsHttpMixin
224
224
  </div>
225
225
  </div>
226
226
  <a class="btn" id="motionCaptureReset" data-tooltip="Reset transform"></a>
227
- <a class="btn disabled" id="motionCaptureClear" data-tooltip="Clear motion capture frame"></a>
227
+ <a class="btn disabled" id="motionCaptureClear" data-tooltip="Clear motion capture frames"></a>
228
228
  <a class="btn disabled" id="motionCaptureCopyData" data-tooltip="Copy motion capture data to clipboard"></a>
229
229
  <a class="btn disabled" id="motionCaptureCopyUrl" data-tooltip="Copy motion capture URL to clipboard"></a>
230
230
  </div>
@@ -1689,7 +1689,7 @@ export class AvsGoDataViz extends AvsDataSourceMixin(AvsStreamMixin(AvsHttpMixin
1689
1689
  // Convert to JSON, compress and base64url encode
1690
1690
  const json = JSON.stringify(this.motionCaptureFrames);
1691
1691
  const compressed = await this._compress(json);
1692
- const encoded = compressed.toBase64().replace('/', '_').replace('+', '-');
1692
+ const encoded = compressed.toBase64().replaceAll('/', '_').replaceAll('+', '-');
1693
1693
 
1694
1694
  // Create URL and copy to clipboard
1695
1695
  const url = window.location.origin + window.location.pathname + "?motionCapture=" + encoded;
package/src/constants.js CHANGED
@@ -18,4 +18,4 @@
18
18
  * Advanced Visual Systems Inc. (http://www.avs.com)
19
19
  */
20
20
 
21
- export var VERSION = '0.13.71762';
21
+ export var VERSION = '0.13.71764';