Skip to content

Commit

Permalink
chore: Update panel title to "Prototype Genie"
Browse files Browse the repository at this point in the history
  • Loading branch information
Celery-Liu committed Jul 21, 2024
1 parent 6a02613 commit 406a7ea
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 13 deletions.
18 changes: 6 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "openai-code",
"displayName": "AI Assistant Hub",
"displayName": "Prototype Genie",
"description": "",
"version": "0.1.0",
"version": "0.1.1",
"publisher": "celeryliu94",
"license": "MIT",
"icon": "resources/openai-code-chat-assistant.png",
"icon": "resources/icon.png",
"repository": {
"url": "https://github.com/celery94/openai-code"
},
Expand All @@ -16,13 +16,7 @@
"Other"
],
"keywords": [
"copilot",
"openai",
"AI",
"explain",
"find bugs",
"explain ",
"refactor",
"angular",
"prototype"
],
Expand All @@ -32,20 +26,20 @@
"commands": [
{
"command": "openai-code.generatePrototype",
"title": "AI Assistant Hub - Generate Prototype"
"title": "Prototype Genie - Generate Prototype"
}
],
"menus": {
"editor/context": [
{
"command": "openai-code.generatePrototype",
"when": "editorHasSelection",
"group": "openai-code-menu-group@2"
"group": "openai-code-menu-group@1"
}
]
},
"configuration": {
"title": "AI Assistant Hub",
"title": "Prototype Genie",
"type": "object",
"properties": {
"openAICode.apiKey": {
Expand Down
Binary file added resources/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed resources/openai-code-chat-assistant.png
Binary file not shown.
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export function activate(context: vscode.ExtensionContext) {
// Create and show a new webview
const panel = vscode.window.createWebviewPanel(
"chatCoding", // Identifies the type of the webview. Used internally
"AI Assistant Hub", // Title of the panel displayed to the user
"Prototype Genie", // Title of the panel displayed to the user
vscode.ViewColumn.Beside, // Editor column to show the new webview panel in.
{
enableScripts: true,
Expand Down

0 comments on commit 406a7ea

Please sign in to comment.