From d91cdc5f0c093288350eda0f2e0fa3ff2c199679 Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Fri, 30 Jan 2026 22:02:17 +0100 Subject: [PATCH] docs: add missing changelog entries for v0.50.5..HEAD - tui: add #1095 content shrink fix (by @marckrenn) - tui: add isImageLine perf optimization - coding-agent: cross-package duplication for #1095, #1099 --- packages/coding-agent/CHANGELOG.md | 5 +++++ packages/tui/CHANGELOG.md | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/packages/coding-agent/CHANGELOG.md b/packages/coding-agent/CHANGELOG.md index 21a27d48..55a017fa 100644 --- a/packages/coding-agent/CHANGELOG.md +++ b/packages/coding-agent/CHANGELOG.md @@ -6,6 +6,11 @@ - Added `ctx.getSystemPrompt()` to extension context for accessing the current effective system prompt ([#1098](https://github.com/badlogic/pi-mono/pull/1098) by [@kaofelix](https://github.com/kaofelix)) +### Fixed + +- Fixed empty rows appearing below footer when content shrinks (e.g., closing `/tree`, clearing multi-line editor) ([#1095](https://github.com/badlogic/pi-mono/pull/1095) by [@marckrenn](https://github.com/marckrenn)) +- Fixed terminal cursor remaining hidden after exiting TUI via `stop()` when a render was pending ([#1099](https://github.com/badlogic/pi-mono/pull/1099) by [@haoqixu](https://github.com/haoqixu)) + ## [0.50.5] - 2026-01-30 ## [0.50.4] - 2026-01-30 diff --git a/packages/tui/CHANGELOG.md b/packages/tui/CHANGELOG.md index 57e3ac7c..351a6607 100644 --- a/packages/tui/CHANGELOG.md +++ b/packages/tui/CHANGELOG.md @@ -2,8 +2,13 @@ ## [Unreleased] +### Changed + +- Optimized `isImageLine()` with `startsWith` short-circuit for faster image line detection + ### Fixed +- Fixed empty rows appearing below footer when content shrinks (e.g., closing `/tree`, clearing multi-line editor) ([#1095](https://github.com/badlogic/pi-mono/pull/1095) by [@marckrenn](https://github.com/marckrenn)) - Fixed terminal cursor remaining hidden after exiting TUI via `stop()` when a render was pending ([#1099](https://github.com/badlogic/pi-mono/pull/1099) by [@haoqixu](https://github.com/haoqixu)) ## [0.50.5] - 2026-01-30