belowjs 1.1.0 → 1.3.0
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 +13 -0
- package/README.md +4 -4
- package/dist/belowjs.js +662 -475
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,19 @@ All notable changes to BelowJS 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.3.0] - 2025-11-09
|
|
9
|
+
- Desktop Quest Link streaming support, best tried with the drag-and-drop viewer (<https://patrick-morrison.github.io/belowjs/examples/dragdrop/>).
|
|
10
|
+
|
|
11
|
+
## [1.2.0] - 2025-09-10
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
- Limit Draco and KTX2 loader workers to a single thread on iOS to reduce Safari/iOS 26 startup memory pressure.
|
|
15
|
+
- Scope shared KTX2 loader instances per platform so renderer detection is repeated only where needed.
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- Release cached GLTF scenes, textures, and parser registries as soon as models are cleared to stop Safari desktop/iOS 26 from crashing during model swaps.
|
|
19
|
+
- Clean up abort listeners and converted materials immediately after GLTF loads so cancelled requests don’t hold onto GPU resources, matching Apple’s iOS 26 WebKit guidance.
|
|
20
|
+
|
|
8
21
|
## [1.1.0] - 2025-09-03
|
|
9
22
|
|
|
10
23
|
### Added
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
📖 **[Full Documentation & Examples](https://patrick-morrison.github.io/belowjs/)**
|
|
8
8
|
|
|
9
|
-
> **Current Version:** `1.
|
|
9
|
+
> **Current Version:** `1.3.0` - Quest Link stability patch for WebXR optional features.
|
|
10
10
|
|
|
11
11
|
**Dive Shipwrecks in Virtual Reality**
|
|
12
12
|
|
|
@@ -59,11 +59,11 @@ This gives you a complete VR-ready 3D viewer with dive lighting, measurement too
|
|
|
59
59
|
{
|
|
60
60
|
"imports": {
|
|
61
61
|
"three": "https://cdn.jsdelivr.net/npm/three@0.179.1/+esm",
|
|
62
|
-
"belowjs": "https://cdn.jsdelivr.net/npm/belowjs@1.
|
|
62
|
+
"belowjs": "https://cdn.jsdelivr.net/npm/belowjs@1.3.0/dist/belowjs.js"
|
|
63
63
|
}
|
|
64
64
|
}
|
|
65
65
|
</script>
|
|
66
|
-
|
|
66
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/belowjs@1.3.0/dist/belowjs.css">
|
|
67
67
|
<style>
|
|
68
68
|
body, html { margin: 0; padding: 0; overflow: hidden; }
|
|
69
69
|
</style>
|
|
@@ -112,7 +112,7 @@ npm install && npm run build
|
|
|
112
112
|
### Live Examples
|
|
113
113
|
|
|
114
114
|
- [Basic Viewer](https://patrick-morrison.github.io/belowjs/examples/basic/) — Full-featured multi-model viewer
|
|
115
|
-
- [Drag & Drop](https://patrick-morrison.github.io/belowjs/examples/dragdrop/) — File loader with custom UI
|
|
115
|
+
- [Drag & Drop](https://patrick-morrison.github.io/belowjs/examples/dragdrop/) — File loader with custom UI; recommended path for Meta Quest Link desktop streaming
|
|
116
116
|
- [Embed Viewer](https://patrick-morrison.github.io/belowjs/examples/embed/) — Lightweight iframe-ready viewer
|
|
117
117
|
|
|
118
118
|
## Installation
|