Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
148 changes: 0 additions & 148 deletions .github/workflows/changeset-release.yml

This file was deleted.

2 changes: 1 addition & 1 deletion apps/kilocode-docs/docs/features/browser-use.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Key characteristics:

### Accessing Settings

To change Browser / Computer Use settings in Kilo:
To change Browser / Computer Use settings in Axon:

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

Expand Down
2 changes: 1 addition & 1 deletion apps/kilocode-docs/docs/features/custom-modes.md
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ Regular expressions (`fileRegex`) offer fine-grained control over file editing p
:::tip
**Let Kilo Build Your Regex Patterns**

Instead of writing complex regex manually, ask Kilo:
Instead of writing complex regex manually, ask Axon:

```
Create a regex pattern that matches JavaScript files but excludes test files
Expand Down
Binary file modified jetbrains/plugin/src/main/resources/icons/matterai-ic.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 7 additions & 7 deletions jetbrains/plugin/src/main/resources/icons/matterai-ic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/icons/matterai-ic.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 7 additions & 7 deletions src/assets/icons/matterai-ic.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/core/task/Task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1015,6 +1015,15 @@ export class Task extends EventEmitter<TaskEvents> implements TaskLike {
return
}

// If user rejects a tool/command, don't enqueue the feedback text as a new message
// The feedback is already handled by the tool rejection logic
if (askResponse === "noButtonClicked") {
this.askResponseText = text
this.askResponseImages = images
this.askResponse = askResponse
return
}

// this.askResponse = askResponse kilocode_change
this.askResponseText = text
this.askResponseImages = images
Expand Down
Loading
Loading