You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR adds a new user setting to hide movies that are not found in the Kodi library.
When enabled, the addon only displays movies present in the library, helping users filter out unavailable content.
This update adds a new user setting “Hide movies not in library” that lets users filter out movies not present in their Kodi library. It also bumps the addon version to 0.1.13 and updates the addon.xml news.
Description:
Feature:
New boolean setting “Hide movies not in library” in Settings → Options → Library.
When enabled, the addon skips any movie that is not found in the local Kodi library when displaying lists.
Helps users focus only on movies they already have locally.
Changes Made:
main.py
Reads the new setting once per movie list.
Checks tmdb_index to see if the movie exists locally.
Skips movies not in library if the setting is enabled.
resources/settings.xml & strings.po
Added the new toggle setting with proper labels and translations.
addon.xml
Bumped version to 0.1.13.
Added news entry:
0.1.13 add option to hide movies not found in local library
Behavior:
Setting
Movies Shown in Addon
Hide movies not in library = Off
All movies
Hide movies not in library = On
Only movies in library
Notes:
Uses tmdb_index to detect movies in the library.
Future improvement: could extend to TV shows or episodes.
Filtering is optional and controlled by the user, so performance impact is minimal.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds a new user setting to hide movies that are not found in the Kodi library.
When enabled, the addon only displays movies present in the library, helping users filter out unavailable content.