@spatialwalk/avatarkit 1.0.0-beta.94 → 1.0.0-beta.96

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/CHANGELOG.md CHANGED
@@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.0.0-beta.96]
9
+
10
+ ### 🐛 Bugfixes
11
+
12
+ - **WASM Loading in Vite Dev Mode** — Fixed WASM pre-validation failing when consumed via Vite dev server. The WASM URL was mangled by the bundler, causing HTTP 431 errors. Now skips pre-validation when the resolved URL is not a valid `.wasm` path, falling back to Emscripten's built-in loader.
13
+
14
+ ## [1.0.0-beta.95]
15
+
16
+ ### 🐛 Bugfixes
17
+
18
+ - **WebGPU Jacobian Matrix Fix** — Fixed incorrect Jacobian matrix column order in `calcCovariance2D` (WebGPU renderer). The `mat3x3f` constructor takes column vectors, but values were passed in row order, causing transposed 2D covariance and blurry splat edges (especially visible on arms/hands). Android (Vulkan GLSL) and iOS (Metal) were not affected.
19
+
20
+ ### ⚡ Performance
21
+
22
+ - **WASM Download Integrity & Retry** — Added binary integrity validation (magic number + Content-Length check) and automatic retry (up to 3 attempts) for WASM module loading. Also added Content-Length validation for all resource downloads. Prevents cryptic `CompileError` from truncated or corrupted downloads (e.g. in WeChat browser).
23
+
8
24
  ## [1.0.0-beta.94]
9
25
 
10
26
  ### 🐛 Bugfixes
@@ -1,7 +1,7 @@
1
1
  var __defProp = Object.defineProperty;
2
2
  var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3
3
  var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
4
- import { A as APP_CONFIG, l as logger, e as errorToMessage, a as logEvent } from "./index-BDOaKeXW.js";
4
+ import { A as APP_CONFIG, l as logger, e as errorToMessage, a as logEvent } from "./index-DtnIjVSC.js";
5
5
  class StreamingAudioPlayer {
6
6
  // Mark if AudioContext is being resumed, avoid concurrent resume requests
7
7
  constructor(options) {