Skip to content

Commit

Permalink
Replaced svg with codicon to support other Product icon themes
Browse files Browse the repository at this point in the history
  • Loading branch information
PraneshBalasubramaniam committed Sep 1, 2023
1 parent 2cc3bda commit 60ea04b
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 27 deletions.
1 change: 0 additions & 1 deletion media/icon/dark-add.svg

This file was deleted.

1 change: 0 additions & 1 deletion media/icon/dark-circle-outline.svg

This file was deleted.

1 change: 0 additions & 1 deletion media/icon/dark-trash.svg

This file was deleted.

1 change: 0 additions & 1 deletion media/icon/light-add.svg

This file was deleted.

1 change: 0 additions & 1 deletion media/icon/light-circle-outline.svg

This file was deleted.

1 change: 0 additions & 1 deletion media/icon/light-trash.svg

This file was deleted.

26 changes: 5 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,20 +86,13 @@
{
"command": "vscode-pets.throw-with-mouse",
"title": "Throw ball with mouse",
"category": "Pet Coding",
"icon": {
"dark": "media/icon/dark-throw-outline.svg",
"light": "media/icon/light-throw-outline.svg"
}
"category": "Pet Coding"
},
{
"command": "vscode-pets.throw-ball",
"title": "Throw ball",
"category": "Pet Coding",
"icon": {
"dark": "media/icon/dark-circle-outline.svg",
"light": "media/icon/light-circle-outline.svg"
}
"icon": "$(circle)"
},
{
"command": "vscode-pets.export-pet-list",
Expand All @@ -115,28 +108,19 @@
"command": "vscode-pets.spawn-pet",
"title": "Spawn additional pet",
"category": "Pet Coding",
"icon": {
"dark": "media/icon/dark-add.svg",
"light": "media/icon/light-add.svg"
}
"icon": "$(add)"
},
{
"command": "vscode-pets.delete-pet",
"title": "Remove pet",
"category": "Pet Coding",
"icon": {
"dark": "media/icon/dark-trash.svg",
"light": "media/icon/light-trash.svg"
}
"icon": "$(trash)"
},
{
"command": "vscode-pets.remove-all-pets",
"title": "Remove all pets",
"category": "Pet Coding",
"icon": {
"dark": "media/icon/dark-trash.svg",
"light": "media/icon/light-trash.svg"
}
"icon": "$(trash)"
},
{
"command": "vscode-pets.roll-call",
Expand Down

0 comments on commit 60ea04b

Please sign in to comment.