@codexo/exojs 0.8.3 → 0.8.4
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 +52 -0
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,58 @@ All notable changes to ExoJS are documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and the project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.8.4] - 2026-05-14
|
|
8
|
+
|
|
9
|
+
### Site / Guide
|
|
10
|
+
|
|
11
|
+
- **Full English Guide complete through Parts 3–8.** Drawing (5 chapters),
|
|
12
|
+
Input (4), Audio (4), Effects (3), Advanced (5), and Recipes (8) are now
|
|
13
|
+
written, editorially consistent, and source-verified against the engine
|
|
14
|
+
API as shipped in v0.8.3.
|
|
15
|
+
|
|
16
|
+
- **v0.8.3 feature chapters integrated.** Audio-reactive visualization (5.5),
|
|
17
|
+
Custom mesh shaders (6.4), and Render pipeline debugging (7.6) reflect the
|
|
18
|
+
`BeatDetector` visual getters, `AudioAnalyser` mel/log spectrum API,
|
|
19
|
+
`MeshShader` dual GLSL + WGSL class shape, and `RenderPassInspectorLayer`.
|
|
20
|
+
|
|
21
|
+
- **Full-guide editorial and source/API verification pass.** All 38 drafted
|
|
22
|
+
chapters verified for internal consistency, correct API surface references,
|
|
23
|
+
and accurate example cross-links. Terminology, heading conventions, and
|
|
24
|
+
cross-part forward/backward references aligned in a single pass.
|
|
25
|
+
|
|
26
|
+
- **39 English Guide routes verified across dark/light and desktop/mobile
|
|
27
|
+
screenshot matrix.** 156/156 captures successful (39 routes × 2 themes ×
|
|
28
|
+
2 viewports).
|
|
29
|
+
|
|
30
|
+
### Release Tooling
|
|
31
|
+
|
|
32
|
+
- **`scripts/release.mjs` replaced by `scripts/release.ts`.** Script is now
|
|
33
|
+
type-checked as part of the TypeScript codebase.
|
|
34
|
+
|
|
35
|
+
- **`scripts/generate-release-notes.ts`.** New standalone tool that extracts
|
|
36
|
+
a version section from `CHANGELOG.md`, resolves the previous semver tag from
|
|
37
|
+
git history or the changelog, fills the `.github/templates/release-notes.md`
|
|
38
|
+
template, and writes the result to a specified output path. Exposed as
|
|
39
|
+
`npm run release:notes`.
|
|
40
|
+
|
|
41
|
+
- **GitHub Releases now receive populated changelog-driven markdown bodies.**
|
|
42
|
+
The CI release workflow calls `release:notes` and passes the rendered file
|
|
43
|
+
to `gh release create --notes-file`.
|
|
44
|
+
|
|
45
|
+
- **Historical tag support.** `release:notes` can generate notes for any past
|
|
46
|
+
tag (e.g., `v0.8.2`, `v0.8.3`) — useful for backfilling GitHub Release pages.
|
|
47
|
+
|
|
48
|
+
- **Windows-safe `npm pack --dry-run` in `verify:package`.** The `--cache`
|
|
49
|
+
flag now points to a project-local `.npm-cache` directory, avoiding the
|
|
50
|
+
cross-user npm cache permission error that affected `verify:release` on
|
|
51
|
+
Windows CI.
|
|
52
|
+
|
|
53
|
+
### Verification
|
|
54
|
+
|
|
55
|
+
- Engine: typecheck clean, lint:strict 0/0, 1338/1338 tests, `verify:release` green.
|
|
56
|
+
- Site: 494-page build clean, `check-ts` 0 errors / 0 warnings.
|
|
57
|
+
- Screenshot smoke: 36/36. Guide visual matrix: 156/156 captures.
|
|
58
|
+
|
|
7
59
|
## [0.8.3] - 2026-05-10
|
|
8
60
|
|
|
9
61
|
### Engine — Rendering
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codexo/exojs",
|
|
3
3
|
"description": "A TypeScript-first browser 2D runtime for games and interactive apps.",
|
|
4
|
-
"version": "0.8.
|
|
4
|
+
"version": "0.8.4",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist/esm/",
|
|
@@ -45,10 +45,11 @@
|
|
|
45
45
|
"build": "npm run clean && tsx node_modules/rollup/dist/bin/rollup -c",
|
|
46
46
|
"build:watch": "tsx node_modules/rollup/dist/bin/rollup -cw",
|
|
47
47
|
"verify:exports": "tsx ./scripts/verify-exports.ts",
|
|
48
|
-
"verify:package": "npm run build && npm run verify:exports && npm pack --dry-run --ignore-scripts",
|
|
48
|
+
"verify:package": "npm run build && npm run verify:exports && npm pack --dry-run --ignore-scripts --cache ./.npm-cache",
|
|
49
49
|
"sync:example-capabilities": "tsx ./scripts/sync-example-capabilities.ts",
|
|
50
50
|
"verify:release": "npm run typecheck && npm run lint:strict && npm run format:check && npm test && npm run verify:package",
|
|
51
|
-
"release": "
|
|
51
|
+
"release": "tsx ./scripts/release.ts",
|
|
52
|
+
"release:notes": "tsx ./scripts/generate-release-notes.ts",
|
|
52
53
|
"prepack": "npm run build",
|
|
53
54
|
"typecheck": "tsc --noEmit",
|
|
54
55
|
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\" \"examples/**/*.js\"",
|