@spatialwalk/avatarkit 1.0.0-beta.94 → 1.0.0-beta.95
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,16 @@ 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.95]
|
|
9
|
+
|
|
10
|
+
### 🐛 Bugfixes
|
|
11
|
+
|
|
12
|
+
- **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.
|
|
13
|
+
|
|
14
|
+
### ⚡ Performance
|
|
15
|
+
|
|
16
|
+
- **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).
|
|
17
|
+
|
|
8
18
|
## [1.0.0-beta.94]
|
|
9
19
|
|
|
10
20
|
### 🐛 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-
|
|
4
|
+
import { A as APP_CONFIG, l as logger, e as errorToMessage, a as logEvent } from "./index-B09oapvc.js";
|
|
5
5
|
class StreamingAudioPlayer {
|
|
6
6
|
// Mark if AudioContext is being resumed, avoid concurrent resume requests
|
|
7
7
|
constructor(options) {
|