fix(settings): show uteke server version in Connections + bun build hooks#186
Merged
Conversation
- ConnectionManager: the per-connection health line now shows the uteke server version (from /health, already fetched into HealthInfo.version) e.g. "✓ Healthy · uteke v0.9.0 — 12ms". Previously only latency showed. - tauri.conf.json: beforeDevCommand/beforeBuildCommand switched from `npm run` to `bun run`, matching the project's bun tooling preference. Verified: svelte-check (0 err), vitest (61), bun build.
🔍 Cora AI Code Review✅ No issues found. Code looks good! Review powered by cora-cli · BYOK · MIT |
Merged
ajianaz
added a commit
that referenced
this pull request
Jul 21, 2026
* chore(release): v0.3.3 Patch release — auto-update now works, unified search, HTTP-only version gate, server version in Settings, bun tooling. - bump version 0.3.2 → 0.3.3 (package.json, Cargo.toml, Cargo.lock, tauri.conf.json) - CHANGELOG entry Contents (since v0.3.2): - Added: unified search across memories + documents — "Memories | All" toggle (#184, #185) - Fixed: auto-update — generates latest.json manifest (workaround tauri-action#1098 that left every release since v0.2.0 without it) (#187) - Changed: version detection fully HTTP-only (#183); uteke server version in Settings → Connections (#186); tooling switched to bun (#186, #187) Verified: cargo fmt/clippy(-D warnings)/test (18), svelte-check (0 err), vitest (61), npm build. * feat(settings): make codecora.dev clickable (opens in browser) The "codecora.dev" line under CorIn vX.Y.Z in the Settings sidebar is now a link — clicking opens https://codecora.dev in the system browser via @tauri-apps/plugin-shell (preventDefault + shellOpen), matching how DocumentsView handles external links. Accessible (real href) + hover style.
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Two smoke-test follow-ups:
1. Server version in Settings → Connections — the per-connection health line now shows the uteke server version from
/health(already fetched intoHealthInfo.version, just not rendered):✓ Healthy · uteke v0.9.0 — 12ms. uteke-serve has reportedversionin/healthsince 0.7.2 (#636).2. bun build hooks —
tauri.conf.jsonbeforeDevCommand/beforeBuildCommandswitched fromnpm run→bun run, matching the project tooling (bun, not npm/pnpm).Verified: svelte-check (0 err), vitest (61),
bun build.Note:
bunx svelte-checkcurrently crashes on a noderequireinterop issue — run svelte-check via node (npx svelte-check) for type-checking. (Separate from this PR.)