@ammduncan/easel 0.4.0 → 0.4.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.
- package/CHANGELOG.md +5 -0
- package/dist/client/viewer.js +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to easel. This project adheres to [Semantic Versioning](https://semver.org/).
|
|
4
4
|
|
|
5
|
+
## 0.4.1 — 2026-05-26
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
- **App-fidelity pushes (`kind:"app"`/`"mockup"`) can now be exported — they were silently hanging.** The 0.3.3 export fix (toSvg-based, rAF-free bridge) was only wired into `buildDefaultWrapper`'s *normal* branch and `injectBridge`. `buildDefaultWrapper` returns early for app-fidelity with a separate template, and that branch loaded the html-to-image CDN but never injected the `imageExportScript` bridge — so `kind:"app"`/`"mockup"` cards had **no `easel:image` handler at all**. Clicking export posted a message nothing listened for; the push never reported back and the 30s watchdog fired ("Export timed out…"). The bridge is now injected into the app-fidelity branch too. The `image-export` regression test now asserts the bridge is referenced by **both** `buildDefaultWrapper` branches plus `injectBridge`, so no single render path can lose it again. Verified live: an app-fidelity auth mockup that timed out now exports in ~0.5s.
|
|
9
|
+
|
|
5
10
|
## 0.4.0 — 2026-05-26
|
|
6
11
|
|
|
7
12
|
### Added
|
package/dist/client/viewer.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ammduncan/easel",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "A live browser tab for every Claude Code (and MCP) session. The push MCP tool appends HTML cards to a scrolling feed you keep open in split-screen.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|