Files
vercel-labs--zero-native/changelog.d/README.md
T
Chris Tate b47111069c Native SDK: the complete toolkit for building native desktop apps (#67)
zero-native becomes the Native SDK. Apps are authored as native markup plus Zig on a deterministic runtime and rendered by the toolkit's own engine into real OS windows — no browser, no WebView, no interpreter in the binary.

- Desktop is complete on macOS, Windows, and Linux: native rendering with per-platform titlebar fidelity, audio playback with streaming, a verified track cache, and real spectrum analysis, native context menus, packaging with sealed code signing, and a deterministic automation and record-replay story.
- Experimental iOS and Android host tiers ship behind the same app manifest: simulator and emulator dev loops, archive-ready packaging, real platform tab bars and push navigation, with embedding over the C ABI underneath.
- The docs site, component catalog, theme packs, showcase apps, and CHANGELOG carry the full account.
2026-07-08 18:51:43 -05:00

1.7 KiB

Changelog fragments

Agents and feature branches do not edit CHANGELOG.md directly — concurrent work would conflict on every merge. Instead, each change lands with a small fragment in this directory, and scripts/changelog-merge.sh folds all fragments into the ## Unreleased section of CHANGELOG.md (typically during release prep, see RELEASING.md).

Writing a fragment

Add changelog.d/<slug>.md, where <slug> names your change (e.g. gpu-dashboard-smoke-budget.md). The file holds a bullet or two for one changelog section:

  • The first line starts with a section tag: feature:, improvement:, or fix:, followed by the first bullet's text.
  • Any further lines are additional bullets (start them with - ; bare lines get - prefixed for you).
  • One tag per fragment. A change that touches multiple sections ships multiple fragments.
  • Match the CHANGELOG voice: bold lead-in, then the story. One line per bullet — never hard-wrap.

Example (changelog.d/faster-frobnication.md):

improvement: **Faster frobnication**: the frobnicator now memoizes per-frame, cutting rebuild time ~40% on the kanban example.
- **Frobnication telemetry**: automation snapshots report `frob_cache_hits=`.

Tags map to sections: feature:### New Features, improvement:### Improvements, fix:### Bug Fixes.

Merging

scripts/changelog-merge.sh

appends every fragment's bullets to the end of its section under ## Unreleased (creating the section — or the whole ## Unreleased block — when missing), then deletes the merged fragments. This README.md is never merged or deleted. The script refuses unknown tags loudly instead of guessing.