diff --git a/apps/kilocode-docs/static/img/boomerang-tasks/Roo-Code-Boomerang-Tasks.mp4 b/apps/kilocode-docs/static/img/boomerang-tasks/Roo-Code-Boomerang-Tasks.mp4 deleted file mode 100644 index 07669d5c58..0000000000 Binary files a/apps/kilocode-docs/static/img/boomerang-tasks/Roo-Code-Boomerang-Tasks.mp4 and /dev/null differ diff --git a/src/package.json b/src/package.json index 1cc5d24f51..3e9a1e9ede 100644 --- a/src/package.json +++ b/src/package.json @@ -3,7 +3,7 @@ "displayName": "%extension.displayName%", "description": "%extension.description%", "publisher": "matterai", - "version": "5.2.3", + "version": "5.2.4", "icon": "assets/icons/matterai-ic.png", "galleryBanner": { "color": "#FFFFFF", diff --git a/webview-ui/src/components/chat/ChatTextArea.tsx b/webview-ui/src/components/chat/ChatTextArea.tsx index e43db07151..72b5442120 100644 --- a/webview-ui/src/components/chat/ChatTextArea.tsx +++ b/webview-ui/src/components/chat/ChatTextArea.tsx @@ -1679,7 +1679,6 @@ export const ChatTextArea = forwardRef( "gap-1", "bg-editor-background", isEditMode ? "px-0" : "px-1.5", - "pb-1", "outline-none", "border-none", isEditMode ? "w-full" : "w-[calc(100%-16px)]", diff --git a/webview-ui/src/components/chat/FollowUpSuggest.tsx b/webview-ui/src/components/chat/FollowUpSuggest.tsx index 6516b10530..1a6d9dead0 100644 --- a/webview-ui/src/components/chat/FollowUpSuggest.tsx +++ b/webview-ui/src/components/chat/FollowUpSuggest.tsx @@ -125,12 +125,12 @@ export const FollowUpSuggest = ({ )} - {suggestion.mode && ( + {/* {suggestion.mode && (
{suggestion.mode}
- )} + )} */}
handleFileClick(file.absolutePath)} title={file.absolutePath}> {/* File Icon */} @@ -288,7 +289,7 @@ ${comment.suggestion} )} {/* Diff Stats */} -
+
+{file.stat?.additions || 0} @@ -298,7 +299,7 @@ ${comment.suggestion}
{/* File Name & Path */} -
+
{fileName} @@ -359,14 +360,26 @@ ${comment.suggestion} )}
{codeReviewResult.reviewComments?.length > 0 && ( - - - {hasKilocodeToken ? "Apply All" : copyButtonText} - + <> + {hasKilocodeToken ? ( +
+ + + + + + Apply All + +
+ ) : ( + + + {copyButtonText} + + )} + )}
@@ -399,18 +412,33 @@ ${comment.suggestion} {getFileName(comment.path)}:{comment.startLine} {comment.endLine !== comment.startLine && `-${comment.endLine}`} - - hasKilocodeToken ? handleApplyFix(index) : handleCopyPrompt(comment) - }> - - {hasKilocodeToken ? "Apply" : "Copy"} - + + {hasKilocodeToken ? ( +
+ handleCopyPrompt(comment)}> + + + handleApplyFix(index)}> + + Apply + +
+ ) : ( + handleCopyPrompt(comment)}> + + Copy + + )} +
+
+
-
{comment.body}
{comment.suggestion && (
= ({ showApiConfig = false } // vscode.postMessage({ type: "showFeedbackOptions" }) // } + const openExternalLink = (url: string) => { + vscode.postMessage({ type: "openExternal", url }) + } + return ( -
+
{showApiConfig && }
- {/*
-
- - -
-
*/} +
+ + + + + + +
) }