@plasius/gpu-xr 0.1.7 → 0.1.8
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 +15 -0
- package/README.md +4 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,20 @@ All notable changes to this project will be documented in this file.
|
|
|
10
10
|
|
|
11
11
|
## [Unreleased]
|
|
12
12
|
|
|
13
|
+
- **Added**
|
|
14
|
+
- (placeholder)
|
|
15
|
+
|
|
16
|
+
- **Changed**
|
|
17
|
+
- (placeholder)
|
|
18
|
+
|
|
19
|
+
- **Fixed**
|
|
20
|
+
- (placeholder)
|
|
21
|
+
|
|
22
|
+
- **Security**
|
|
23
|
+
- (placeholder)
|
|
24
|
+
|
|
25
|
+
## [0.1.8] - 2026-03-23
|
|
26
|
+
|
|
13
27
|
- **Added**
|
|
14
28
|
- (placeholder)
|
|
15
29
|
|
|
@@ -105,3 +119,4 @@ All notable changes to this project will be documented in this file.
|
|
|
105
119
|
[0.1.2]: https://github.com/Plasius-LTD/gpu-xr/releases/tag/v0.1.2
|
|
106
120
|
[0.1.6]: https://github.com/Plasius-LTD/gpu-xr/releases/tag/v0.1.6
|
|
107
121
|
[0.1.7]: https://github.com/Plasius-LTD/gpu-xr/releases/tag/v0.1.7
|
|
122
|
+
[0.1.8]: https://github.com/Plasius-LTD/gpu-xr/releases/tag/v0.1.8
|
package/README.md
CHANGED
|
@@ -84,6 +84,10 @@ npm run demo
|
|
|
84
84
|
|
|
85
85
|
Then open `http://localhost:8000/gpu-xr/demo/`.
|
|
86
86
|
|
|
87
|
+
The demo is lifecycle-first. It does not mount a 3D canvas on its own; it
|
|
88
|
+
shows XR capability and session state, and explains that a renderer surface
|
|
89
|
+
must be bound separately.
|
|
90
|
+
|
|
87
91
|
## Development Checks
|
|
88
92
|
|
|
89
93
|
```sh
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasius/gpu-xr",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Framework-agnostic WebXR session management for Plasius GPU rendering projects.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -50,9 +50,9 @@
|
|
|
50
50
|
"author": "Plasius LTD <development@plasius.co.uk>",
|
|
51
51
|
"license": "Apache-2.0",
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@eslint/js": "^
|
|
54
|
-
"c8": "^
|
|
55
|
-
"eslint": "^
|
|
53
|
+
"@eslint/js": "^10.0.1",
|
|
54
|
+
"c8": "^11.0.0",
|
|
55
|
+
"eslint": "^10.1.0",
|
|
56
56
|
"globals": "^17.3.0",
|
|
57
57
|
"tsup": "^8.5.0",
|
|
58
58
|
"typescript": "^5.9.3"
|