Skip to content

Commit c70594b

Browse files
committed
Release
1 parent e43b1a2 commit c70594b

File tree

5 files changed

+18
-16
lines changed

5 files changed

+18
-16
lines changed

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# Roo Cline Changelog
22

3-
## 2.1.21
3+
## [2.2.0]
4+
5+
- Incorporate MCP changes from Cline 2.2.0
46

5-
### Patch Changes
7+
## [2.1.21]
68

7-
- 8dbd019: Larger Promp Text Input
9+
- Larger text area input + ability to drag images into it
810

911
## [2.1.20]
1012

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Roo Cline",
44
"description": "A fork of Cline, an autonomous coding agent, with some added experimental configuration and automation features.",
55
"publisher": "RooVeterinaryInc",
6-
"version": "2.1.21",
6+
"version": "2.2.0",
77
"icon": "assets/icons/rocket.png",
88
"galleryBanner": {
99
"color": "#617A91",
@@ -70,10 +70,10 @@
7070
"icon": "$(add)"
7171
},
7272
{
73-
"command": "roo-cline.mcpButtonClicked",
74-
"title": "MCP Servers",
75-
"icon": "$(server)"
76-
},
73+
"command": "roo-cline.mcpButtonClicked",
74+
"title": "MCP Servers",
75+
"icon": "$(server)"
76+
},
7777
{
7878
"command": "roo-cline.historyButtonClicked",
7979
"title": "History",
@@ -103,10 +103,10 @@
103103
"when": "view == roo-cline.SidebarProvider"
104104
},
105105
{
106-
"command": "roo-cline.mcpButtonClicked",
107-
"group": "navigation@2",
108-
"when": "view == roo-cline.SidebarProvider"
109-
},
106+
"command": "roo-cline.mcpButtonClicked",
107+
"group": "navigation@2",
108+
"when": "view == roo-cline.SidebarProvider"
109+
},
110110
{
111111
"command": "roo-cline.historyButtonClicked",
112112
"group": "navigation@3",

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export function activate(context: vscode.ExtensionContext) {
5454
)
5555

5656
context.subscriptions.push(
57-
vscode.commands.registerCommand("cline.mcpButtonClicked", () => {
57+
vscode.commands.registerCommand("roo-cline.mcpButtonClicked", () => {
5858
sidebarProvider.postMessageToWebview({ type: "action", action: "mcpButtonClicked" })
5959
}),
6060
)

webview-ui/src/components/chat/Announcement.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const Announcement = ({ version, hideAnnouncement }: AnnouncementProps) => {
3030
<span className="codicon codicon-close"></span>
3131
</VSCodeButton>
3232
<h3 style={{ margin: "0 0 8px" }}>
33-
🎉{" "}New in v{minorVersion}
33+
🎉{" "}New in Cline v{minorVersion}
3434
</h3>
3535
<p style={{ margin: "5px 0px", fontWeight: "bold" }}>Add custom tools to Cline using MCP!</p>
3636
<p style={{ margin: "5px 0px" }}>

0 commit comments

Comments
 (0)