Update your plugin using the dev manifest or by downloading the release from GitHub Releases and installing it manually!
Changes since last build:
feat: Add shoko preferred descriptions.
misc: Pass country code to content rating util + more:
-
Pass the metadata country code from the library along to the content rating utility to-be used to figure out the TMDB content rating to use for the library, but since the TMDB data won't be available until after the next stable release then the rest will wait. Expect a follow up commit hooking up the rest soon-ish.
-
Fixed up the misleading names of the production location methods and simplify their return value type so we can just pass it along instead of doing another conversion on it before using it.
misc: Remove unused logger:
- Remove the unused logger from the custom movie provider.
misc: Visually correct 'expert mode' to 'advanced mode' in the UI:
- Visually correct what I personally refer to as 'expert mode' to 'advanced mode' to be consistent with the upcoming documentation.
It will still be referred to as 'expert mode' in the code.
refactor: Remove *Override settings:
- Remove all
*Overridesettings now that the expert/advanced mode exists.
refactor: Get movie images using episode id.
misc: Allow VFS to auto-select thread count based on cpu if setting is set to 0.
misc: Move server version in config.
feat: Add image metadata settings.
misc: Demote title selectors:
-
Demote title selectors from expert/advanced mode to not needing it.
-
Move checkboxes below the title selectors.
fix: Replace sync locking with async locking:
- Replaced the sync locking using
lock (obj)in the media folder configuration service with async locking using a semaphore slim.