Skip to content

Releases: maxdorninger/MediaManager

1.12.3 - Hotfix

11 Feb 16:45
0cfd1fa

Choose a tag to compare

This release fixes a bug that prevented MM from downloading poster images.

What's Changed

  • Fix suffix formatting for with_suffix call by @ryadom in #408

New Contributors ❤️

Full Changelog: v1.12.2...v1.12.3

v1.12.2

08 Feb 19:18
b5b297e

Choose a tag to compare

This release fixes some critical bugs, makes searching torrents with Jackett better, and migrates the docs to Mkdocs.

Also the Docker images are now hosted on quay.io in addition to GHCR. This is mainly because of the atrocious download speeds from GHCR, downloading an image sometimes took 15 minutes, quay.io is way faster.

The container now automatically manages file permissions and you can configure which user the container runs as.

DigitalOcean is now also a sponsor of MediaManager, they provide credits on their platform so I can host the MetadataRelay! 🎉

What's Changed

New Contributors ❤️

New Sponsors ❤️

  • syn
  • DigitalOcean

Full Changelog: v1.12.1...v1.12.2

v1.12.1

05 Jan 09:06
87f10e2

Choose a tag to compare

This release fixes some bugs caused by the v1.12.0 release.

What's Changed

Full Changelog: v1.12.0...v1.12.1

MediaManager v1.12.0

04 Jan 14:04
1f12a7c

Choose a tag to compare

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

MediaManager v1.11.1

22 Dec 18:15
242efa7

Choose a tag to compare

Most importantly this release fixes/adds:

  • the "new version available" card always displaying
  • it add new config options for prowlarr and Jackett (timout_seconds and follow_redirects)
  • adds ability to delete movies/shows
  • remove pornography from search results
  • improves the frontend to load faster
  • fix bugs which caused the frontend to display incorrect data
  • fixes login with OAuth button which was broken with the v1.11.0 release

Please consider supporting my work ❤️

https://github.com/sponsors/maxdorninger
https://buymeacoffee.com/maxdorninger

What's Changed since v1.11.0

What's Changed since v1.10.0

New Contributors ❤️

  • @xNinjaKittyx made their first contribution in #271
  • @aasmoe made their first contribution in #273
  • Special thanks to @cachho for reporting some great issues, proposing good features and assisting others in solving their issues.

Full Changelog: v1.10.0...v1.11.1

MediaManager v1.11.0

21 Dec 19:58
c7c6158

Choose a tag to compare

Most importantly this release fixes/adds:

  • the "new version available" card always displaying
  • it add new config options for prowlarr and Jackett (timout_seconds and follow_redirects)
  • adds ability to delete movies/shows
  • remove pornography from search results
  • improves the frontend to load faster
  • fix bugs which caused the frontend to display incorrect data

Please consider supporting my work ❤️

https://github.com/sponsors/maxdorninger
https://buymeacoffee.com/maxdorninger

What's Changed

New Contributors ❤️

  • @xNinjaKittyx made their first contribution in #271
  • @aasmoe made their first contribution in #273
  • Special thanks to @cachho for reporting some great issues, proposing good features and assisting others in solving their issues.

Full Changelog: v1.10.0...v1.11.0

v1.10.0

07 Dec 23:41
06dadd2

Choose a tag to compare

Importing of your existing media library

This release adds support for importing existing media, for more information see the documentation.

Breaking Changes

You need to update the frontend_url variable in the config file, according to the updated docs.

What's Changed

New Contributors ❤️

  • @colinmarc made their first contribution in #211
  • @Copilot made their first contribution in #219

New Sponsors ❤️

Full Changelog: v1.9.1...v1.10.0

MediaManager v1.9.1

02 Nov 21:14
4ea70a4

Choose a tag to compare

This release focuses on improving the DX. It also fixes some bugs regarding the db, logging and the Github workflows.

What's Changed

New Contributors ❤️

  • @tylersatre made their first contribution in #184
  • @JasperJuergensen made their first contribution in #194

New Sponsors ❤️

Full Changelog: v1.9.0...v1.9.1

MediaManager v1.9.0

30 Oct 18:52
7c7c1b9

Choose a tag to compare

This release is all about how torrents are handled.

Redesign of download dialog

The dialog for downloading media was made more intuitive, by separating the input for the File Path Suffix into a second dialog.
The dialog now also displays the indexer that provided each torrent.
image

Shorter loading times

The backend has been updated as well, the processing of torrent search results from indexers is now multithreaded. This change improves loading times massively. During testing I found that loading times decreased from about 2 minutes to just 30 seconds!

Manual torrent management

You can now also tell MediaManager to retry downloading a torrent, manually mark it as imported or delete it.

image

New config var

When using Prowlarr, you can now decide if you want possibly invalid torrents downloaded. For more information see https://maxdorninger.github.io/MediaManager/indexer-settings.html#prowlarr-indexers-prowlarr

Please consider supporting my work ❤️

What's Changed

Full Changelog: v1.8.1...v1.9.0

MediaManager v1.8.1

28 Oct 08:07
fdffa38

Choose a tag to compare

This release doesn't add any new features, because there was a lot of refactoring and bug fixing work that needed to be done.

What's Changed

New Contributors

New Sponsors

Full Changelog: 1.8.0...v1.8.1