├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── LBGDBMetadata ├── Extensions │ ├── StreamExtensions.cs │ └── StringExtensions.cs ├── LBGDBMetadata.csproj ├── LaunchBox │ ├── Api │ │ ├── LbgdbApi.cs │ │ └── Options.cs │ ├── Image │ │ └── ImageType.cs │ ├── Metadata │ │ ├── Emulator.cs │ │ ├── EmulatorPlatform.cs │ │ ├── Game.cs │ │ ├── GameAlternateName.cs │ │ ├── GameImage.cs │ │ ├── Metadata.cs │ │ ├── Platform.cs │ │ └── PlatformAlternateName.cs │ ├── Region.cs │ └── RegionInfo.cs ├── LbgdbMetadataPlugin.cs ├── LbgdbMetadataProvider.cs ├── LbgdbMetadataSettings.cs ├── LbgdbMetadataSettingsView.xaml ├── LbgdbMetadataSettingsView.xaml.cs ├── MetaDataContext.cs ├── Migrations │ ├── 20200120043540_initialCreate.Designer.cs │ ├── 20200120043540_initialCreate.cs │ ├── 20200122165300_videos.Designer.cs │ ├── 20200122165300_videos.cs │ └── MetaDataContextModelSnapshot.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── launchbox.ico ├── extension.yaml └── lbgdb.db ├── LBGDBMetadataPlugin.sln └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LBGDBMetadata/Extensions/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/Extensions/StreamExtensions.cs -------------------------------------------------------------------------------- /LBGDBMetadata/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /LBGDBMetadata/LBGDBMetadata.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/LBGDBMetadata.csproj -------------------------------------------------------------------------------- /LBGDBMetadata/LaunchBox/Api/LbgdbApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/LaunchBox/Api/LbgdbApi.cs -------------------------------------------------------------------------------- /LBGDBMetadata/LaunchBox/Api/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/LaunchBox/Api/Options.cs -------------------------------------------------------------------------------- /LBGDBMetadata/LaunchBox/Image/ImageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/LaunchBox/Image/ImageType.cs -------------------------------------------------------------------------------- /LBGDBMetadata/LaunchBox/Metadata/Emulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/LaunchBox/Metadata/Emulator.cs -------------------------------------------------------------------------------- /LBGDBMetadata/LaunchBox/Metadata/EmulatorPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/LaunchBox/Metadata/EmulatorPlatform.cs -------------------------------------------------------------------------------- /LBGDBMetadata/LaunchBox/Metadata/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/LaunchBox/Metadata/Game.cs -------------------------------------------------------------------------------- /LBGDBMetadata/LaunchBox/Metadata/GameAlternateName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/LaunchBox/Metadata/GameAlternateName.cs -------------------------------------------------------------------------------- /LBGDBMetadata/LaunchBox/Metadata/GameImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/LaunchBox/Metadata/GameImage.cs -------------------------------------------------------------------------------- /LBGDBMetadata/LaunchBox/Metadata/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/LaunchBox/Metadata/Metadata.cs -------------------------------------------------------------------------------- /LBGDBMetadata/LaunchBox/Metadata/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/LaunchBox/Metadata/Platform.cs -------------------------------------------------------------------------------- /LBGDBMetadata/LaunchBox/Metadata/PlatformAlternateName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/LaunchBox/Metadata/PlatformAlternateName.cs -------------------------------------------------------------------------------- /LBGDBMetadata/LaunchBox/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/LaunchBox/Region.cs -------------------------------------------------------------------------------- /LBGDBMetadata/LaunchBox/RegionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/LaunchBox/RegionInfo.cs -------------------------------------------------------------------------------- /LBGDBMetadata/LbgdbMetadataPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/LbgdbMetadataPlugin.cs -------------------------------------------------------------------------------- /LBGDBMetadata/LbgdbMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/LbgdbMetadataProvider.cs -------------------------------------------------------------------------------- /LBGDBMetadata/LbgdbMetadataSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/LbgdbMetadataSettings.cs -------------------------------------------------------------------------------- /LBGDBMetadata/LbgdbMetadataSettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/LbgdbMetadataSettingsView.xaml -------------------------------------------------------------------------------- /LBGDBMetadata/LbgdbMetadataSettingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/LbgdbMetadataSettingsView.xaml.cs -------------------------------------------------------------------------------- /LBGDBMetadata/MetaDataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/MetaDataContext.cs -------------------------------------------------------------------------------- /LBGDBMetadata/Migrations/20200120043540_initialCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/Migrations/20200120043540_initialCreate.Designer.cs -------------------------------------------------------------------------------- /LBGDBMetadata/Migrations/20200120043540_initialCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/Migrations/20200120043540_initialCreate.cs -------------------------------------------------------------------------------- /LBGDBMetadata/Migrations/20200122165300_videos.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/Migrations/20200122165300_videos.Designer.cs -------------------------------------------------------------------------------- /LBGDBMetadata/Migrations/20200122165300_videos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/Migrations/20200122165300_videos.cs -------------------------------------------------------------------------------- /LBGDBMetadata/Migrations/MetaDataContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/Migrations/MetaDataContextModelSnapshot.cs -------------------------------------------------------------------------------- /LBGDBMetadata/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LBGDBMetadata/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /LBGDBMetadata/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/Properties/Resources.resx -------------------------------------------------------------------------------- /LBGDBMetadata/Resources/launchbox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/Resources/launchbox.ico -------------------------------------------------------------------------------- /LBGDBMetadata/extension.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/extension.yaml -------------------------------------------------------------------------------- /LBGDBMetadata/lbgdb.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadata/lbgdb.db -------------------------------------------------------------------------------- /LBGDBMetadataPlugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/LBGDBMetadataPlugin.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spektor56/LBGDBPlaynitePlugin/HEAD/README.md --------------------------------------------------------------------------------