Skip to content

Latest commit

 

History

History
49 lines (35 loc) · 1.78 KB

README.md

File metadata and controls

49 lines (35 loc) · 1.78 KB

Crowdin

Playnite Extensions Collection

Collection of extensions made for Playnite.

Download and installation

Download the packaged *.pext files from the forum thread of the wanted extension linked in the Extensions section and see Packaged extensions.

Usage

Varies depending the extension functionality but in general. Refer to each extension thread in Playnite forums for the specific instructions.

Extensions

TODO

Contributing

If possible, please contact me before working on a new PR to make sure that the changes are something that we can discuss beforehand.

General rules

  • 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()
}

Powershell extensions rules

Get-Service | Where-Object {$_.Status -eq "Stopped"}

instead of

Get-Service | Where {$_.Status -eq "Stopped"}

C# extensions rules

  • Private fields and properties should use camelCase (without underscore)
  • All methods (private and public) should use PascalCase

Questions, suggestions and Issues

Please open a new Issue