├── .cursor └── rules │ ├── general.mdc │ └── html.mdc ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── release.yml └── workflows │ └── release.yml ├── .gitignore ├── CONTRIBUTING.md ├── Directory.Build.props ├── Jellyfin.Plugin.MusicTags.sln ├── Jellyfin.Plugin.MusicTags ├── Api │ └── MusicTagsController.cs ├── Configuration │ ├── PluginConfiguration.cs │ └── configPage.html ├── Jellyfin.Plugin.MusicTags.csproj ├── MusicTagService.cs ├── Plugin.cs └── ScheduleTasks │ └── ProcessMusicTagsTask.cs ├── LICENSE.MD ├── README.md ├── dev ├── README.md ├── build-local.ps1 ├── build-local.sh ├── docker-compose.yml ├── logging.json └── meta-dev.json ├── images ├── config_page.png └── logo.jpg └── jellyfin.ruleset /.cursor/rules/general.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/.cursor/rules/general.mdc -------------------------------------------------------------------------------- /.cursor/rules/html.mdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/.cursor/rules/html.mdc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Jellyfin.Plugin.MusicTags.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/Jellyfin.Plugin.MusicTags.sln -------------------------------------------------------------------------------- /Jellyfin.Plugin.MusicTags/Api/MusicTagsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/Jellyfin.Plugin.MusicTags/Api/MusicTagsController.cs -------------------------------------------------------------------------------- /Jellyfin.Plugin.MusicTags/Configuration/PluginConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/Jellyfin.Plugin.MusicTags/Configuration/PluginConfiguration.cs -------------------------------------------------------------------------------- /Jellyfin.Plugin.MusicTags/Configuration/configPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/Jellyfin.Plugin.MusicTags/Configuration/configPage.html -------------------------------------------------------------------------------- /Jellyfin.Plugin.MusicTags/Jellyfin.Plugin.MusicTags.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/Jellyfin.Plugin.MusicTags/Jellyfin.Plugin.MusicTags.csproj -------------------------------------------------------------------------------- /Jellyfin.Plugin.MusicTags/MusicTagService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/Jellyfin.Plugin.MusicTags/MusicTagService.cs -------------------------------------------------------------------------------- /Jellyfin.Plugin.MusicTags/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/Jellyfin.Plugin.MusicTags/Plugin.cs -------------------------------------------------------------------------------- /Jellyfin.Plugin.MusicTags/ScheduleTasks/ProcessMusicTagsTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/Jellyfin.Plugin.MusicTags/ScheduleTasks/ProcessMusicTagsTask.cs -------------------------------------------------------------------------------- /LICENSE.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/LICENSE.MD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/README.md -------------------------------------------------------------------------------- /dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/dev/README.md -------------------------------------------------------------------------------- /dev/build-local.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/dev/build-local.ps1 -------------------------------------------------------------------------------- /dev/build-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/dev/build-local.sh -------------------------------------------------------------------------------- /dev/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/dev/docker-compose.yml -------------------------------------------------------------------------------- /dev/logging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/dev/logging.json -------------------------------------------------------------------------------- /dev/meta-dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/dev/meta-dev.json -------------------------------------------------------------------------------- /images/config_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/images/config_page.png -------------------------------------------------------------------------------- /images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/images/logo.jpg -------------------------------------------------------------------------------- /jellyfin.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jyourstone/jellyfin-musictags-plugin/HEAD/jellyfin.ruleset --------------------------------------------------------------------------------