forked from microsoft/PowerToys
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from microsoft/master
Update with latest changes
- Loading branch information
Showing
150 changed files
with
2,710 additions
and
2,197 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: "📚 Documentation Issue" | ||
description: Report issues in our documentation | ||
labels: | ||
- Issue-Docs | ||
- Triage-Needed | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Provide a description of requested docs changes | ||
placeholder: Briefly describe which document needs to be corrected and why. | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# New plugin checklist | ||
- [ ] The plugin is a project under `modules\launcher\Plugins` | ||
- [ ] Microsoft plugin project name pattern: `Microsoft.PowerToys.Run.Plugin.{PluginName}` | ||
- [ ] Community plugin project name pattern: `Community.PowerToys.Run.Plugin.{PluginName}` | ||
- [ ] [`GlobalSuppressions.cs`](/src/codeAnalysis/GlobalSuppressions.cs) and [`StyleCop.json`](/src/codeAnalysis/StyleCop.json) have to be included in the plugin project so it follows PowerToys code guidelines | ||
- [ ] The plugin has to have `{PowerToys version}.0` version | ||
- [ ] Make sure `*.csproj` specify only x64 platform target | ||
- [ ] The plugin has to contain a `plugin.json` file of the following format in its root folder | ||
``` | ||
{ | ||
"ID": string, // GUID string | ||
"ActionKeyword": string, // Direct activation phrase | ||
"IsGlobal": boolean, | ||
"Name": string, // Has to be unique, same as 'PluginName' in the project name pattern | ||
"Author": string, | ||
"Version": "1.0.0", // For future compatibility | ||
"Language": "csharp", // So far we support only csharp | ||
"Website": "https://aka.ms/powertoys", | ||
"ExecuteFileName": string, // Should be {Type}.PowerToys.Run.Plugin.{PluginName}.dll | ||
"IcoPathDark": string, // Path to dark theme icon. The path is relative to the root plugin folder | ||
"IcoPathLight": string // Path to light theme icon. The path is relative to the root plugin folder | ||
} | ||
``` | ||
- [ ] Do not use plugin name or PowerToys as prefixes for entities inside of the plugin project | ||
- [ ] The plugin has to have Unit tests. Use MSTest framework | ||
- [ ] To enable localization add `LocProject.json` file to the plugin root folder. For details see [`localization.md`](/doc/devdocs/localization.md#enabling-localization-on-a-new-project) | ||
- [ ] Plugin's output code and assets have to be included in the installer [`Product.wxs`](/installer/PowerToysSetup/Product.wxs) | ||
- [ ] Test the plugin with a local build. Build the installer, install, check that the plugin works as expected | ||
- [ ] All plugin's binaries have to be included in the signed build [`pipeline.user.windows.yml`](/.pipelines/pipeline.user.windows.yml) | ||
- [ ] The plugin target framework has to be .NET Core 3.1. All dependencies have to have .NET 5 version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.