VSCode to full name, disable Visual Studio Code plugin by default (#10071)

This commit is contained in:
Mykhailo Pylyp 2021-03-08 03:57:32 -08:00 committed by GitHub
parent 5214df42a6
commit c36b202fe7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 15 additions and 11 deletions

View File

@ -1021,7 +1021,8 @@
<?endforeach?>
</Component>
<Component Id="VSCodeWorkspacesImagesComponent" Directory="VSCodeWorkspaceImagesFolder" Guid="6F3C0CF1-7024-4333-BFA1-850D340AEE69">
<File Id="VSCodeWorkspacePluginIcon" Source="$(var.BinX64Dir)modules\launcher\Plugins\VSCodeWorkspaces\Images\vscode_plugin.png" />
<File Id="VSCodeWorkspaceCodeLight" Source="$(var.BinX64Dir)modules\launcher\Plugins\VSCodeWorkspaces\Images\code-light.png" />
<File Id="VSCodeWorkspaceCodeDark" Source="$(var.BinX64Dir)modules\launcher\Plugins\VSCodeWorkspaces\Images\code-dark.png" />
<File Id="VSCodeWorkspaceFolder" Source="$(var.BinX64Dir)modules\launcher\Plugins\VSCodeWorkspaces\Images\folder.png" />
<File Id="VSCodeWorkspaceRemote" Source="$(var.BinX64Dir)modules\launcher\Plugins\VSCodeWorkspaces\Images\monitor.png" />
</Component>

View File

@ -83,7 +83,10 @@
<None Update="Images\monitor.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Images\vscode_plugin.png">
<None Update="Images\code-dark.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Images\code-light.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -70,7 +70,7 @@ namespace Community.PowerToys.Run.Plugin.VSCodeWorkspaces.Properties {
}
/// <summary>
/// Looks up a localized string similar to Open VSCode previously opened workspaces, remote machines (SSH or Codespaces) and containers..
/// Looks up a localized string similar to Opens workspaces, remote machines (SSH or Codespaces) and containers, previously opened in VS Code..
/// </summary>
internal static string PluginDescription {
get {
@ -79,7 +79,7 @@ namespace Community.PowerToys.Run.Plugin.VSCodeWorkspaces.Properties {
}
/// <summary>
/// Looks up a localized string similar to VSCode Workspaces.
/// Looks up a localized string similar to Visual Studio Code Workspaces.
/// </summary>
internal static string PluginTitle {
get {

View File

@ -118,14 +118,14 @@
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="PluginTitle" xml:space="preserve">
<value>VSCode Workspaces</value>
<value>Visual Studio Code Workspaces</value>
</data>
<data name="In" xml:space="preserve">
<value>in</value>
<comment>Used to indicate the location where something is</comment>
</data>
<data name="PluginDescription" xml:space="preserve">
<value>Open VSCode previously opened workspaces, remote machines (SSH or Codespaces) and containers.</value>
<value>Opens workspaces, remote machines (SSH or Codespaces) and containers, previously opened in VS Code.</value>
</data>
<data name="SSHRemoteMachine" xml:space="preserve">
<value>SSH remote machine</value>
@ -142,4 +142,4 @@
<value>Workspace</value>
<comment>It refers to the "Visual Studio Code workspace"</comment>
</data>
</root>
</root>

View File

@ -1,14 +1,14 @@
{
"ID": "525995402BEF4A8CA860D92F6D108092",
"Disabled": true,
"ActionKeyword": "{",
"Name": "VSCode Workspaces",
"Description": "Opened VSCode Workspaces",
"Name": "VS Code Workspaces",
"Author": "ricardosantos9521",
"Version": "1.0.0",
"Language": "csharp",
"Website": "https://github.com/ricardosantos9521/PowerToys/",
"ExecuteFileName": "Community.PowerToys.Run.Plugin.VSCodeWorkspaces.dll",
"IsGlobal": false,
"IcoPathDark": "Images\\vscode_plugin.png",
"IcoPathLight": "Images\\vscode_plugin.png"
"IcoPathDark": "Images\\code-dark.png",
"IcoPathLight": "Images\\code-light.png"
}