From 80a7fdb470d03ab989cc03bdc033946f957cd7d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stig-=C3=98rjan=20Smelror?= Date: Tue, 17 Feb 2026 19:39:20 +0100 Subject: [PATCH] docs(changelog): add v0.2.1 development section with features and fixes --- src/pages/changelog.astro | 54 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/src/pages/changelog.astro b/src/pages/changelog.astro index e00ae7b..6388e34 100644 --- a/src/pages/changelog.astro +++ b/src/pages/changelog.astro @@ -22,6 +22,45 @@ import BaseLayout from '../layouts/BaseLayout.astro'; + +
+
+
+
+
+

v0.2.1

+ TBD +
+ Development +
+ +
+
+

+ + New Features +

+
    +
  • Chunk counting. Added chunk counting and display for write operations tool calls.
  • +
  • Qwen3.5 support. Added support for Qwen3.5 models in Zaguán Coder Daemon.
  • +
+
+ +
+

+ 🐛 + Bug Fixes +

+
    +
  • Fixed a warning message that was too prominent.
  • +
  • Fixed escaped characters showing up in the Blade Terminal.
  • +
+
+
+
+
+
+
@@ -457,6 +496,21 @@ import BaseLayout from '../layouts/BaseLayout.astro'; border: 1px solid var(--color-border); } + .version-development { + border-color: #f59e0b; + background: linear-gradient(135deg, var(--color-bg-elevated) 0%, var(--color-bg) 100%); + } + + .version-development::before { + content: ''; + position: absolute; + top: 0; + left: 0; + width: 4px; + height: 100%; + background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); + } + .badge-development { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); color: var(--color-bg);