Skip to content

Commit 74bc026

Browse files
Update icons
1 parent 51442f6 commit 74bc026

File tree

10 files changed

+501
-22
lines changed

10 files changed

+501
-22
lines changed

.DS_Store

2 KB
Binary file not shown.

app/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ export function activate(context: vscode.ExtensionContext) {
142142
}));
143143

144144
context.subscriptions.push(vscode.commands.registerCommand('integrationWorkbench.openWalkthrough', () => {
145-
vscode.commands.executeCommand(`workbench.action.openWalkthrough`, `nora-soderlund.integrationWorkbench#workbenches.openWorkbenches`, false);
145+
vscode.commands.executeCommand(`workbench.action.openWalkthrough`, `norasoderlund.integrationWorkbench#workbenches.openWorkbenches`, false);
146146
}));
147147

148148
Commands.register(context);

app/views/trees/scripts/items/ScriptTreeItem.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default class ScriptTreeItem extends TreeItem {
3232
}
3333

3434
getIconPath() {
35-
const iconPath = path.join(__filename, '..', '..', '..', '..', '..', '..', '..', 'resources', 'icons', 'typescript.svg');
35+
const iconPath = path.join(__filename, '..', '..', '..', '..', '..', '..', '..', 'resources', 'icons', 'typescript.png');
3636

3737
if (existsSync(iconPath)) {
3838
return Uri.file(iconPath);

media/.DS_Store

0 Bytes
Binary file not shown.

media/workbench.png

809 Bytes
Loading

package.json

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"name": "integration-workbench",
2+
"name": "integrationworkbench",
33
"displayName": "Integration Workbench",
44
"description": "A workbench tool to work with API integrations.",
55
"version": "0.9.0",
66
"license": "GPL-3.0",
77
"engines": {
8-
"vscode": "^1.82.0"
8+
"vscode": "^1.84.0"
99
},
1010
"categories": [
1111
"Other"
@@ -211,14 +211,14 @@
211211
{
212212
"id": "workbench",
213213
"title": "Integration Workbench",
214-
"icon": "media/workbench.svg"
214+
"icon": "media/workbench.png"
215215
}
216216
],
217217
"panel": [
218218
{
219219
"id": "results",
220220
"title": "Responses",
221-
"icon": "media/workbench.svg"
221+
"icon": "media/workbench.png"
222222
}
223223
]
224224
},
@@ -241,14 +241,14 @@
241241
{
242242
"id": "requests",
243243
"name": "Requests",
244-
"icon": "media/workbench.svg",
244+
"icon": "media/workbench.png",
245245
"contextualTitle": "Requests",
246246
"initialSize": 0
247247
},
248248
{
249249
"id": "response",
250250
"name": "Response",
251-
"icon": "media/workbench.svg",
251+
"icon": "media/workbench.png",
252252
"contextualTitle": "Response",
253253
"type": "webview",
254254
"initialSize": 1
@@ -417,7 +417,7 @@
417417
"title": "Open your workbenches",
418418
"description": "A workbench is where you construct your collections of requests and configure shared configurations such as authentications.\n[Focus on Workbenches](command:workbenches.focus)",
419419
"media": {
420-
"image": "resources/walkthrough/test.svg",
420+
"image": "resources/walkthrough/test.png",
421421
"altText": "Empty image"
422422
},
423423
"completionEvents": [
@@ -429,7 +429,7 @@
429429
"title": "Create a workbench",
430430
"description": "Create your first workbench for your repository or project.\n[Create a Workbench](command:integrationWorkbench.createWorkbench)",
431431
"media": {
432-
"image": "resources/walkthrough/test.svg",
432+
"image": "resources/walkthrough/test.png",
433433
"altText": "Empty image"
434434
},
435435
"completionEvents": [
@@ -441,7 +441,7 @@
441441
"title": "Create a collection",
442442
"description": "Create your first collection of requests to divide your workbench into several parts.\n[Create a Collection](command:integrationWorkbench.createCollection)",
443443
"media": {
444-
"image": "resources/walkthrough/test.svg",
444+
"image": "resources/walkthrough/test.png",
445445
"altText": "Empty image"
446446
},
447447
"completionEvents": [
@@ -468,6 +468,7 @@
468468
"@typescript-eslint/parser": "^6.9.0",
469469
"@vscode/codicons": "^0.0.35",
470470
"@vscode/test-electron": "^2.3.6",
471+
"@vscode/vsce": "^2.22.0",
471472
"@vscode/webview-ui-toolkit": "^1.2.2",
472473
"esbuild": "^0.19.8",
473474
"eslint": "^8.52.0",

resources/.DS_Store

0 Bytes
Binary file not shown.

resources/icons/.DS_Store

0 Bytes
Binary file not shown.

resources/icons/typescript.png

643 Bytes
Loading

0 commit comments

Comments
 (0)