@aelionsdk/renderer-worker 1.0.0-rc.1 → 1.1.0-rc.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.
Files changed (2) hide show
  1. package/README.md +25 -4
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -1,7 +1,28 @@
1
- # @aelionsdk/renderer-worker
1
+ # `@aelionsdk/renderer-worker`
2
2
 
3
- Off-main-thread WebGL2 and WebGPU compositor for AelionSDK
3
+ Off-main-thread WebGL2/WebGPU composition and Worker protocol for AelionSDK.
4
4
 
5
- Install with `npm install @aelionsdk/renderer-worker@next`.
5
+ ## Install
6
6
 
7
- Version 1.0.0-rc.1 is a prerelease and its API may change before the first stable release. This package is part of [AelionSDK](https://github.com/FoyonaCZY/AelionSDK); see the repository README for supported browsers, examples and deployment requirements.
7
+ ```bash
8
+ npm install @aelionsdk/renderer-worker@next
9
+ ```
10
+
11
+ `next` currently resolves to `1.1.0-rc.1`. Applications should create preview
12
+ surfaces through `@aelionsdk/sdk`; use this package directly for a custom render
13
+ host or Worker transport.
14
+
15
+ ## Public surface
16
+
17
+ - renderer Worker client and protocol;
18
+ - Render IR compositor;
19
+ - WebGL2/WebGPU backend selection;
20
+ - font management and transferable frame results.
21
+
22
+ Frame results have explicit ownership. Close bitmaps that are not presented,
23
+ cancel superseded requests and dispose the Worker client so queued work and GPU
24
+ resources can drain.
25
+
26
+ See the [architecture guide](https://foyonaczy.github.io/AelionSDK/concepts/architecture/)
27
+ and [API reference](https://foyonaczy.github.io/AelionSDK/api/aelionsdk/renderer-worker/overview/).
28
+ Licensed under MIT.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aelionsdk/renderer-worker",
3
- "version": "1.0.0-rc.1",
3
+ "version": "1.1.0-rc.1",
4
4
  "description": "Off-main-thread WebGL2 and WebGPU compositor for AelionSDK",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -27,16 +27,16 @@
27
27
  "!dist/.tsbuildinfo"
28
28
  ],
29
29
  "engines": {
30
- "node": ">=20.19"
30
+ "node": ">=24 <25"
31
31
  },
32
32
  "publishConfig": {
33
33
  "access": "public",
34
34
  "provenance": true
35
35
  },
36
36
  "dependencies": {
37
- "@aelionsdk/core": "1.0.0-rc.1",
38
- "@aelionsdk/material-compiler": "1.0.0-rc.1",
39
- "@aelionsdk/render-ir": "1.0.0-rc.1"
37
+ "@aelionsdk/core": "1.1.0-rc.1",
38
+ "@aelionsdk/material-compiler": "1.1.0-rc.1",
39
+ "@aelionsdk/render-ir": "1.1.0-rc.1"
40
40
  },
41
41
  "scripts": {
42
42
  "build": "tsc -b",