Modify icon and name

This commit is contained in:
andrepimenta
2025-10-14 17:23:49 +01:00
parent 1be89d43a4
commit d891070d9e
4 changed files with 5 additions and 5 deletions

BIN
icon-bubble.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 469 KiB

BIN
icon.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 689 KiB

After

Width:  |  Height:  |  Size: 689 KiB

View File

@@ -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"
} }
] ]
}, },

View File

@@ -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();