mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-20 04:11:10 -05:00
Refactor assets
This commit is contained in:
@@ -39,4 +39,4 @@ webview-ui/node_modules/**
|
|||||||
!src/integrations/theme/default-themes/**
|
!src/integrations/theme/default-themes/**
|
||||||
|
|
||||||
# Include icons
|
# Include icons
|
||||||
!icons/**
|
!assets/icons/**
|
||||||
|
Before Width: | Height: | Size: 7.8 KiB After Width: | Height: | Size: 7.8 KiB |
|
Before Width: | Height: | Size: 718 B After Width: | Height: | Size: 718 B |
|
Before Width: | Height: | Size: 689 B After Width: | Height: | Size: 689 B |
@@ -3,7 +3,7 @@
|
|||||||
"displayName": "Cline (prev. Claude Dev)",
|
"displayName": "Cline (prev. Claude Dev)",
|
||||||
"description": "Autonomous coding agent right in your IDE, capable of creating/editing files, executing commands, and more with your permission every step of the way.",
|
"description": "Autonomous coding agent right in your IDE, capable of creating/editing files, executing commands, and more with your permission every step of the way.",
|
||||||
"version": "1.9.7",
|
"version": "1.9.7",
|
||||||
"icon": "icons/icon.png",
|
"icon": "assets/icons/icon.png",
|
||||||
"galleryBanner": {
|
"galleryBanner": {
|
||||||
"color": "#FFECA7",
|
"color": "#FFECA7",
|
||||||
"theme": "light"
|
"theme": "light"
|
||||||
|
|||||||
@@ -66,8 +66,8 @@ export function activate(context: vscode.ExtensionContext) {
|
|||||||
// TODO: use better svg icon with light and dark variants (see https://stackoverflow.com/questions/58365687/vscode-extension-iconpath)
|
// TODO: use better svg icon with light and dark variants (see https://stackoverflow.com/questions/58365687/vscode-extension-iconpath)
|
||||||
|
|
||||||
panel.iconPath = {
|
panel.iconPath = {
|
||||||
light: vscode.Uri.joinPath(context.extensionUri, "icons", "robot_panel_light.png"),
|
light: vscode.Uri.joinPath(context.extensionUri, "assets", "icons", "robot_panel_light.png"),
|
||||||
dark: vscode.Uri.joinPath(context.extensionUri, "icons", "robot_panel_dark.png"),
|
dark: vscode.Uri.joinPath(context.extensionUri, "assets", "icons", "robot_panel_dark.png"),
|
||||||
}
|
}
|
||||||
tabProvider.resolveWebviewView(panel)
|
tabProvider.resolveWebviewView(panel)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user