Skip to content

Commit becd13b

Browse files
authored
Release v5.2.1 (#34)
* cleanup * Fix: Don't queue messages after rejecting exec_cmd tool When rejecting a tool/command (like exec_cmd), the sendingDisabled state was being set to true, which caused subsequent messages to be queued instead of sent directly. This fix excludes tool/command rejection cases from setting sendingDisabled, allowing normal message flow after rejection. * i18n: update translations and add memories locale files - Update translations across all supported languages - Add new memories.json locale files for webview-ui - Update documentation for browser-use and custom-modes features - Remove deprecated changeset-release workflow - Update terminal command generator tests
1 parent edf2e34 commit becd13b

File tree

126 files changed

+1639
-543
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

126 files changed

+1639
-543
lines changed

.github/workflows/changeset-release.yml

Lines changed: 0 additions & 148 deletions
This file was deleted.

apps/kilocode-docs/docs/features/browser-use.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Key characteristics:
7676

7777
### Accessing Settings
7878

79-
To change Browser / Computer Use settings in Kilo:
79+
To change Browser / Computer Use settings in Axon:
8080

8181
1. Open Settings by clicking the gear icon <Codicon name="gear" /> → Browser / Computer Use
8282

apps/kilocode-docs/docs/features/custom-modes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ Regular expressions (`fileRegex`) offer fine-grained control over file editing p
372372
:::tip
373373
**Let Kilo Build Your Regex Patterns**
374374

375-
Instead of writing complex regex manually, ask Kilo:
375+
Instead of writing complex regex manually, ask Axon:
376376

377377
```
378378
Create a regex pattern that matches JavaScript files but excludes test files
-1.9 KB
Loading
Lines changed: 7 additions & 7 deletions
Loading

src/assets/icons/matterai-ic.png

-1.9 KB
Loading

src/assets/icons/matterai-ic.svg

Lines changed: 7 additions & 7 deletions
Loading

src/core/task/Task.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1015,6 +1015,15 @@ export class Task extends EventEmitter<TaskEvents> implements TaskLike {
10151015
return
10161016
}
10171017

1018+
// If user rejects a tool/command, don't enqueue the feedback text as a new message
1019+
// The feedback is already handled by the tool rejection logic
1020+
if (askResponse === "noButtonClicked") {
1021+
this.askResponseText = text
1022+
this.askResponseImages = images
1023+
this.askResponse = askResponse
1024+
return
1025+
}
1026+
10181027
// this.askResponse = askResponse kilocode_change
10191028
this.askResponseText = text
10201029
this.askResponseImages = images

0 commit comments

Comments
 (0)