From 013b4b63b14942bf8b7d637227acaf839833ba36 Mon Sep 17 00:00:00 2001 From: Oleksandr Ostrovskyi Date: Thu, 26 Mar 2026 01:40:18 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20v1.0.2=20=E2=80=94=20smart=20person=20se?= =?UTF-8?q?arch,=20suppress=20llama.cpp=20logs,=20clean=20demo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - context_who uses FTS search instead of filename matching - llama.cpp logs suppressed via void_logs() - find_file_by_basename handles hyphens/underscores/spaces - Demo tape updated (no 2>/dev/null workarounds) --- CHANGELOG.md | 10 ++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3adfabf..2b4110a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [1.0.2] - 2026-03-26 + +### Fixed +- **Person search uses FTS** — `context who` now finds person notes via full-text search instead of exact filename matching. Handles hyphens, underscores, any vault structure. Prefers People folder → `person` tag → fuzzy filename. +- **llama.cpp logs suppressed** — `backend.void_logs()` silences Metal/model loading output. Clean terminal output by default. +- **Basename resolution** — `find_file_by_basename` normalizes hyphens/underscores/spaces for cross-format matching. + +### Changed +- Re-recorded demo GIF with v1.0.2 brew binary (clean output, no `2>/dev/null` workarounds) + ## [1.0.1] - 2026-03-26 ### Changed diff --git a/Cargo.lock b/Cargo.lock index 82fcc72..2cc55a9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -616,7 +616,7 @@ dependencies = [ [[package]] name = "engraph" -version = "1.0.1" +version = "1.0.2" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index c6acea6..ebf5433 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "engraph" -version = "1.0.1" +version = "1.0.2" edition = "2024" description = "Local knowledge graph for AI agents. Hybrid search + MCP server for Obsidian vaults." license = "MIT"