belowjs 1.1.0 → 1.2.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 +10 -0
- package/README.md +3 -3
- package/dist/belowjs.js +629 -469
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,16 @@ 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.2.0] - 2025-09-10
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- Limit Draco and KTX2 loader workers to a single thread on iOS to reduce Safari/iOS 26 startup memory pressure.
|
|
12
|
+
- Scope shared KTX2 loader instances per platform so renderer detection is repeated only where needed.
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- 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.
|
|
16
|
+
- 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.
|
|
17
|
+
|
|
8
18
|
## [1.1.0] - 2025-09-03
|
|
9
19
|
|
|
10
20
|
### 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.2.0` - Memory-hardened release with Safari/iOS loading fixes.
|
|
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.2.0/dist/belowjs.js"
|
|
63
63
|
}
|
|
64
64
|
}
|
|
65
65
|
</script>
|
|
66
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/belowjs@1.
|
|
66
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/belowjs@1.2.0/dist/belowjs.css">
|
|
67
67
|
<style>
|
|
68
68
|
body, html { margin: 0; padding: 0; overflow: hidden; }
|
|
69
69
|
</style>
|