[PR #6246] [CLOSED] Add support for TMDb episode groups II #10877

Closed
opened 2026-02-07 06:28:23 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/jellyfin/jellyfin/pull/6246
Author: @gpregger
Created: 6/30/2021
Status: Closed

Base: masterHead: TMDBEpisodeGroup


📝 Commits (8)

  • feb2e09 Added support for TMDb Episode Groups
  • 3a9d27b removed personal data from launch.json
  • b0d93d6 Merge branch 'jellyfin:master' into master
  • 361b8dd Fix merge conflict
  • c2612ad Add blank line after line 352 in accordance with style convention
  • a938aa1 Added summary remarks for EpisodeGroupId getter / setter
  • 17206f3 Update MediaBrowser.Providers/Plugins/Tmdb/TV/TmdbEpisodeProvider.cs
  • d750f8c Update MediaBrowser.Providers/Plugins/Tmdb/TmdbClientManager.cs

📊 Changes

12 files changed (+115 additions, -40 deletions)

View changed files

📝 .gitignore (+1 -0)
📝 MediaBrowser.Controller/Entities/TV/Series.cs (+13 -0)
📝 MediaBrowser.Controller/Providers/ItemLookupInfo.cs (+2 -0)
📝 MediaBrowser.Model/MediaBrowser.Model.csproj (+1 -0)
📝 MediaBrowser.Model/Providers/RemoteSearchResult.cs (+7 -0)
📝 MediaBrowser.Providers/Manager/MetadataService.cs (+1 -0)
📝 MediaBrowser.Providers/Manager/ProviderManager.cs (+5 -0)
📝 MediaBrowser.Providers/Plugins/Tmdb/TV/TmdbEpisodeImageProvider.cs (+1 -1)
📝 MediaBrowser.Providers/Plugins/Tmdb/TV/TmdbEpisodeProvider.cs (+1 -1)
📝 MediaBrowser.Providers/Plugins/Tmdb/TV/TmdbSeriesProvider.cs (+68 -4)
📝 MediaBrowser.Providers/Plugins/Tmdb/TmdbClientManager.cs (+8 -34)
📝 MediaBrowser.Providers/TV/SeriesMetadataService.cs (+7 -0)

📄 Description

Changes

Sorry for opening another PR, still learning this git thing...

Add support for choosing a specific episode group / episode order published on TMDb when identifying TV shows.
The different episode groups show up as separate search results and are tagged with the episode group name.
For Jellyfin-web to support this there is a corresponding pull request on jellyfin-web: #2679
Addresses following feature request: https://features.jellyfin.org/posts/1043/tvdb-episode-group-support
Possibly makes episode ordering (absolute / dvd) obsolete.

Note: My experience with large projects and C# are limited. I took several days to read into and understand the project code and tested the outcome for functionality and bugs. If this PR is rubbish, please do not hesitate to let me know.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/jellyfin/jellyfin/pull/6246 **Author:** [@gpregger](https://github.com/gpregger) **Created:** 6/30/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `TMDBEpisodeGroup` --- ### 📝 Commits (8) - [`feb2e09`](https://github.com/jellyfin/jellyfin/commit/feb2e09f7935239435a3f4a3325456b5452ed112) Added support for TMDb Episode Groups - [`3a9d27b`](https://github.com/jellyfin/jellyfin/commit/3a9d27b15b5cca44065880263905174ad93bf8be) removed personal data from launch.json - [`b0d93d6`](https://github.com/jellyfin/jellyfin/commit/b0d93d671c11cf256483f76834816823ba0a1491) Merge branch 'jellyfin:master' into master - [`361b8dd`](https://github.com/jellyfin/jellyfin/commit/361b8ddb7cc3c5bfced0c6f046432f6bf7c1ba8a) Fix merge conflict - [`c2612ad`](https://github.com/jellyfin/jellyfin/commit/c2612adfa7aec2ed0ecbaf12579d24909276d8b2) Add blank line after line 352 in accordance with style convention - [`a938aa1`](https://github.com/jellyfin/jellyfin/commit/a938aa1554891fd0afd41939c2839594c881d17a) Added summary remarks for EpisodeGroupId getter / setter - [`17206f3`](https://github.com/jellyfin/jellyfin/commit/17206f352e65728726a8a5edb8f16ca8989fbaa1) Update MediaBrowser.Providers/Plugins/Tmdb/TV/TmdbEpisodeProvider.cs - [`d750f8c`](https://github.com/jellyfin/jellyfin/commit/d750f8c5b1604482cfdbf7b83c8c02883c87bf44) Update MediaBrowser.Providers/Plugins/Tmdb/TmdbClientManager.cs ### 📊 Changes **12 files changed** (+115 additions, -40 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -0) 📝 `MediaBrowser.Controller/Entities/TV/Series.cs` (+13 -0) 📝 `MediaBrowser.Controller/Providers/ItemLookupInfo.cs` (+2 -0) 📝 `MediaBrowser.Model/MediaBrowser.Model.csproj` (+1 -0) 📝 `MediaBrowser.Model/Providers/RemoteSearchResult.cs` (+7 -0) 📝 `MediaBrowser.Providers/Manager/MetadataService.cs` (+1 -0) 📝 `MediaBrowser.Providers/Manager/ProviderManager.cs` (+5 -0) 📝 `MediaBrowser.Providers/Plugins/Tmdb/TV/TmdbEpisodeImageProvider.cs` (+1 -1) 📝 `MediaBrowser.Providers/Plugins/Tmdb/TV/TmdbEpisodeProvider.cs` (+1 -1) 📝 `MediaBrowser.Providers/Plugins/Tmdb/TV/TmdbSeriesProvider.cs` (+68 -4) 📝 `MediaBrowser.Providers/Plugins/Tmdb/TmdbClientManager.cs` (+8 -34) 📝 `MediaBrowser.Providers/TV/SeriesMetadataService.cs` (+7 -0) </details> ### 📄 Description Changes Sorry for opening another PR, still learning this git thing... Add support for choosing a specific episode group / episode order published on TMDb when identifying TV shows. The different episode groups show up as separate search results and are tagged with the episode group name. For Jellyfin-web to support this there is a corresponding pull request on jellyfin-web: [#2679](https://github.com/jellyfin/jellyfin-web/pull/2679) Addresses following feature request: https://features.jellyfin.org/posts/1043/tvdb-episode-group-support Possibly makes episode ordering (absolute / dvd) obsolete. Note: My experience with large projects and C# are limited. I took several days to read into and understand the project code and tested the outcome for functionality and bugs. If this PR is rubbish, please do not hesitate to let me know. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-07 06:28:23 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/jellyfin#10877