From 5baed2ad0823ff86908e014eb56df16a347482d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stig-=C3=98rjan=20Smelror?= Date: Sun, 15 Feb 2026 10:36:46 +0100 Subject: [PATCH] docs(changelog): add entries for reasoning blocks and caret sync fixes --- src/pages/changelog.astro | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pages/changelog.astro b/src/pages/changelog.astro index 076b4cb..e8b66de 100644 --- a/src/pages/changelog.astro +++ b/src/pages/changelog.astro @@ -71,6 +71,8 @@ import BaseLayout from '../layouts/BaseLayout.astro';
  • Modernized title bar buttons. Updated window controls to compact rounded buttons with tighter spacing and better active feedback. Files: TitleBar.tsx
  • Terminal too close to sidebar shadow. Increased left padding in terminal content area. Files: TerminalPane.tsx
  • Fixed crash in read_file_range on out-of-bounds slice. Added bounds clamping to prevent panic when requesting lines beyond EOF (e.g., start_line: 350 on a 259-line file). Now returns safe empty output for extreme or inverted ranges instead of crashing.
  • +
  • Fixed reasoning blocks being dropped during final answer transition. Changed filter logic to preserve reasoning blocks when clearing stale text content. Files: useChat.ts
  • +
  • Fixed caret sync issues in Command Center textarea. Added shared autosize helper for consistent height updates and implemented explicit Shift+Enter newline insertion with proper caret position restoration. Files: CommandCenter.tsx