pmx-canvas 0.3.1 → 0.3.2
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 +35 -0
- package/dist/canvas/index.js +65 -65
- package/dist/types/cli/agent.d.ts +9 -1
- package/dist/types/client/nodes/ExtAppFrame.d.ts +9 -1
- package/dist/types/server/server.d.ts +8 -0
- package/docs/cli.md +10 -1
- package/docs/screenshot.png +0 -0
- package/package.json +1 -1
- package/skills/pmx-canvas/SKILL.md +12 -9
- package/skills/pmx-canvas/references/full-reference.md +7 -0
- package/src/cli/agent.ts +68 -1
- package/src/cli/index.ts +21 -1
- package/src/client/nodes/ExtAppFrame.tsx +138 -45
- package/src/server/canvas-operations.ts +3 -3
- package/src/server/operations/ops/batch.ts +3 -2
- package/src/server/server.ts +14 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,40 @@
|
|
|
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.2] - 2026-07-08
|
|
7
|
+
|
|
8
|
+
### Added
|
|
9
|
+
|
|
10
|
+
- `canvas_batch` supports `edge.remove` (0.3.1 test-report Finding M) — edge
|
|
11
|
+
cleanup no longer needs a separate `canvas_edge` call.
|
|
12
|
+
- Global `--port <n>` and `--server-url <url>` CLI flags target a specific
|
|
13
|
+
daemon for one invocation (they override `PMX_CANVAS_PORT` /
|
|
14
|
+
`PMX_CANVAS_URL`). Previously `--port` was silently ignored and the command
|
|
15
|
+
hit the default port; an invalid value is now a hard error.
|
|
16
|
+
- CI runs the typecheck and unit suite on Windows and macOS on every push and
|
|
17
|
+
pull request, so platform-specific breakage (like the Windows static-asset
|
|
18
|
+
bug) is caught before release.
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
|
|
22
|
+
- **Windows: the canvas SPA now boots.** Bundle assets (`/canvas/index.js`,
|
|
23
|
+
`/canvas/global.css`) were rejected by a path check that compared Windows
|
|
24
|
+
backslash paths against a forward-slash template, so every asset returned 404
|
|
25
|
+
and the browser showed "PMX Canvas did not finish booting".
|
|
26
|
+
- Excalidraw/ext-app tiles that went black on canvas reload in WebKit host
|
|
27
|
+
panels (e.g. the GitHub Copilot app) now auto-recover: present-at-load apps
|
|
28
|
+
are remounted through a serialized, boot-aware queue with a watchdog retry,
|
|
29
|
+
instead of a single fixed-delay repaint that re-collided on multi-app boards.
|
|
30
|
+
Rare stragglers still recover via expand-then-close.
|
|
31
|
+
- File and image node titles on Windows now use the file name instead of the
|
|
32
|
+
full backslash path.
|
|
33
|
+
|
|
34
|
+
### Docs
|
|
35
|
+
|
|
36
|
+
- The pmx-canvas skill documents the batch op support list, the
|
|
37
|
+
WebView-before-screenshot requirement, the `query` (not `q`) search
|
|
38
|
+
parameter, and the intent TTL + linked-settle pattern for agent turns.
|
|
39
|
+
|
|
6
40
|
## [0.3.1] - 2026-07-07
|
|
7
41
|
|
|
8
42
|
### Fixed
|
|
@@ -2678,6 +2712,7 @@ otherwise have to discover by trial and error.
|
|
|
2678
2712
|
- Regression coverage for snapshot flat-`id` aliases on both MCP and
|
|
2679
2713
|
HTTP surfaces, plus async / top-level-`await` WebView script bodies.
|
|
2680
2714
|
|
|
2715
|
+
[0.3.2]: https://github.com/pskoett/pmx-canvas/releases/tag/v0.3.2
|
|
2681
2716
|
[0.3.1]: https://github.com/pskoett/pmx-canvas/releases/tag/v0.3.1
|
|
2682
2717
|
[0.3.0]: https://github.com/pskoett/pmx-canvas/releases/tag/v0.3.0
|
|
2683
2718
|
[0.2.7]: https://github.com/pskoett/pmx-canvas/releases/tag/v0.2.7
|