Skip to content

Commit

Permalink
chore: update status name
Browse files Browse the repository at this point in the history
  • Loading branch information
l1shen committed Dec 10, 2024
1 parent 2e6afd8 commit a5be10a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "oopilot",
"displayName": "OOMOL Flexpilot",
"description": "Open-Source, Native and a True GitHub Copilot Alternative for VS Code",
"version": "0.1.8",
"version": "0.1.9",
"icon": "assets/logo.png",
"license": "GPL-3.0-only",
"pricing": "Free",
Expand Down Expand Up @@ -223,8 +223,8 @@
"chatParticipants": [
{
"id": "flexpilot.panel.default",
"name": "oopilot",
"fullName": "oopilot",
"name": "OOMOL",
"fullName": "OOMOL",
"description": "%chat.panel.description%",
"isDefault": true,
"locations": [
Expand All @@ -233,8 +233,8 @@
},
{
"id": "flexpilot.editor.default",
"name": "oopilot",
"fullName": "oopilot",
"name": "OOMOL",
"fullName": "OOMOL",
"description": "%chat.panel.description%",
"isDefault": true,
"locations": [
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: "oopilot Status",
label: "OOMOL Status",
};
this.statusBarItem.tooltip = "oopilot Status";
this.statusBarItem.name = "oopilot Status";
this.statusBarItem.tooltip = "OOMOL Status";
this.statusBarItem.name = "OOMOL Status";
this.statusBarItem.command = "flexpilot.status.icon.menu";
this.statusBarItem.show();
logger.debug("Status bar initialized");
Expand Down

0 comments on commit a5be10a

Please sign in to comment.