Skip to content

Lotran/PlayniteExtensionsCollection

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Collection of extensions made for Playnite.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 75.5%
  • PowerShell 24.5%