Skip to content

Commit

Permalink
chore: update icon
Browse files Browse the repository at this point in the history
  • Loading branch information
l1shen committed Dec 5, 2024
1 parent 56a0610 commit d1d8590
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
Binary file added assets/iconfont.woff
Binary file not shown.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -223,19 +223,19 @@
"chatParticipants": [
{
"id": "flexpilot.panel.default",
"name": "flexpilot",
"fullName": "Flexpilot",
"description": "Ask Flexpilot or type / for commands",
"name": "oopilot",
"fullName": "oopilot",
"description": "Ask oopilot or type / for commands",
"isDefault": true,
"locations": [
"panel"
]
},
{
"id": "flexpilot.editor.default",
"name": "flexpilot",
"fullName": "Flexpilot",
"description": "Ask Flexpilot or type / for commands",
"name": "oopilot",
"fullName": "oopilot",
"description": "Ask oopilot or type / for commands",
"isDefault": true,
"locations": [
"editor"
Expand Down Expand Up @@ -296,8 +296,8 @@
"flexpilot-default": {
"description": "Flexpilot Default Logo",
"default": {
"fontPath": "assets/fonts.woff",
"fontCharacter": "\\e900"
"fontPath": "assets/iconfont.woff",
"fontCharacter": "\\e602"
}
},
"flexpilot-disabled": {
Expand Down Expand Up @@ -374,4 +374,4 @@
"engines": {
"vscode": "1.95.x"
}
}
}
2 changes: 1 addition & 1 deletion src/panel-chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ class PanelChatParticipant {
): Promise<vscode.ChatFollowup[]> {
return location === vscode.ChatLocation.Panel &&
!token.isCancellationRequested
? [{ prompt: "/help - Get help with Flexpilot commands" }]
? [{ prompt: "/help - Get help with oopilot commands" }]
: [];
}

Expand Down
6 changes: 3 additions & 3 deletions src/status-icon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ class StatusIconManager {
private initializeStatusBar(): void {
logger.debug("Initializing status bar");
this.statusBarItem.accessibilityInformation = {
label: "Flexpilot Status",
label: "oopilot Status",
};
this.statusBarItem.tooltip = "Flexpilot Status";
this.statusBarItem.name = "Flexpilot Status";
this.statusBarItem.tooltip = "oopilot Status";
this.statusBarItem.name = "oopilot Status";
this.statusBarItem.command = "flexpilot.status.icon.menu";
this.statusBarItem.show();
logger.debug("Status bar initialized");
Expand Down

0 comments on commit d1d8590

Please sign in to comment.