You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(examples): fix missing group buttons in contact form and require explicit CLI args
- Add ensureGroupButtons() to cb-contact-form that reads groups from
the sidebar when the form is dynamically created (not SSR'd), fixing
the empty group selector in Add/Edit Contact views
- Remove hello-world fallback defaults from electron and node
integrations; both now require explicit dist-dir and state path
args, printing usage on missing args
- Remove electron dependency from contact-book-manager; Electron is
launched from integration/electron by passing app dist/state paths
- Update READMEs to reflect required args and removed electron section
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
The `src/electron/` directory contains an optional desktop wrapper. It uses the `webui-node` native addon to render `protocol.bin` + `state.json` into HTML, then serves it via a custom `webui://` protocol scheme inside an Electron `BrowserWindow`.
200
-
201
-
To use it, build the native addon first:
202
-
203
-
```bash
204
-
cargo build -p webui-node --release
205
-
```
206
-
207
-
The Electron entry point is not part of the standard web build — it is an alternative deployment target that reuses the same SSR binary and client JS bundle.
0 commit comments