mirror of
https://github.com/andrepimenta/claude-code-chat.git
synced 2025-12-08 22:59:44 +00:00
Modify icon and name
This commit is contained in:
BIN
icon-bubble.png
Normal file
BIN
icon-bubble.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 469 KiB |
BIN
icon.png
BIN
icon.png
Binary file not shown.
|
Before Width: | Height: | Size: 689 KiB After Width: | Height: | Size: 689 KiB |
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "claude-code-chat",
|
"name": "claude-code-chat",
|
||||||
"displayName": "Claude Code Chat",
|
"displayName": "Chat for Claude Code",
|
||||||
"description": "Beautiful Claude Code Chat Interface for VS Code",
|
"description": "Beautiful Claude Code Chat Interface for VS Code",
|
||||||
"version": "1.0.7",
|
"version": "1.0.7",
|
||||||
"publisher": "AndrePimenta",
|
"publisher": "AndrePimenta",
|
||||||
@@ -56,7 +56,7 @@
|
|||||||
"command": "claude-code-chat.openChat",
|
"command": "claude-code-chat.openChat",
|
||||||
"title": "Open Claude Code Chat",
|
"title": "Open Claude Code Chat",
|
||||||
"category": "Claude Code Chat",
|
"category": "Claude Code Chat",
|
||||||
"icon": "icon.png"
|
"icon": "icon-bubble.png"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"keybindings": [
|
"keybindings": [
|
||||||
@@ -133,7 +133,7 @@
|
|||||||
"type": "webview",
|
"type": "webview",
|
||||||
"name": "Claude Code Chat",
|
"name": "Claude Code Chat",
|
||||||
"when": "true",
|
"when": "true",
|
||||||
"icon": "icon.png",
|
"icon": "icon-bubble.png",
|
||||||
"contextualTitle": "Claude Code Chat"
|
"contextualTitle": "Claude Code Chat"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
@@ -143,7 +143,7 @@
|
|||||||
{
|
{
|
||||||
"id": "claude-code-chat",
|
"id": "claude-code-chat",
|
||||||
"title": "Claude Code Chat",
|
"title": "Claude Code Chat",
|
||||||
"icon": "icon.png"
|
"icon": "icon-bubble.png"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -174,7 +174,7 @@ class ClaudeChatProvider {
|
|||||||
);
|
);
|
||||||
|
|
||||||
// Set icon for the webview tab using URI path
|
// Set icon for the webview tab using URI path
|
||||||
const iconPath = vscode.Uri.joinPath(this._extensionUri, 'icon.png');
|
const iconPath = vscode.Uri.joinPath(this._extensionUri, 'icon-bubble.png');
|
||||||
this._panel.iconPath = iconPath;
|
this._panel.iconPath = iconPath;
|
||||||
|
|
||||||
this._panel.webview.html = this._getHtmlForWebview();
|
this._panel.webview.html = this._getHtmlForWebview();
|
||||||
|
|||||||
Reference in New Issue
Block a user