Skip to content

Commit c73d667

Browse files
committed
Bump version to 0.8.0
1 parent b06cfb7 commit c73d667

1 file changed

Lines changed: 32 additions & 62 deletions

File tree

src/package.json

Lines changed: 32 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "%extension.displayName%",
44
"description": "%extension.description%",
55
"publisher": "realancerllc",
6-
"version": "0.2.0",
6+
"version": "0.8.0",
77
"icon": "assets/icons/icon.png",
88
"galleryBanner": {
99
"color": "#617A91",
@@ -70,39 +70,29 @@
7070
},
7171
"commands": [
7272
{
73-
"command": "acode.plusButtonClicked",
74-
"title": "%command.newTask.title%",
75-
"icon": "$(add)"
76-
},
77-
{
78-
"command": "acode.promptsButtonClicked",
79-
"title": "%command.prompts.title%",
80-
"icon": "$(organization)"
73+
"command": "acode.architectButtonClicked",
74+
"title": "%command.architect.title%",
75+
"icon": "$(layout)"
8176
},
8277
{
83-
"command": "acode.mcpButtonClicked",
84-
"title": "%command.mcpServers.title%",
85-
"icon": "$(server)"
78+
"command": "acode.codeButtonClicked",
79+
"title": "%command.code.title%",
80+
"icon": "$(code)"
8681
},
8782
{
88-
"command": "acode.historyButtonClicked",
89-
"title": "%command.history.title%",
90-
"icon": "$(history)"
83+
"command": "acode.debugButtonClicked",
84+
"title": "%command.debug.title%",
85+
"icon": "$(bug)"
9186
},
9287
{
93-
"command": "acode.marketplaceButtonClicked",
94-
"title": "%command.marketplace.title%",
95-
"icon": "$(extensions)"
88+
"command": "acode.orchestrateButtonClicked",
89+
"title": "%command.orchestrate.title%",
90+
"icon": "$(sparkles)"
9691
},
9792
{
98-
"command": "acode.popoutButtonClicked",
99-
"title": "%command.openInEditor.title%",
100-
"icon": "$(link-external)"
101-
},
102-
{
103-
"command": "acode.cloudButtonClicked",
104-
"title": "%command.cloud.title%",
105-
"icon": "$(cloud)"
93+
"command": "acode.testButtonClicked",
94+
"title": "%command.test.title%",
95+
"icon": "$(flask)"
10696
},
10797
{
10898
"command": "acode.settingsButtonClicked",
@@ -229,85 +219,65 @@
229219
],
230220
"view/title": [
231221
{
232-
"command": "acode.plusButtonClicked",
222+
"command": "acode.architectButtonClicked",
233223
"group": "navigation@1",
234224
"when": "view == acode.SidebarProvider"
235225
},
236226
{
237-
"command": "acode.marketplaceButtonClicked",
227+
"command": "acode.codeButtonClicked",
238228
"group": "navigation@2",
239229
"when": "view == acode.SidebarProvider"
240230
},
241231
{
242-
"command": "acode.settingsButtonClicked",
232+
"command": "acode.debugButtonClicked",
243233
"group": "navigation@3",
244234
"when": "view == acode.SidebarProvider"
245235
},
246236
{
247-
"command": "acode.cloudButtonClicked",
237+
"command": "acode.orchestrateButtonClicked",
248238
"group": "navigation@4",
249239
"when": "view == acode.SidebarProvider"
250240
},
251241
{
252-
"command": "acode.historyButtonClicked",
253-
"group": "overflow@1",
242+
"command": "acode.testButtonClicked",
243+
"group": "navigation@5",
254244
"when": "view == acode.SidebarProvider"
255245
},
256246
{
257-
"command": "acode.promptsButtonClicked",
258-
"group": "overflow@2",
259-
"when": "view == acode.SidebarProvider"
260-
},
261-
{
262-
"command": "acode.mcpButtonClicked",
263-
"group": "overflow@3",
264-
"when": "view == acode.SidebarProvider"
265-
},
266-
{
267-
"command": "acode.popoutButtonClicked",
268-
"group": "overflow@4",
247+
"command": "acode.settingsButtonClicked",
248+
"group": "navigation@6",
269249
"when": "view == acode.SidebarProvider"
270250
}
271251
],
272252
"editor/title": [
273253
{
274-
"command": "acode.plusButtonClicked",
254+
"command": "acode.architectButtonClicked",
275255
"group": "navigation@1",
276256
"when": "activeWebviewPanelId == acode.TabPanelProvider"
277257
},
278258
{
279-
"command": "acode.marketplaceButtonClicked",
259+
"command": "acode.codeButtonClicked",
280260
"group": "navigation@2",
281261
"when": "activeWebviewPanelId == acode.TabPanelProvider"
282262
},
283263
{
284-
"command": "acode.settingsButtonClicked",
264+
"command": "acode.debugButtonClicked",
285265
"group": "navigation@3",
286266
"when": "activeWebviewPanelId == acode.TabPanelProvider"
287267
},
288268
{
289-
"command": "acode.cloudButtonClicked",
269+
"command": "acode.orchestrateButtonClicked",
290270
"group": "navigation@4",
291271
"when": "activeWebviewPanelId == acode.TabPanelProvider"
292272
},
293273
{
294-
"command": "acode.historyButtonClicked",
295-
"group": "overflow@1",
296-
"when": "activeWebviewPanelId == acode.TabPanelProvider"
297-
},
298-
{
299-
"command": "acode.promptsButtonClicked",
300-
"group": "overflow@2",
274+
"command": "acode.testButtonClicked",
275+
"group": "navigation@5",
301276
"when": "activeWebviewPanelId == acode.TabPanelProvider"
302277
},
303278
{
304-
"command": "acode.mcpButtonClicked",
305-
"group": "overflow@3",
306-
"when": "activeWebviewPanelId == acode.TabPanelProvider"
307-
},
308-
{
309-
"command": "acode.popoutButtonClicked",
310-
"group": "overflow@4",
279+
"command": "acode.settingsButtonClicked",
280+
"group": "navigation@6",
311281
"when": "activeWebviewPanelId == acode.TabPanelProvider"
312282
}
313283
]

0 commit comments

Comments
 (0)