Allow Roo-Cline to coexist with Cline (#23)

Co-authored-by: ColemanRoo <michael.coleman@roo.vet>
This commit is contained in:
Matt Rubens
2024-11-28 14:25:41 -05:00
committed by GitHub
parent cc3186c88f
commit cafc2852ca
6 changed files with 33 additions and 32 deletions

View File

@@ -3,9 +3,9 @@
"displayName": "Roo Cline",
"description": "Autonomous coding agent right in your IDE, capable of creating/editing files, running commands, using the browser, and more with your permission every step of the way.",
"publisher": "RooVeterinaryInc",
"version": "2.1.3",
"version": "2.1.4",
"files": [
"bin/roo-cline-2.1.3.vsix",
"bin/roo-cline-2.1.4.vsix",
"assets/icons/icon_Roo.png"
],
"icon": "assets/icons/icon_Roo.png",
@@ -51,69 +51,69 @@
"viewsContainers": {
"activitybar": [
{
"id": "claude-dev-ActivityBar",
"title": "Cline",
"id": "roo-cline-ActivityBar",
"title": "Roo Cline",
"icon": "$(robot)"
}
]
},
"views": {
"claude-dev-ActivityBar": [
"roo-cline-ActivityBar": [
{
"type": "webview",
"id": "claude-dev.SidebarProvider",
"id": "roo-cline.SidebarProvider",
"name": ""
}
]
},
"commands": [
{
"command": "cline.plusButtonClicked",
"command": "roo-cline.plusButtonClicked",
"title": "New Task",
"icon": "$(add)"
},
{
"command": "cline.historyButtonClicked",
"command": "roo-cline.historyButtonClicked",
"title": "History",
"icon": "$(history)"
},
{
"command": "cline.popoutButtonClicked",
"command": "roo-cline.popoutButtonClicked",
"title": "Open in Editor",
"icon": "$(link-external)"
},
{
"command": "cline.settingsButtonClicked",
"command": "roo-cline.settingsButtonClicked",
"title": "Settings",
"icon": "$(settings-gear)"
},
{
"command": "cline.openInNewTab",
"command": "roo-cline.openInNewTab",
"title": "Open In New Tab",
"category": "Cline"
"category": "Roo Cline"
}
],
"menus": {
"view/title": [
{
"command": "cline.plusButtonClicked",
"command": "roo-cline.plusButtonClicked",
"group": "navigation@1",
"when": "view == claude-dev.SidebarProvider"
"when": "view == roo-cline.SidebarProvider"
},
{
"command": "cline.historyButtonClicked",
"command": "roo-cline.historyButtonClicked",
"group": "navigation@2",
"when": "view == claude-dev.SidebarProvider"
"when": "view == roo-cline.SidebarProvider"
},
{
"command": "cline.popoutButtonClicked",
"command": "roo-cline.popoutButtonClicked",
"group": "navigation@3",
"when": "view == claude-dev.SidebarProvider"
"when": "view == roo-cline.SidebarProvider"
},
{
"command": "cline.settingsButtonClicked",
"command": "roo-cline.settingsButtonClicked",
"group": "navigation@4",
"when": "view == claude-dev.SidebarProvider"
"when": "view == roo-cline.SidebarProvider"
}
]
}
@@ -136,7 +136,7 @@
"start:webview": "cd webview-ui && npm run start",
"build:webview": "cd webview-ui && npm run build",
"test:webview": "cd webview-ui && npm run test",
"publish:marketplace": "vsce publish && ovsx publish"
"publish:marketplace": "vsce publish"
},
"devDependencies": {
"@types/diff": "^5.2.1",