Collection of extensions made for Playnite.
Download the packaged *.pext files from the forum thread of the wanted extension linked in the Extensions section and see Packaged extensions.
Varies depending the extension functionality but in general. Refer to each extension thread in Playnite forums for the specific instructions.
TODO
If possible, please contact me before working on a new PR to make sure that the changes are something that we can discuss beforehand.
- Indentation must use 4 spaces. No tabs.
- Always encapsulate the code body after if, for, foreach, while etc. with curly braces, for example:
if (true)
{
DoSomething()
}
- Functions names should use approved verbs and format: https://docs.microsoft.com/en-us/powershell/scripting/developer/cmdlet/approved-verbs-for-windows-powershell-commands?view=powershell-5.1
- Cmdlets must be use the full name without abreviations, for example:
Get-Service | Where-Object {$_.Status -eq "Stopped"}
instead of
Get-Service | Where {$_.Status -eq "Stopped"}
- Private fields and properties should use camelCase (without underscore)
- All methods (private and public) should use PascalCase
Please open a new Issue