@patterkit/runtime 0.3.0 → 0.4.0
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 +19 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -17,6 +17,25 @@ version number always means the same runtime behaviour. This package is versione
|
|
|
17
17
|
|
|
18
18
|
## [Unreleased]
|
|
19
19
|
|
|
20
|
+
## [0.4.0] - 2026-07-30
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
- **State logger** (parity: previously JS-only). Watches the mutable runtime state - `@patter`
|
|
24
|
+
globals, per-scene `@scene` props, and visit counts (shared + per-flow) - and reports what changed
|
|
25
|
+
between captures, plus a per-step trace including `gameData`. Built on the engine's save-game, so
|
|
26
|
+
what the logger sees is exactly what a save persists. Identical flattened-path and line format on
|
|
27
|
+
every runtime.
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
- The download now includes the **MIT `LICENSE` file**; previously the zip shipped with no licence
|
|
31
|
+
text at all.
|
|
32
|
+
|
|
33
|
+
## [0.3.1] - 2026-07-22
|
|
34
|
+
|
|
35
|
+
### Changed
|
|
36
|
+
- Version bump only, to keep the four Patterplay runtimes in lockstep. This release fixes
|
|
37
|
+
Unreal-only build issues (see the Unreal changelog and #25); the JavaScript runtime is unchanged.
|
|
38
|
+
|
|
20
39
|
## [0.3.0] - 2026-07-21
|
|
21
40
|
|
|
22
41
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@patterkit/runtime",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Patter reference runtime: load a bundle and play dialogue - flows, selectors, choices, jumps, effects, properties. Built on @wildwinter/expr + scoperegistry.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|