Releases: inkeep/open-knowledge
Release list
v0.31.0-beta.0
Delta since previous beta (v0.30.1-beta.8) — 1 new changeset.
Minor Changes
-
Share links for a branch you don't have checked out now default to opening in a worktree. The branch-mismatch dialog's primary action, "Open in worktree", creates (or reuses) the branch's worktree under
.ok/worktrees/<branch>and opens it in its own window at the shared doc or folder — your current checkout, branch, and uncommitted changes stay exactly where they were. Switching the current window's branch is still available as "Switch to<branch>", with unchanged behavior including the post-checkout navigation gate.This also un-dead-ends the dirty-conflict case: where uncommitted changes used to block the share entirely ("commit or stash, then open the link again"), the worktree action now works immediately. The share branch resolves wherever it lives — an existing local branch, a remote-tracking ref, or never fetched, in which case a bounded
git fetch origin <branch>(15s cap, no credential prompts) runs first. Failures stay honest: a branch deleted upstream dismisses the dialog with the existing "no longer exists" notice, a connection failure keeps it open so you can retry or pick another action, and the new window inherits the target-existence check, so a stale branch shows the honest missing-target panel instead of silently creating an empty doc. New worktrees appear in the worktree switcher immediately.
v0.30.1-beta.8
Delta since previous beta (v0.30.1-beta.7) — 1 new changeset.
Patch Changes
- Fixes Backspace/Delete merges at nested list-item boundaries (#609). Backspace at the start of an item whose previous sibling has a nested sublist no longer lifts the item out of the list as a bare paragraph with no bullet or checkbox, and forward Delete at the end of a nested item before a shallower item no longer re-nests that item at the wrong depth or silently drops its checkbox. Both fixes cover the Mod-Backspace/Mod-Delete variants; flat-list merges, first-item lift-out, and autoformat undo behavior are unchanged. Supersedes and credits #613 by @blokboy.
v0.30.1-beta.7
Delta since previous beta (v0.30.1-beta.6) — 1 new changeset.
Patch Changes
- Fix the
[[wiki-link suggestion box silently freezing when a folder and a note share a name. The search index keyed every entry aspage:<name>, so a folderwikiand a notewiki.mdcollided onpage:wiki; the index rejected the duplicate key and the uncaught error killed the typeahead, leaving the dropdown stuck on the same initial results no matter what you typed. Entries are now keyed by their true kind (folder:,page:,file:), folders and assets are explicitly included in the corpus, and results map back to notes by the full kind-qualified key so a folder can't stand in for a same-named note.
v0.30.1-beta.6
Delta since previous beta (v0.30.1-beta.5) — 1 new changeset.
Patch Changes
- External links now reliably open in your OS default browser on desktop.
Clicking an http(s) link in the visual editor, source mode, or a wiki-link
chip previously could open another Open Knowledge window rendering the page
— most visibly in windows created after a server restart. Link clicks now
route straight through the desktop bridge, and the window-level safety net
is attached to every editor window (including the server-restart recreate
path), so external URLs land in your browser everywhere. Web behavior is
unchanged (links still open in a new tab).
v0.30.1-beta.5
Delta since previous beta (v0.30.1-beta.4) — 1 new changeset.
Patch Changes
- Preserve agent-authored byte-forms through WYSIWYG edits in the same block. Blockquote lazy continuations now round-trip via a
'lazy'marker-spacing capture, tight ATX heading-paragraph adjacency round-trips via the existing contiguity attribute, and Observer A's map-driven splice narrows into an edited blockquote, list, or list item so untouched sibling children keep their source bytes (including blank-line runs inside list items).
v0.30.1-beta.4
Delta since previous beta (v0.30.1-beta.3) — 1 new changeset.
Patch Changes
- Remember each project's window position across opens and relaunches. Reopening a project now restores its editor window to the exact frame it last had — same display, same position, same size, including maximized / full-screen state — instead of the cascade default; cascade remains the fallback for projects with no memory or whose remembered display is no longer connected. The desktop also tracks which project window was most recently focused: a post-update relaunch reopens every window at its old position and brings the window you were actually working in back to the front, and a normal cold start reopens the project you were last in rather than the one you happened to open last. Focus tracking freezes the moment shutdown begins, so the window-close cascade during quit or update install can't mislabel "last active" with whichever window closed last.
v0.30.1-beta.3
Delta since previous beta (v0.30.1-beta.2) — 1 new changeset.
Patch Changes
New file,New folder, and template creation from sidebar menus now keep the inline name field focused, so you can rename the item instead of immediately committing its default name.
v0.30.1-beta.2
Delta since previous beta (v0.30.1-beta.1) — 1 new changeset.
Patch Changes
- Terminal CLI launch rows now reflect what's installed. Across every
launch surface — the header / tab-strip "New chat", the "Ask X" composer
button, and the "Open with AI" menus — the docked-terminal CLI rows are gated
on a PATH-detection probe, so you only see the CLIs you actually have (e.g. no
Codex or Cursor-agent row when they aren't on PATH). Claude always keeps its
row as an install anchor. The gate fails open: a CLI whose install state is
still unknown (probe pending, probe failure, or an older desktop bridge) stays
visible rather than being silently dropped, so a probe miss never hides a CLI
you have installed.
v0.30.1-beta.1
Delta since previous beta (v0.30.1-beta.0) — 1 new changeset.
Patch Changes
- Fix: the code-block chrome's Ask AI now grounds the composer with the
selected block's fenced source on first click, matching the second-click and
text-selection Ask AI paths. Previously, when no terminal was live, the
composer opened with an empty pill and the receiving agent got no passage.
v0.30.1
0.30.1
Stable promotion of beta v0.30.1-beta.0.
Aggregated changes since previous stable:
0.30.1-beta.0
Patch Changes
- Add
ok embeddings set-url <url>/ok embeddings clear-urlto configure the semantic-search embeddings endpoint from the CLI (for headless / CI users), and validate the endpoint URL inline in Settings → This project → Search. Both the CLI and the Settings field now reject a guaranteed-to-fail endpoint at entry — a malformed URL, or a plaintexthttp://host other than localhost — using the same rule the server enforces before it will send the API key, instead of letting a bad value degrade silently to lexical search later.