From 9c4841ea07bf3cde7b8ec8e042b3a7102d759156 Mon Sep 17 00:00:00 2001 From: Saoud Rizwan <7799382+saoudrizwan@users.noreply.github.com> Date: Mon, 27 Jul 2026 15:21:49 -0700 Subject: [PATCH] chore(desktop): release v0.0.5 --- apps/examples/desktop-app/CHANGELOG.md | 10 ++++++++++ apps/examples/desktop-app/package.json | 2 +- apps/examples/desktop-app/src-tauri/tauri.conf.json | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/apps/examples/desktop-app/CHANGELOG.md b/apps/examples/desktop-app/CHANGELOG.md index d6f6281b75..165ffbc0e1 100644 --- a/apps/examples/desktop-app/CHANGELOG.md +++ b/apps/examples/desktop-app/CHANGELOG.md @@ -1,5 +1,15 @@ # Cline Code Desktop Changelog +## 0.0.5 + +- Major performance overhaul: the app now feels snappy end-to-end. The animated background renders at a locked 60fps instead of ~10fps, typing in the composer no longer stutters (245 slow keystrokes → 3), streaming responses coalesce updates instead of re-rendering the whole chat per token, and app boot fetches the provider catalog once instead of three times. +- The native folder picker and command execution no longer freeze the app while the sidecar writes session logs or discovers your editor. +- Fixed the composer getting stuck on "Agent is working..." after queued turns finished. +- Added a Cline API key path to onboarding, and you can now cancel a pending browser sign-in instead of being stuck waiting for it. +- Fixed window dragging. +- MCP server cards are now consistent across marketplace views, with a single uninstall action and setup guidance shown on installed servers. +- Fixed agentic compaction silently falling back to basic compaction for OpenAI-Compatible providers, and manual /compact never actually reaching the model when auto-compaction was off. + ## 0.0.4 - Start chatting without opening a project folder — the app now supports workspace-free chat sessions. diff --git a/apps/examples/desktop-app/package.json b/apps/examples/desktop-app/package.json index 8b12cdd208..a8cc8d1af0 100644 --- a/apps/examples/desktop-app/package.json +++ b/apps/examples/desktop-app/package.json @@ -1,6 +1,6 @@ { "name": "@cline/code", - "version": "0.0.4", + "version": "0.0.5", "private": true, "scripts": { "build:ui": "bun -F @cline/ui build", diff --git a/apps/examples/desktop-app/src-tauri/tauri.conf.json b/apps/examples/desktop-app/src-tauri/tauri.conf.json index f481625f54..88d2bf179a 100644 --- a/apps/examples/desktop-app/src-tauri/tauri.conf.json +++ b/apps/examples/desktop-app/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "Cline Code", - "version": "0.0.4", + "version": "0.0.5", "identifier": "bot.cline.app", "build": { "beforeDevCommand": "bun run build:sidecar:bin && bun run dev:web",