Skip to content

Release history

trailarr releases

Trailarr is a Docker application to download and manage trailers for your Radarr and Sonarr libraries.

All releases

16 shown

No immediate action
v0.9.5 Bug fix

Direct Install fix

v0.9.4 New feature
⚠ Upgrade required
  • If using a reverse‑proxy sub‑directory setup, ensure headers X-Forwarded-For, X-Forwarded-Proto, X-Forwarded-Host, and X-Forwarded-Prefix are forwarded per the updated Reverse Proxy Configuration docs.
Notable features
  • Expanded and Table view modes with customizable field display
  • Allowed Uploader IDs setting in Trailer Profiles to restrict YouTube channel sources
Full changelog

v0.9.4-beta - May 10, 2026

What's New:

  • Refactored most of the frontend to fix some issues that were overlooked when updates were made to relevant logic in backend; and overhauled the UI styling to ensure everything is consistent.
  • Added Expanded and Table views in media pages with an option to select fields to display. Fixes #306.
  • Added Allowed Uploader IDs setting to Trailer Profiles — restrict trailer searches to specific YouTube channels by providing a comma-separated list of uploader handles (e.g. @WarnerBrosPictures) or channel IDs. Leave empty to allow all channels. See Search Settings for details. Fixes #59.

Bug Fixes: 🐛

  • Fixed trailer search downloading vertical videos (YouTube Shorts). The search filter now rejects any result whose URL contains /shorts/, which yt-dlp sets at search time for Shorts content. Fixes #468.

Other Changes:

  • Updated Python and npm packages to latest versions.
  • Improved URL_BASE / reverse-proxy support — Trailarr now serves the frontend correctly at both the local URL (http://your-ip:7889/) and the sub-directory URL (https://mydomain.com/trailarr/) simultaneously. Previously, setting URL_BASE broke direct local access. If you use a reverse proxy with a sub-directory setup, please review your configuration to ensure the recommended headers (X-Forwarded-For, X-Forwarded-Proto, X-Forwarded-Host, X-Forwarded-Prefix) are forwarded correctly — see the Reverse Proxy Configuration docs for updated examples.
v0.9.3 Bug fix
Notable features
  • Refresh Plex Trailer Flags Task caches trailer presence weekly to reduce Plex API calls
  • Plex refresh summary log reports sections scanned, items added/updated/linked in a single line
  • Plex section skip detection logs skipped sections up front instead of per‑media item
Full changelog

v0.9.3-beta - May 08, 2026

What's New:

  • Refresh Plex Trailer Flags Task — New weekly task that caches whether Plex already has a trailer for each media item, eliminating repeated Plex API calls during every download run. See Tasks for details.
  • Plex refresh summary log — The Plex connection refresh now logs a single summary line at completion: how many library sections were scanned (vs total), and how many media items were added, updated, or newly linked. Example: Plex refresh complete for 'My Plex': 2/5 sections scanned, 12 added, 847 updated, 3 newly linked.
  • Plex section skip detection — Library sections whose root folders don't match any configured path mapping are now detected and skipped up front with a single log line per section, instead of logging one line per media item in that section.
  • Docs - Switched docs from Material for Mkdocs to Zensical which is a ground-up rebuild of the MAterial for Mkdocs by the same team. Refactored docs to make them work with Zensical.

Bug Fixes: 🐛

  • Fixed Tasks page showing stale data after navigating away and back. The tasks data is now refreshed on every visit to the Tasks page, so completed or running tasks are always reflected immediately on return.
  • Fixed WebSocket connection and API calls failing when WebUI authentication is disabled. The WebSocket was connecting before the backend had a chance to set the session cookie, causing an immediate 401 rejection with no reconnect. The connection is now established only after the auth check confirms the session cookie is in place.
  • Fixed Plex library scan request failing after a trailer is downloaded. Plex's scan endpoint returns 200 text/html (not JSON), which caused a ContentTypeError when the code tried to parse the response as JSON. The scan now checks only the HTTP status code and ignores the response body. Fixes #557.
  • Fixed the download missing trailers task sleeping between downloads even when a trailer was skipped (e.g. Plex already has a trailer). The sleep (120–660 seconds) is now only applied after an actual download attempt, not on skips. Fixes #558.

Other Changes:

  • Centralised all path-mapping logic (subpath matching, path remapping, trailing-slash normalisation) into a single shared utility module used by all connection managers and the database layer. Fixes silent mapping failures when path_from and incoming paths use different separators (e.g. backslash vs forward slash on Windows), false-positive matches against sibling directories, and missing trailing-slash normalisation for Windows UNC paths (\\server\share).
v0.9.2 Breaking risk
Notable features
  • Instant client‑side search with bracket filter syntax ([id=], [YYYY], etc.)
  • Toast notifications now show type icons, close button, progress bar and pin option
Full changelog

v0.9.2-beta - May 06, 2026

What's New:

  • Improved Search — Search is now instant (client-side, no API call). Results include the connection name so the same title from different connections (e.g. Radarr + Plex) can be told apart. Search now supports bracket filter syntax for precise lookups — see Search Documentation for details:
    • [id=<number>] — exact Trailarr ID match (e.g. [id=2])
    • [YYYY] (4 digits) — exact year match (e.g. [2026])
    • [anything else] — searches language, IMDb ID, TXDB ID, Studio, YouTube ID (e.g. [tt0133093], [Warner])
    • Multiple brackets are AND'd together: z [2026] [english] returns titles containing "z", year 2026, language English.
  • Toast Notification Improvements — Toast messages now show a type icon (✓ success, ⚠ error, ℹ info), a close button to dismiss immediately, and a progress bar that depletes over 3 seconds. Hovering over the toast will pause timer and show an option to pin it open (hides the progress bar) until manually closed.
  • Latest Jobs Only - Tasks page now only displays the latest job for scheduled tasks.

Bug Fixes: 🐛

  • Fixed trailer_exists not being corrected to True when trailers already exist on disk but the flag is stale False (e.g. after a manual file copy or an app restart). The files scan now reconciles the flag upward as well as downward.
  • Fixed trailer_exists being incorrectly flipped to True mid-download when a multi-profile download is in progress. Both the new-trailer detection loop and the reconciliation step now skip the upward correction when monitor=True, preventing a race condition where setting the flag early would force monitoring off and cancel pending profile downloads.
  • Fixed several UI typos: MinuimumMinimum, MaximunMaximum, seperateseparate, atmostat most, atleastat least, YoutubeYouTube.

Other Changes:

  • Refactored scan_media_folder in the files scan task into focused helpers (_handle_folder_gone, _process_trailer_changes) so flag reconciliation logic is consolidated in one place.
  • Updated Search documentation to document the bracket filter syntax.
  • Updated Python and npm packages to latest versions.
  • Moved notifications into it's own component to keep the app component simple.
v0.9.1 Breaking risk
Notable features
  • New `FILES_FULL_SCAN` env var and UI setting forces next Scan Media Folders run to perform a full scan of all folders, automatically resetting after completion
  • Removed restrictions on the Download button in media details page
Full changelog

v0.9.1-beta - May 4, 2026

What's New:

  • Force Full Files Scan — New FILES_FULL_SCAN setting (env var and General Settings UI) that forces the next Scan Media Folders run to scan every folder in full, bypassing the folder-change optimisation. Designed as a one-shot fix for users with stale trailer_exists or media_exists flags in folders with no recent file-system activity. The setting automatically resets to false once the full scan completes.

Bug Fixes: 🐛

  • Fixed a PermissionError on container startup when URL_BASE is set — index.html is now owned by appuser at startup so it can apply the <base href> patch at runtime.
  • Removed restrictions on the Download button in media details page. Previously it was checking for trailer_exists=false and youtube_trailer_id changed before sending the request - both restrictions removed.
  • Fixed trailer_exists not being reset to False when a trailer file is deleted externally (outside Trailarr). The files scan now correctly clears the flag — and resets media_exists too — when the media folder is no longer accessible. Related to #486
  • Fixed stale media_exists values left over from older versions. The files scan now reconciles media_exists against disk after every folder scan, correcting both false-positives and false-negatives.
  • Fixed trailer_exists and trailer_exists-adjacent status updates not preserving DOWNLOADING status. Resetting the flag while a download is in progress no longer clobbers the active download status.
  • Fixed Plex-only media items (no Radarr/Sonarr backing) always having media_exists = False and an empty media_filename after a Plex refresh. These fields are now populated from the Plex Media.Part.file path on creation and kept in sync on subsequent refreshes.

Other Changes:

  • Plex connection refresh no longer writes to the database when nothing has changed. update_plex_fields now compares existing values before committing, eliminating redundant writes on every routine Plex sync.
  • Plex refresh no longer overwrites media_filename for Arr-linked media items. Only Plex-only rows (arr_id = 0) have their filename updated by Plex, preventing a circular overwrite loop between Arr and Plex refreshes.
  • Minor changes to the media card to ensure the animations are subtle but noticeable.
  • Some more polishing and minor updates to the direct install script for Windows.
v0.9.0 Breaking risk
⚠ Upgrade required
  • Existing direct‑install users must uninstall and reinstall to receive the new native service support across Linux, macOS, and Windows; keep the data directory during uninstall to preserve configuration and database.
  • Direct install scripts now fully support Linux, macOS, and Windows with native system services (systemd/launchd/Task Scheduler) and GPU acceleration.
Breaking changes
  • Removed the Delete button from Media Details page; use files section deletion instead.
Notable features
  • Plex Integration: automatic media linking, trailer detection, skip if Plex trailer setting (480p–2160p default 1080p), and trigger Plex scan after download.
  • New events tracked for Plex-linked media: Plex Linked, Plex Unlinked, Plex Scan Triggered, Arr Linked, Arr Unlinked.
  • Media Details page now shows Plex trailer status when a Plex connection is configured.
Full changelog

v0.9.0-beta - April 30, 2026

What's New:

  • Plex Integration — Trailarr can now connect to your Plex Media Server! Adding a Plex connection enables:
    • Automatic media linking — Trailarr matches your Radarr/Sonarr media to the corresponding Plex library entries and keeps them in sync.
    • Plex trailer detection — Trailarr checks whether Plex already has a remote trailer for a media item. Internet-sourced trailers are counted; locally added file trailers are excluded.
    • Skip if Plex trailer — New profile setting to skip downloading a trailer if Plex already has one at or above a configurable resolution threshold (480p–2160p, default 1080p).
    • Notify Plex — New profile setting to trigger a Plex library scan after a trailer is downloaded, so it appears in Plex immediately.
    • See Plex Connection Setup to get started, and the Plex profile settings reference for configuration details.
  • New Events — New event types are tracked for Plex-linked media: Plex Linked, Plex Unlinked, Plex Scan Triggered, Arr Linked, and Arr Unlinked. See the Events page for details.
  • Plex trailer status on Media Details — When a Plex connection is configured, the media details page shows whether Plex already has a trailer for that item.
  • Media-Deails Page > Download Button - Removed restrictions on when the Download button is shown as we now support multiple trailers download.
  • Media-Deails Page > Delete Button - Removed as this was deleting the first trailer file found in the media folder - ambiguous when a media has multiple trailers. Use the delete option from the files section instead.
  • Batch Edit > Delete - This now shows a confirmation dialog before deleting, and deletes all trailers of that media item.
  • New Login Page - Instead of a browser login, frontend now has a dedicated login page, along with some improvements to how authentication is handled. Logout button was always a bit flaky - this has been fixed. When WEBUI_DISABLE_AUTH=true login page is skipped and logout button is hidden.

Bug Fixes: 🐛

  • Fixed an issue related to changing files ownership of app files which was causing issues on Proxmox. Fixes #539.
  • Added a check for file size less than 100 MB to be considered a trailer - helps when media title has trailer in it. Thanks to @Josh on Discord for the idea.
  • Removed restrictions on when Download button is shown in Media Details page. Fixes #486.
  • Fixed an issue which prevented loading more than 50 items (on scroll event not triggered) on large screens. Fixes #546.

Other Changes:

  • Faster Files Scan for large libraries — The Scan Media Folders task now checks folder modification times before doing a full recursive scan. If neither the media folder nor any of its immediate subdirectories (e.g., Trailers/) have changed since the last scan, the folder is skipped entirely. User-initiated scans always run in full. This significantly reduces scan time for large libraries where most folders are unchanged between runs.
  • Direct Installation — The direct install scripts have been overhauled and now fully support Linux, macOS, and Windows. Includes a native system service on each platform (systemd / launchd / Task Scheduler), GPU hardware acceleration (NVIDIA, Intel, AMD), and a trailarr CLI for managing the service. A new Build and Install guide has also been added for users who want to set up each step manually.

[!WARNING]
Existing Direct Install users
If you installed Trailarr using direct install previously, please uninstall and reinstall to pick up all the fixes and improvements. Your data will not be lost — when prompted during uninstall, choose to keep the data directory, then run the installer again. It will detect and reuse your existing configuration and database.

  • Updated relevant documentation pages to reflect new Plex features.
v0.8.0 New feature
Notable features
  • Migration to quiv scheduler
  • Graceful task cancellation
  • Task pause/resume capability
v0.7.2 Bug fix

Database handling was hardened to prevent lock errors using separate read/write sessions with exclusive write locking, and file naming now reflects actual video and audio codecs, fixing download issues.

v0.7.1 Mixed
Notable features
  • --sleep-subtitles 15 option delays subtitle downloads by 15 seconds (fixes #482)
Full changelog

v0.7.1-beta - April 04, 2026

What's New:

  • Added --sleep-subtitles 15 yt-dlp option to sleep for 15 seconds before subtitles download. Fixes #482{_target="_blank"}.

Bug Fixes: 🐛

  • Fixed minor layout issues in Logs to ensure consistency and visibility.

Other Changes:

  • Updated various python and npm packages to latest versions.
  • Dependabot updates now includes github-actions and uses uv instead of pip for backend updates.
v0.7.0 New feature
Notable features
  • Events Tracking System
  • Events API
  • Redesigned Logs page with traceback dialog
v0.6.9 Bug fix

Fixed issue where clicking Add New button in Custom Filters dialog would immediately close the dialog.

v0.6.7 New feature
Notable features
  • DELETE_CORRUPTED_TRAILERS env var
  • URL Base normalization
  • Enhanced reverse proxy support
v0.6.6 New feature
Notable features
  • File presence indicators
  • Traceback search in logs
  • Disable WebUI auth option
v0.6.5 New feature
Notable features
  • Files tracking
  • Has File/Has Folder filters
  • Zoneless Angular frontend

Beta — feedback welcome: [email protected]