@evenrealities/evenhub-simulator 0.7.2 → 0.7.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.
Files changed (2) hide show
  1. package/README.md +6 -1
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -150,7 +150,7 @@ Base URL: `http://127.0.0.1:<PORT>`
150
150
  |----------|----------------------------|----------------------------------------------------------------------|
151
151
  | `GET` | `/api/ping` | Health check, returns `pong`. |
152
152
  | `GET` | `/api/screenshot/glasses` | Current glasses framebuffer as an RGBA PNG (576×288). |
153
- | `GET` | `/api/screenshot/webview` | Screenshot of the main webview (via html2canvas) as PNG. |
153
+ | `GET` | `/api/screenshot/webview` | Screenshot of the main webview as PNG (Linux uses WebKitGTK snapshot; macOS uses WKWebView snapshot; Windows uses WebView2 CapturePreview). |
154
154
  | `GET` | `/api/console` | Captured webview `console.*` output, uncaught errors, failed fetches. Supports `?since_id=<N>` for incremental polling. |
155
155
  | `DELETE` | `/api/console` | Clears the console buffer. |
156
156
  | `POST` | `/api/input` | Send a glasses touchpad action. JSON body: `{ "action": "up" \| "down" \| "click" \| "double_click" }`. |
@@ -167,6 +167,11 @@ Notes:
167
167
 
168
168
  # Changelog
169
169
 
170
+ ## v0.7.3 (2026-04-18)
171
+
172
+ - Fix `/api/screenshot/webview` returning blank images in some cases, now using native webview capture paths on each desktop platform
173
+ - Fix: constraint list item text size to be maximum 63 bytes and 20 items
174
+
170
175
  ## v0.7.2 (2026-04-15)
171
176
 
172
177
  - Improved emoji rendering support (including previously missing emoji characters).
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@evenrealities/evenhub-simulator",
3
- "version": "0.7.2",
3
+ "version": "0.7.3",
4
4
  "description": "EvenHub glasses app simulator",
5
5
  "bin": {
6
6
  "evenhub-simulator": "bin/index.js"
7
7
  },
8
8
  "optionalDependencies": {
9
- "@evenrealities/sim-darwin-arm64": "0.7.2",
10
- "@evenrealities/sim-darwin-x64": "0.7.2",
11
- "@evenrealities/sim-linux-x64": "0.7.2",
12
- "@evenrealities/sim-win32-x64": "0.7.2"
9
+ "@evenrealities/sim-darwin-arm64": "0.7.3",
10
+ "@evenrealities/sim-darwin-x64": "0.7.3",
11
+ "@evenrealities/sim-linux-x64": "0.7.3",
12
+ "@evenrealities/sim-win32-x64": "0.7.3"
13
13
  },
14
14
  "license": "MIT"
15
15
  }