From ba05e3f7caacb50301c744db746b77b16b494b84 Mon Sep 17 00:00:00 2001 From: Valerii Kovalskii Date: Tue, 21 Jul 2026 17:09:18 +0300 Subject: [PATCH] =?UTF-8?q?chore(release):=207.14.7=20=E2=80=94=20GUI-laun?= =?UTF-8?q?ch=20detection,=20Kiro=20fixes,=20terminal=20fit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ships #263 (repair stripped GUI PATH so agents are detected when launched from Finder/Dock) and #264 (Kiro maxBuffer + ToolUse; robust Workspace terminal fit for large/hi-DPI displays, #259). Co-Authored-By: Claude Opus 4.8 (1M context) --- desktop/package.json | 2 +- package.json | 2 +- src/changelog.js | 10 ++++++++++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/desktop/package.json b/desktop/package.json index 282a232..776f578 100644 --- a/desktop/package.json +++ b/desktop/package.json @@ -1,7 +1,7 @@ { "name": "codbash-desktop", "productName": "codbash", - "version": "7.14.6", + "version": "7.14.7", "private": true, "description": "Desktop shell (Electron) for codbash — wraps the codbash server in a native window.", "main": "main.js", diff --git a/package.json b/package.json index de3625f..fd53865 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codbash-app", - "version": "7.14.6", + "version": "7.14.7", "description": "Dashboard + CLI for AI coding agents — Claude Code, Codex, Cursor, OpenCode, Kiro. View, search, resume, convert, sync sessions.", "bin": { "codbash": "./bin/cli.js", diff --git a/src/changelog.js b/src/changelog.js index 0bc7996..cdd4736 100644 --- a/src/changelog.js +++ b/src/changelog.js @@ -1,6 +1,16 @@ 'use strict'; const CHANGELOG = [ + { + version: '7.14.7', + date: '2026-07-21', + title: 'GUI-launch agent detection, Kiro fixes, terminal fit', + changes: [ + 'Desktop app: Claude/Codex are now detected even when codbash is launched from the GUI (Finder/Dock) with a stripped PATH — the CLI repairs PATH from your login shell on startup (opt out with CODBASH_NO_PATH_REPAIR=1). Thanks @NovakPAai', + 'Kiro: large conversations no longer come back as an empty session list / empty detail (raised the sqlite3 read buffer), and assistant tool-use turns are now shown. Thanks @Sean10', + 'Workspace terminal: fixed full-screen TUIs (e.g. Claude Code) rendering at the wrong width on large / hi-DPI displays — the pane now fits only once it has a real size and re-syncs the pty size on connect', + ], + }, { version: '7.14.6', date: '2026-07-21',