Skip to content

Replace custom graphics with updated Codicons #3865

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions media/pwsh.svg

This file was deleted.

56 changes: 0 additions & 56 deletions media/resources/dark/pencil.svg

This file was deleted.

5 changes: 0 additions & 5 deletions media/resources/dark/play.svg

This file was deleted.

56 changes: 0 additions & 56 deletions media/resources/dark/question.svg

This file was deleted.

3 changes: 0 additions & 3 deletions media/resources/dark/run.svg

This file was deleted.

56 changes: 0 additions & 56 deletions media/resources/dark/sync.svg

This file was deleted.

1 change: 0 additions & 1 deletion media/resources/light/pencil.svg

This file was deleted.

5 changes: 0 additions & 5 deletions media/resources/light/play.svg

This file was deleted.

1 change: 0 additions & 1 deletion media/resources/light/question.svg

This file was deleted.

3 changes: 0 additions & 3 deletions media/resources/light/run.svg

This file was deleted.

55 changes: 0 additions & 55 deletions media/resources/light/sync.svg

This file was deleted.

27 changes: 6 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
{
"id": "PowerShellCommandExplorer",
"title": "(Preview) PowerShell Command Explorer",
"icon": "media/pwsh.svg"
"icon": "$(terminal-powershell)"
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since 1.56!

}
]
},
Expand Down Expand Up @@ -155,19 +155,13 @@
{
"command": "PowerShell.RefreshCommandsExplorer",
"title": "Refresh Command Explorer",
"icon": {
"light": "media/resources/light/sync.svg",
"dark": "media/resources/dark/sync.svg"
},
"icon": "$(sync)",
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since <1.56

"category": "PowerShell"
},
{
"command": "PowerShell.InsertCommand",
"title": "Insert Command",
"icon": {
"light": "media/resources/light/pencil.svg",
"dark": "media/resources/dark/pencil.svg"
},
"icon": "$(pencil)",
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since <1.56

"category": "PowerShell"
},
{
Expand All @@ -178,29 +172,20 @@
{
"command": "PowerShell.ShowHelp",
"title": "Get Help for Command",
"icon": {
"light": "media/resources/light/question.svg",
"dark": "media/resources/dark/question.svg"
},
"icon": "$(question)",
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since <1.56

"category": "PowerShell"
},
{
"command": "PowerShell.Debug.Start",
"title": "Run",
"category": "PowerShell",
"icon": {
"light": "media/resources/light/run.svg",
"dark": "media/resources/dark/run.svg"
}
"icon": "$(run)"
},
{
"command": "PowerShell.RunSelection",
"title": "Run Selection",
"category": "PowerShell",
"icon": {
"light": "media/resources/light/play.svg",
"dark": "media/resources/dark/play.svg"
}
"icon": "$(debug-line-by-line)"
},
{
"command": "PowerShell.RestartSession",
Expand Down