pmx-canvas 0.3.1 → 0.3.3
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 +58 -0
- package/dist/canvas/index.js +69 -67
- package/dist/types/cli/agent.d.ts +9 -1
- package/dist/types/cli/daemon.d.ts +17 -0
- package/dist/types/client/nodes/ExtAppFrame.d.ts +22 -1
- package/dist/types/server/server.d.ts +8 -0
- package/docs/RELEASE.md +11 -0
- package/docs/cli.md +10 -1
- package/docs/screenshot.png +0 -0
- package/package.json +1 -1
- package/skills/pmx-canvas/SKILL.md +15 -9
- package/skills/pmx-canvas/references/full-reference.md +7 -0
- package/src/cli/agent.ts +68 -1
- package/src/cli/daemon.ts +39 -7
- package/src/cli/index.ts +21 -1
- package/src/client/nodes/ExtAppFrame.tsx +249 -46
- package/src/server/bundled-skills.ts +5 -1
- package/src/server/canvas-operations.ts +3 -3
- package/src/server/operations/ops/batch.ts +3 -2
- package/src/server/server.ts +73 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,62 @@
|
|
|
3
3
|
All notable changes to `pmx-canvas` are documented here. This project follows
|
|
4
4
|
[Semantic Versioning](https://semver.org/).
|
|
5
5
|
|
|
6
|
+
## [0.3.3] - 2026-07-08
|
|
7
|
+
|
|
8
|
+
### Fixed
|
|
9
|
+
|
|
10
|
+
- App tiles that load while a WebKit host panel is hidden now retry their
|
|
11
|
+
repaint when the panel becomes visible, instead of staying black until a
|
|
12
|
+
manual expand-and-close (0.3.2 report Finding N; best-effort — the manual
|
|
13
|
+
recovery still applies).
|
|
14
|
+
- The WebKit repaint watchdog no longer remount-loops apps that boot without
|
|
15
|
+
sending an initialized handshake.
|
|
16
|
+
- `HEAD` requests to graph and json-render surface URLs now answer like `GET`
|
|
17
|
+
instead of returning 404 (Finding O).
|
|
18
|
+
- `serve status` now reports the pid actually serving the port and marks a
|
|
19
|
+
stale pid file explicitly, instead of the confusing `running: true,
|
|
20
|
+
pidRunning: false` combination after a host adapter respawn (Finding P).
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
|
|
24
|
+
- Black-tile diagnostics: the canvas mirrors its app-recovery trail to the
|
|
25
|
+
server; read it at `GET /api/canvas/debug/ext-app-recovery` when reporting a
|
|
26
|
+
rendering issue from a host panel.
|
|
27
|
+
|
|
28
|
+
## [0.3.2] - 2026-07-08
|
|
29
|
+
|
|
30
|
+
### Added
|
|
31
|
+
|
|
32
|
+
- `canvas_batch` supports `edge.remove` (0.3.1 test-report Finding M) — edge
|
|
33
|
+
cleanup no longer needs a separate `canvas_edge` call.
|
|
34
|
+
- Global `--port <n>` and `--server-url <url>` CLI flags target a specific
|
|
35
|
+
daemon for one invocation (they override `PMX_CANVAS_PORT` /
|
|
36
|
+
`PMX_CANVAS_URL`). Previously `--port` was silently ignored and the command
|
|
37
|
+
hit the default port; an invalid value is now a hard error.
|
|
38
|
+
- CI runs the typecheck and unit suite on Windows and macOS on every push and
|
|
39
|
+
pull request, so platform-specific breakage (like the Windows static-asset
|
|
40
|
+
bug) is caught before release.
|
|
41
|
+
|
|
42
|
+
### Fixed
|
|
43
|
+
|
|
44
|
+
- **Windows: the canvas SPA now boots.** Bundle assets (`/canvas/index.js`,
|
|
45
|
+
`/canvas/global.css`) were rejected by a path check that compared Windows
|
|
46
|
+
backslash paths against a forward-slash template, so every asset returned 404
|
|
47
|
+
and the browser showed "PMX Canvas did not finish booting".
|
|
48
|
+
- Excalidraw/ext-app tiles that went black on canvas reload in WebKit host
|
|
49
|
+
panels (e.g. the GitHub Copilot app) now auto-recover: present-at-load apps
|
|
50
|
+
are remounted through a serialized, boot-aware queue with a watchdog retry,
|
|
51
|
+
instead of a single fixed-delay repaint that re-collided on multi-app boards.
|
|
52
|
+
Rare stragglers still recover via expand-then-close.
|
|
53
|
+
- File and image node titles on Windows now use the file name instead of the
|
|
54
|
+
full backslash path.
|
|
55
|
+
|
|
56
|
+
### Docs
|
|
57
|
+
|
|
58
|
+
- The pmx-canvas skill documents the batch op support list, the
|
|
59
|
+
WebView-before-screenshot requirement, the `query` (not `q`) search
|
|
60
|
+
parameter, and the intent TTL + linked-settle pattern for agent turns.
|
|
61
|
+
|
|
6
62
|
## [0.3.1] - 2026-07-07
|
|
7
63
|
|
|
8
64
|
### Fixed
|
|
@@ -2678,6 +2734,8 @@ otherwise have to discover by trial and error.
|
|
|
2678
2734
|
- Regression coverage for snapshot flat-`id` aliases on both MCP and
|
|
2679
2735
|
HTTP surfaces, plus async / top-level-`await` WebView script bodies.
|
|
2680
2736
|
|
|
2737
|
+
[0.3.3]: https://github.com/pskoett/pmx-canvas/releases/tag/v0.3.3
|
|
2738
|
+
[0.3.2]: https://github.com/pskoett/pmx-canvas/releases/tag/v0.3.2
|
|
2681
2739
|
[0.3.1]: https://github.com/pskoett/pmx-canvas/releases/tag/v0.3.1
|
|
2682
2740
|
[0.3.0]: https://github.com/pskoett/pmx-canvas/releases/tag/v0.3.0
|
|
2683
2741
|
[0.2.7]: https://github.com/pskoett/pmx-canvas/releases/tag/v0.2.7
|