@plasius/gpu-renderer 0.1.8 → 0.1.9
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 +3 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,20 @@ All notable changes to this project will be documented in this file.
|
|
|
11
11
|
|
|
12
12
|
## [Unreleased]
|
|
13
13
|
|
|
14
|
+
- **Added**
|
|
15
|
+
- (placeholder)
|
|
16
|
+
|
|
17
|
+
- **Changed**
|
|
18
|
+
- (placeholder)
|
|
19
|
+
|
|
20
|
+
- **Fixed**
|
|
21
|
+
- (placeholder)
|
|
22
|
+
|
|
23
|
+
- **Security**
|
|
24
|
+
- (placeholder)
|
|
25
|
+
|
|
26
|
+
## [0.1.9] - 2026-03-23
|
|
27
|
+
|
|
14
28
|
- **Added**
|
|
15
29
|
- (placeholder)
|
|
16
30
|
|
|
@@ -134,3 +148,4 @@ All notable changes to this project will be documented in this file.
|
|
|
134
148
|
[0.1.6]: https://github.com/Plasius-LTD/gpu-renderer/releases/tag/v0.1.6
|
|
135
149
|
[0.1.7]: https://github.com/Plasius-LTD/gpu-renderer/releases/tag/v0.1.7
|
|
136
150
|
[0.1.8]: https://github.com/Plasius-LTD/gpu-renderer/releases/tag/v0.1.8
|
|
151
|
+
[0.1.9]: https://github.com/Plasius-LTD/gpu-renderer/releases/tag/v0.1.9
|
package/README.md
CHANGED
|
@@ -146,6 +146,9 @@ npm run demo
|
|
|
146
146
|
|
|
147
147
|
Then open `http://localhost:8000/gpu-renderer/demo/`.
|
|
148
148
|
|
|
149
|
+
The demo now reports explicit canvas state so it is clear whether the renderer
|
|
150
|
+
is mounted, idle, running, or blocked by secure-context / WebGPU support.
|
|
151
|
+
|
|
149
152
|
## Development Checks
|
|
150
153
|
|
|
151
154
|
```sh
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasius/gpu-renderer",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"description": "Framework-agnostic WebGPU renderer runtime for Plasius projects.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -52,9 +52,9 @@
|
|
|
52
52
|
"@plasius/gpu-xr": "^0.1.7"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@eslint/js": "^
|
|
56
|
-
"c8": "^
|
|
57
|
-
"eslint": "^
|
|
55
|
+
"@eslint/js": "^10.0.1",
|
|
56
|
+
"c8": "^11.0.0",
|
|
57
|
+
"eslint": "^10.1.0",
|
|
58
58
|
"globals": "^17.3.0",
|
|
59
59
|
"tsup": "^8.5.0",
|
|
60
60
|
"typescript": "^5.9.3"
|