Skip to content

Commit 739a7e0

Browse files
committed
Refactor assets
1 parent 1ddd702 commit 739a7e0

6 files changed

+4
-4
lines changed

.vscodeignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ webview-ui/node_modules/**
3939
!src/integrations/theme/default-themes/**
4040

4141
# Include icons
42-
!icons/**
42+
!assets/icons/**
File renamed without changes.
File renamed without changes.
File renamed without changes.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Cline (prev. Claude Dev)",
44
"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.",
55
"version": "1.9.7",
6-
"icon": "icons/icon.png",
6+
"icon": "assets/icons/icon.png",
77
"galleryBanner": {
88
"color": "#FFECA7",
99
"theme": "light"

src/extension.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ export function activate(context: vscode.ExtensionContext) {
6666
// TODO: use better svg icon with light and dark variants (see https://stackoverflow.com/questions/58365687/vscode-extension-iconpath)
6767

6868
panel.iconPath = {
69-
light: vscode.Uri.joinPath(context.extensionUri, "icons", "robot_panel_light.png"),
70-
dark: vscode.Uri.joinPath(context.extensionUri, "icons", "robot_panel_dark.png"),
69+
light: vscode.Uri.joinPath(context.extensionUri, "assets", "icons", "robot_panel_light.png"),
70+
dark: vscode.Uri.joinPath(context.extensionUri, "assets", "icons", "robot_panel_dark.png"),
7171
}
7272
tabProvider.resolveWebviewView(panel)
7373

0 commit comments

Comments
 (0)