diff --git a/.changeset/cli-continue-reliability.md b/.changeset/cli-continue-reliability.md deleted file mode 100644 index 1c2f4086752..00000000000 --- a/.changeset/cli-continue-reliability.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@kilocode/cli": patch ---- - -Improve --continue flag reliability by replacing fixed 2-second timeout with Promise-based response handling diff --git a/.changeset/cli-image-text-paste-loader.md b/.changeset/cli-image-text-paste-loader.md deleted file mode 100644 index 28beedc1c4e..00000000000 --- a/.changeset/cli-image-text-paste-loader.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"@kilocode/cli": patch ---- - -Fix missing visual feedback and input blocking during paste operations - -- Display "Pasting image..." loader when pasting images via Cmd+V/Ctrl+V -- Display "Pasting text..." loader when pasting large text (10+ lines) -- Block keyboard input during paste operations to prevent concurrent writes -- Support multiple concurrent paste operations with counter-based tracking diff --git a/cli/CHANGELOG.md b/cli/CHANGELOG.md index 32014a4035d..96257736f58 100644 --- a/cli/CHANGELOG.md +++ b/cli/CHANGELOG.md @@ -1,5 +1,18 @@ # @kilocode/cli +## 0.23.2 + +### Patch Changes + +- [#5141](https://github.com/Kilo-Org/kilocode/pull/5141) [`37a489c`](https://github.com/Kilo-Org/kilocode/commit/37a489c8640afea57384f030c6fd0be7bd58c130) Thanks [@PeterDaveHello](https://github.com/PeterDaveHello)! - Improve --continue flag reliability by replacing fixed 2-second timeout with Promise-based response handling + +- [#5171](https://github.com/Kilo-Org/kilocode/pull/5171) [`49b82ea`](https://github.com/Kilo-Org/kilocode/commit/49b82ea281bf7166c2d1cc830a1e5df909a5fb76) Thanks [@Drilmo](https://github.com/Drilmo)! - Fix missing visual feedback and input blocking during paste operations + + - Display "Pasting image..." loader when pasting images via Cmd+V/Ctrl+V + - Display "Pasting text..." loader when pasting large text (10+ lines) + - Block keyboard input during paste operations to prevent concurrent writes + - Support multiple concurrent paste operations with counter-based tracking + ## 0.23.1 ### Patch Changes diff --git a/cli/package.dist.json b/cli/package.dist.json index 137fcd3adb2..2ef9f5b8323 100644 --- a/cli/package.dist.json +++ b/cli/package.dist.json @@ -1,6 +1,6 @@ { "name": "@kilocode/cli", - "version": "0.23.1", + "version": "0.23.2", "description": "Terminal User Interface for Kilo Code", "type": "module", "main": "index.js", diff --git a/cli/package.json b/cli/package.json index 6f4618c82a9..07c6349961f 100644 --- a/cli/package.json +++ b/cli/package.json @@ -1,6 +1,6 @@ { "name": "@kilocode/cli", - "version": "0.23.1", + "version": "0.23.2", "description": "Terminal User Interface for Kilo Code", "type": "module", "main": "dist/index.js",