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
Desktop uses tauri-plugin-updater to check GitHub Releases on startup,
show an install banner, and expose a manual "Check for updates" button
in Settings. The app version is shown in every layout header.
CLI runs a fire-and-forget update check against the GitHub releases API
at startup and prints an upgrade hint if a newer release exists.
Release workflow now produces signed updater bundles, collects
per-platform signatures, and publishes a merged latest.json alongside
the release assets.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: ARCHITECTURE.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -83,3 +83,24 @@ Events are persisted to disk as JSONL for session replay.
83
83
- The frontend can reliably prefix-match tool paths against `{project_dir}/.ralph/{branch}-worktree` for display shortening
84
84
85
85
The frontend's `shortenPath` replaces the worktree prefix with `⌂` for compact display. This uses case-insensitive matching with backslash normalization for Windows compatibility.
86
+
87
+
## Auto-update
88
+
89
+
Both frontends notify the user when a newer release is published:
90
+
91
+
-**Desktop** uses `tauri-plugin-updater`. On startup it fetches
0 commit comments