├── .github └── workflows │ └── msbuild.yml ├── .gitignore ├── EmuLibrary.sln ├── EmuLibrary ├── EmuLibrary.cs ├── EmuLibrary.csproj ├── EmuLibraryClient.cs ├── IEmuLibrary.cs ├── PlayniteCommon │ ├── .editorconfig │ ├── CloneObject.cs │ ├── LICENSE.md │ ├── SafeFileEnumerator.cs │ └── StringExtensions.cs ├── Properties │ └── AssemblyInfo.cs ├── RomTypes │ ├── BaseInstallController.cs │ ├── ELGameInfo.cs │ ├── ELGameInfoBaseExtensions.cs │ ├── LegacySettingsMigrationResult.cs │ ├── MultiFile │ │ ├── MultiFileGameInfo.cs │ │ ├── MultiFileGameInfoExtensions.cs │ │ ├── MultiFileInstallController.cs │ │ ├── MultiFileScanner.cs │ │ └── MultiFileUninstallController.cs │ ├── RomType.cs │ ├── RomTypeInfoAttribute.cs │ ├── RomTypeScanner.cs │ ├── SingleFile │ │ ├── SingleFileGameInfo.cs │ │ ├── SingleFileGameInfoExtensions.cs │ │ ├── SingleFileInstallController.cs │ │ ├── SingleFileScanner.cs │ │ └── SingleFileUninstallController.cs │ └── Yuzu │ │ ├── SourceDirCache.cs │ │ ├── Yuzu.cs │ │ ├── YuzuGameInfo.cs │ │ ├── YuzuGameInfoExtensions.cs │ │ ├── YuzuInstallController.cs │ │ ├── YuzuLegacySettings.cs │ │ ├── YuzuScanner.cs │ │ └── YuzuUninstallController.cs ├── Settings │ ├── EmulatorMapping.cs │ ├── PathValidator.cs │ ├── Settings.cs │ ├── SettingsV0.cs │ ├── SettingsView.xaml │ └── SettingsView.xaml.cs ├── Util │ ├── FileCopier │ │ ├── BaseFileCopier.cs │ │ ├── IFileCopier.cs │ │ ├── SimpleFileCopier.cs │ │ └── WindowsFileCopier.cs │ └── FileNameUtils.cs ├── extension.yaml └── icon.png ├── LICENSE ├── README.md ├── manifest.yaml └── toolbox ├── CommandLine.dll ├── LICENSE.txt ├── NLog.config ├── NLog.dll ├── Playnite.SDK.dll ├── Playnite.SDK.pdb ├── Playnite.SDK.xml ├── Playnite.dll ├── Playnite.dll.config ├── Playnite.pdb ├── Templates ├── Extensions │ ├── CustomLibraryPlugin.zip │ ├── CustomMetadataPlugin.zip │ ├── ExtensionsRefIgnoreList.txt │ ├── GenericPlugin.zip │ ├── IronPythonScript.zip │ └── PowerShellScript.zip └── Themes │ ├── Changelog │ ├── 1.0.0-1.1.0.txt │ ├── 1.0.0.zip │ ├── 1.1.0-1.2.0.txt │ ├── 1.1.0.zip │ ├── 1.2.0-1.3.0.txt │ ├── 1.2.0.zip │ ├── 1.3.0-1.4.0.txt │ ├── 1.3.0.zip │ ├── 1.4.0-1.4.1.txt │ ├── 1.4.0.zip │ ├── 1.4.1-1.5.0.txt │ ├── 1.4.1.zip │ ├── 1.5.0-1.6.0.txt │ ├── 1.5.0.zip │ ├── 1.6.0-1.7.0.txt │ ├── 1.6.0.zip │ ├── 1.7.0-1.8.0.txt │ ├── 1.7.0.zip │ ├── 1.8.0-1.9.0.txt │ ├── 1.8.0.zip │ ├── 1.9.0-2.0.0.txt │ ├── 1.9.0.zip │ ├── 2.0.0-2.1.0.txt │ ├── 2.0.0.zip │ ├── 2.1.0-2.2.0.txt │ ├── 2.1.0.zip │ ├── 2.2.0-2.3.0.txt │ ├── 2.2.0.zip │ ├── 2.3.0-2.4.0.txt │ ├── 2.3.0.zip │ ├── 2.4.0-2.5.0.txt │ └── 2.4.0.zip │ ├── Desktop │ ├── App.xaml │ ├── ControlGalleryView.xaml │ ├── GlobalResources.xaml │ ├── Theme.csproj │ └── Theme.sln │ ├── Fonts │ └── icofont.ttf │ ├── Fullscreen │ ├── App.xaml │ ├── ControlGalleryView.xaml │ ├── Fonts │ │ ├── PlayStation4.ttf │ │ ├── TitilliumWeb-Black.ttf │ │ ├── TitilliumWeb-Bold.ttf │ │ ├── TitilliumWeb-BoldItalic.ttf │ │ ├── TitilliumWeb-ExtraLight.ttf │ │ ├── TitilliumWeb-ExtraLightItalic.ttf │ │ ├── TitilliumWeb-Italic.ttf │ │ ├── TitilliumWeb-Light.ttf │ │ ├── TitilliumWeb-LightItalic.ttf │ │ ├── TitilliumWeb-Regular.ttf │ │ ├── TitilliumWeb-SemiBold.ttf │ │ ├── TitilliumWeb-SemiBoldItalic.ttf │ │ └── XBOXONE.ttf │ ├── GlobalResources.xaml │ ├── Theme.csproj │ └── Theme.sln │ └── LocSource.xaml ├── Toolbox.exe ├── Toolbox.exe.config ├── Toolbox.pdb └── YamlDotNet.dll /.github/workflows/msbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/.github/workflows/msbuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/.gitignore -------------------------------------------------------------------------------- /EmuLibrary.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary.sln -------------------------------------------------------------------------------- /EmuLibrary/EmuLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/EmuLibrary.cs -------------------------------------------------------------------------------- /EmuLibrary/EmuLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/EmuLibrary.csproj -------------------------------------------------------------------------------- /EmuLibrary/EmuLibraryClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/EmuLibraryClient.cs -------------------------------------------------------------------------------- /EmuLibrary/IEmuLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/IEmuLibrary.cs -------------------------------------------------------------------------------- /EmuLibrary/PlayniteCommon/.editorconfig: -------------------------------------------------------------------------------- 1 | [*.cs] 2 | dotnet_analyzer_diagnostic.severity = none -------------------------------------------------------------------------------- /EmuLibrary/PlayniteCommon/CloneObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/PlayniteCommon/CloneObject.cs -------------------------------------------------------------------------------- /EmuLibrary/PlayniteCommon/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/PlayniteCommon/LICENSE.md -------------------------------------------------------------------------------- /EmuLibrary/PlayniteCommon/SafeFileEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/PlayniteCommon/SafeFileEnumerator.cs -------------------------------------------------------------------------------- /EmuLibrary/PlayniteCommon/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/PlayniteCommon/StringExtensions.cs -------------------------------------------------------------------------------- /EmuLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EmuLibrary/RomTypes/BaseInstallController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/RomTypes/BaseInstallController.cs -------------------------------------------------------------------------------- /EmuLibrary/RomTypes/ELGameInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/RomTypes/ELGameInfo.cs -------------------------------------------------------------------------------- /EmuLibrary/RomTypes/ELGameInfoBaseExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/RomTypes/ELGameInfoBaseExtensions.cs -------------------------------------------------------------------------------- /EmuLibrary/RomTypes/LegacySettingsMigrationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/RomTypes/LegacySettingsMigrationResult.cs -------------------------------------------------------------------------------- /EmuLibrary/RomTypes/MultiFile/MultiFileGameInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/RomTypes/MultiFile/MultiFileGameInfo.cs -------------------------------------------------------------------------------- /EmuLibrary/RomTypes/MultiFile/MultiFileGameInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/RomTypes/MultiFile/MultiFileGameInfoExtensions.cs -------------------------------------------------------------------------------- /EmuLibrary/RomTypes/MultiFile/MultiFileInstallController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/RomTypes/MultiFile/MultiFileInstallController.cs -------------------------------------------------------------------------------- /EmuLibrary/RomTypes/MultiFile/MultiFileScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/RomTypes/MultiFile/MultiFileScanner.cs -------------------------------------------------------------------------------- /EmuLibrary/RomTypes/MultiFile/MultiFileUninstallController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/RomTypes/MultiFile/MultiFileUninstallController.cs -------------------------------------------------------------------------------- /EmuLibrary/RomTypes/RomType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/RomTypes/RomType.cs -------------------------------------------------------------------------------- /EmuLibrary/RomTypes/RomTypeInfoAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/RomTypes/RomTypeInfoAttribute.cs -------------------------------------------------------------------------------- /EmuLibrary/RomTypes/RomTypeScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/RomTypes/RomTypeScanner.cs -------------------------------------------------------------------------------- /EmuLibrary/RomTypes/SingleFile/SingleFileGameInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/RomTypes/SingleFile/SingleFileGameInfo.cs -------------------------------------------------------------------------------- /EmuLibrary/RomTypes/SingleFile/SingleFileGameInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/RomTypes/SingleFile/SingleFileGameInfoExtensions.cs -------------------------------------------------------------------------------- /EmuLibrary/RomTypes/SingleFile/SingleFileInstallController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/RomTypes/SingleFile/SingleFileInstallController.cs -------------------------------------------------------------------------------- /EmuLibrary/RomTypes/SingleFile/SingleFileScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/RomTypes/SingleFile/SingleFileScanner.cs -------------------------------------------------------------------------------- /EmuLibrary/RomTypes/SingleFile/SingleFileUninstallController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/RomTypes/SingleFile/SingleFileUninstallController.cs -------------------------------------------------------------------------------- /EmuLibrary/RomTypes/Yuzu/SourceDirCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/RomTypes/Yuzu/SourceDirCache.cs -------------------------------------------------------------------------------- /EmuLibrary/RomTypes/Yuzu/Yuzu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/RomTypes/Yuzu/Yuzu.cs -------------------------------------------------------------------------------- /EmuLibrary/RomTypes/Yuzu/YuzuGameInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/RomTypes/Yuzu/YuzuGameInfo.cs -------------------------------------------------------------------------------- /EmuLibrary/RomTypes/Yuzu/YuzuGameInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/RomTypes/Yuzu/YuzuGameInfoExtensions.cs -------------------------------------------------------------------------------- /EmuLibrary/RomTypes/Yuzu/YuzuInstallController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/RomTypes/Yuzu/YuzuInstallController.cs -------------------------------------------------------------------------------- /EmuLibrary/RomTypes/Yuzu/YuzuLegacySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/RomTypes/Yuzu/YuzuLegacySettings.cs -------------------------------------------------------------------------------- /EmuLibrary/RomTypes/Yuzu/YuzuScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/RomTypes/Yuzu/YuzuScanner.cs -------------------------------------------------------------------------------- /EmuLibrary/RomTypes/Yuzu/YuzuUninstallController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/RomTypes/Yuzu/YuzuUninstallController.cs -------------------------------------------------------------------------------- /EmuLibrary/Settings/EmulatorMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/Settings/EmulatorMapping.cs -------------------------------------------------------------------------------- /EmuLibrary/Settings/PathValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/Settings/PathValidator.cs -------------------------------------------------------------------------------- /EmuLibrary/Settings/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/Settings/Settings.cs -------------------------------------------------------------------------------- /EmuLibrary/Settings/SettingsV0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/Settings/SettingsV0.cs -------------------------------------------------------------------------------- /EmuLibrary/Settings/SettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/Settings/SettingsView.xaml -------------------------------------------------------------------------------- /EmuLibrary/Settings/SettingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/Settings/SettingsView.xaml.cs -------------------------------------------------------------------------------- /EmuLibrary/Util/FileCopier/BaseFileCopier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/Util/FileCopier/BaseFileCopier.cs -------------------------------------------------------------------------------- /EmuLibrary/Util/FileCopier/IFileCopier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/Util/FileCopier/IFileCopier.cs -------------------------------------------------------------------------------- /EmuLibrary/Util/FileCopier/SimpleFileCopier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/Util/FileCopier/SimpleFileCopier.cs -------------------------------------------------------------------------------- /EmuLibrary/Util/FileCopier/WindowsFileCopier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/Util/FileCopier/WindowsFileCopier.cs -------------------------------------------------------------------------------- /EmuLibrary/Util/FileNameUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/Util/FileNameUtils.cs -------------------------------------------------------------------------------- /EmuLibrary/extension.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/extension.yaml -------------------------------------------------------------------------------- /EmuLibrary/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/EmuLibrary/icon.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/README.md -------------------------------------------------------------------------------- /manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/manifest.yaml -------------------------------------------------------------------------------- /toolbox/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/CommandLine.dll -------------------------------------------------------------------------------- /toolbox/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/LICENSE.txt -------------------------------------------------------------------------------- /toolbox/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/NLog.config -------------------------------------------------------------------------------- /toolbox/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/NLog.dll -------------------------------------------------------------------------------- /toolbox/Playnite.SDK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Playnite.SDK.dll -------------------------------------------------------------------------------- /toolbox/Playnite.SDK.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Playnite.SDK.pdb -------------------------------------------------------------------------------- /toolbox/Playnite.SDK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Playnite.SDK.xml -------------------------------------------------------------------------------- /toolbox/Playnite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Playnite.dll -------------------------------------------------------------------------------- /toolbox/Playnite.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Playnite.dll.config -------------------------------------------------------------------------------- /toolbox/Playnite.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Playnite.pdb -------------------------------------------------------------------------------- /toolbox/Templates/Extensions/CustomLibraryPlugin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Extensions/CustomLibraryPlugin.zip -------------------------------------------------------------------------------- /toolbox/Templates/Extensions/CustomMetadataPlugin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Extensions/CustomMetadataPlugin.zip -------------------------------------------------------------------------------- /toolbox/Templates/Extensions/ExtensionsRefIgnoreList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Extensions/ExtensionsRefIgnoreList.txt -------------------------------------------------------------------------------- /toolbox/Templates/Extensions/GenericPlugin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Extensions/GenericPlugin.zip -------------------------------------------------------------------------------- /toolbox/Templates/Extensions/IronPythonScript.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Extensions/IronPythonScript.zip -------------------------------------------------------------------------------- /toolbox/Templates/Extensions/PowerShellScript.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Extensions/PowerShellScript.zip -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/1.0.0-1.1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/1.0.0-1.1.0.txt -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/1.0.0.zip -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/1.1.0-1.2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/1.1.0-1.2.0.txt -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/1.1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/1.1.0.zip -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/1.2.0-1.3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/1.2.0-1.3.0.txt -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/1.2.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/1.2.0.zip -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/1.3.0-1.4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/1.3.0-1.4.0.txt -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/1.3.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/1.3.0.zip -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/1.4.0-1.4.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/1.4.0-1.4.1.txt -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/1.4.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/1.4.0.zip -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/1.4.1-1.5.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/1.4.1-1.5.0.txt -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/1.4.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/1.4.1.zip -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/1.5.0-1.6.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/1.5.0-1.6.0.txt -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/1.5.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/1.5.0.zip -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/1.6.0-1.7.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/1.6.0-1.7.0.txt -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/1.6.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/1.6.0.zip -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/1.7.0-1.8.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/1.7.0-1.8.0.txt -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/1.7.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/1.7.0.zip -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/1.8.0-1.9.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/1.8.0-1.9.0.txt -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/1.8.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/1.8.0.zip -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/1.9.0-2.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/1.9.0-2.0.0.txt -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/1.9.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/1.9.0.zip -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/2.0.0-2.1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/2.0.0-2.1.0.txt -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/2.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/2.0.0.zip -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/2.1.0-2.2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/2.1.0-2.2.0.txt -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/2.1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/2.1.0.zip -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/2.2.0-2.3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/2.2.0-2.3.0.txt -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/2.2.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/2.2.0.zip -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/2.3.0-2.4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/2.3.0-2.4.0.txt -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/2.3.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/2.3.0.zip -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/2.4.0-2.5.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/2.4.0-2.5.0.txt -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Changelog/2.4.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Changelog/2.4.0.zip -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Desktop/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Desktop/App.xaml -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Desktop/ControlGalleryView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Desktop/ControlGalleryView.xaml -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Desktop/GlobalResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Desktop/GlobalResources.xaml -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Desktop/Theme.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Desktop/Theme.csproj -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Desktop/Theme.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Desktop/Theme.sln -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Fonts/icofont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Fonts/icofont.ttf -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Fullscreen/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Fullscreen/App.xaml -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Fullscreen/ControlGalleryView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Fullscreen/ControlGalleryView.xaml -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Fullscreen/Fonts/PlayStation4.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Fullscreen/Fonts/PlayStation4.ttf -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Fullscreen/Fonts/TitilliumWeb-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Fullscreen/Fonts/TitilliumWeb-Black.ttf -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Fullscreen/Fonts/TitilliumWeb-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Fullscreen/Fonts/TitilliumWeb-Bold.ttf -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Fullscreen/Fonts/TitilliumWeb-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Fullscreen/Fonts/TitilliumWeb-BoldItalic.ttf -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Fullscreen/Fonts/TitilliumWeb-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Fullscreen/Fonts/TitilliumWeb-ExtraLight.ttf -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Fullscreen/Fonts/TitilliumWeb-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Fullscreen/Fonts/TitilliumWeb-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Fullscreen/Fonts/TitilliumWeb-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Fullscreen/Fonts/TitilliumWeb-Italic.ttf -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Fullscreen/Fonts/TitilliumWeb-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Fullscreen/Fonts/TitilliumWeb-Light.ttf -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Fullscreen/Fonts/TitilliumWeb-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Fullscreen/Fonts/TitilliumWeb-LightItalic.ttf -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Fullscreen/Fonts/TitilliumWeb-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Fullscreen/Fonts/TitilliumWeb-Regular.ttf -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Fullscreen/Fonts/TitilliumWeb-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Fullscreen/Fonts/TitilliumWeb-SemiBold.ttf -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Fullscreen/Fonts/TitilliumWeb-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Fullscreen/Fonts/TitilliumWeb-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Fullscreen/Fonts/XBOXONE.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Fullscreen/Fonts/XBOXONE.ttf -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Fullscreen/GlobalResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Fullscreen/GlobalResources.xaml -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Fullscreen/Theme.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Fullscreen/Theme.csproj -------------------------------------------------------------------------------- /toolbox/Templates/Themes/Fullscreen/Theme.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/Fullscreen/Theme.sln -------------------------------------------------------------------------------- /toolbox/Templates/Themes/LocSource.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Templates/Themes/LocSource.xaml -------------------------------------------------------------------------------- /toolbox/Toolbox.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Toolbox.exe -------------------------------------------------------------------------------- /toolbox/Toolbox.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Toolbox.exe.config -------------------------------------------------------------------------------- /toolbox/Toolbox.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/Toolbox.pdb -------------------------------------------------------------------------------- /toolbox/YamlDotNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psychonic/Playnite-EmuLibrary/HEAD/toolbox/YamlDotNet.dll --------------------------------------------------------------------------------