new features
multi-language metadata support
MediaManager can add and search for your media in languages other than english!
improved indexer accuracy
The way MM queries Prowlarr and Jackett has been enhanced. Loading times when using Prowlarr are now also super short. Moreover, MM now uses IMDb/TMDB/TVDB IDs when searching for torrents if supported, boosting search result accuracy.
logs
The amount of logs has been reduced. You can now also set the log level, which was up until now DEBUG by default, but will be INFO from now on.
Breaking Changes
directory name fixes
@briandipalma caught a bug that caused two spaces between a movies year and TMDB/TVDB ID.
e.g. a movies Directory was this
Oppenheimer (2023) [tmdbid-1234]
instead of the following
Oppenheimer (2023) [tmdbid-1234]
I don't know how long exactly this bug has been around, so there's a high chance you need to rename all directories.
I made a bash script with an LLM that renames all the directories, you just need to execute it in your movie and tv directories:
for dir in *") ["*; do
# Check if it is actually a directory to avoid processing files
if [ -d "$dir" ]; then
# Replace the double space with a single space
# ${variable//search/replace} performs the substitution
new_name="${dir/ [/ [}"
echo "Renaming: '$dir' -> '$new_name'"
# Perform the rename
mv "$dir" "$new_name"
fi
donefile system permissions
the docker image will now be rootless, which will probably cause some file system permission errors. To fix them you just need to chown the media, config and image mounts recursively.
settings
the reject_torrents_on_url_error and follow_redirects config variables have been removed, you must remove them from your config file too
What's Changed
- Feat/multi language metadata by @aasmoe in #270
- Add IMDb id's by @maxdorninger in #313
- fix: allow container to run as non-root user by @yangqi in #314
- Improve indexer accuracy by @maxdorninger in #317
- fix: set success variable when importing movie by @maxdorninger in #320
- Reduce amount of logs by @maxdorninger in #323
- feat(importing): Only add one space between release year and release ID by @briandipalma in #324
- Refactor code by @maxdorninger in #325
- Allow frontend files to be followed through symlinks by @strangeglyph in #333
- allow sorting of torrent results in web ui by @hellow554 in #334
- Organize frontend components into folders by @maxdorninger in #338
- deduplicate code in the download movie/season dialogs by @maxdorninger in #339
- Include show year in season search query by @maxdorninger in #342
- add sponsor @seferino-fernandez by @maxdorninger in #343
New Contributors ❤️
- @yangqi made their first contribution in #314
- @briandipalma made their first contribution in #324
- @strangeglyph made their first contribution in #333
- @hellow554 made their first contribution in #334
New Sponsors
Full Changelog: v1.11.1...v1.12.0