belowjs 1.7.0 → 1.7.1
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 +7 -1
- package/README.md +3 -3
- package/dist/belowjs.js +642 -635
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ 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.7.1] - 2026-02-15
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- Keyboard screenshot shortcut (`H`) no longer triggers while typing in form fields (`input`, `select`, `textarea`, or `contenteditable` elements).
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
8
15
|
## [1.7.0] - 2026-02-15
|
|
9
16
|
|
|
10
17
|
### Added
|
|
@@ -63,7 +70,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
63
70
|
- VR button visibility management with fly mode controls
|
|
64
71
|
- Support for deprecated KHR_materials_pbrSpecularGlossiness GLTF extension by converting to standard PBR materials
|
|
65
72
|
- Support for logarithmicDepthBuffer renderer option (suppresses ConfigValidator warning)
|
|
66
|
-
- 3D Tiles auto-centering and auto-framing when streaming tiles are not fully available on first bounds pass
|
|
67
73
|
|
|
68
74
|
---
|
|
69
75
|
|
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.7.
|
|
9
|
+
> **Current Version:** `1.7.1` - Screenshot hotkey now ignores typing in text inputs.
|
|
10
10
|
|
|
11
11
|
**Dive Shipwrecks in Virtual Reality**
|
|
12
12
|
|
|
@@ -60,11 +60,11 @@ This gives you a complete VR-ready 3D viewer with dive lighting, measurement too
|
|
|
60
60
|
{
|
|
61
61
|
"imports": {
|
|
62
62
|
"three": "https://cdn.jsdelivr.net/npm/three@0.179.1/+esm",
|
|
63
|
-
"belowjs": "https://cdn.jsdelivr.net/npm/belowjs@1.7.
|
|
63
|
+
"belowjs": "https://cdn.jsdelivr.net/npm/belowjs@1.7.1/dist/belowjs.js"
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
66
|
</script>
|
|
67
|
-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/belowjs@1.7.
|
|
67
|
+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/belowjs@1.7.1/dist/belowjs.css">
|
|
68
68
|
<style>
|
|
69
69
|
body, html { margin: 0; padding: 0; overflow: hidden; }
|
|
70
70
|
</style>
|