github maxdorninger/MediaManager v1.12.0
MediaManager v1.12.0

latest release: v1.12.1
7 days ago

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
done

file 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

New Contributors ❤️

New Sponsors

Full Changelog: v1.11.1...v1.12.0

Don't miss a new MediaManager release

NewReleases is sending notifications on new releases.