├── .editorconfig ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-error-found-in-the-guide.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── labeler.yml ├── scripts │ ├── update-changelog.sh │ └── update-contributors.js ├── stale.yml └── workflows │ ├── automatic-changelog.yml │ ├── conflicts.yml │ ├── custom-format-validation.yml │ ├── deploy-pr.yml │ ├── deploy.yml │ ├── hold-merge.yml │ ├── labeler.yml │ ├── lint-editor.yml │ ├── lint-markdown.yml │ ├── lint-yaml.yml │ ├── metadata-validation.yml │ ├── mkdocs_bug_prevent.yml │ ├── pr-naming-check.yml │ ├── trigger-pr-deploy.yml │ └── update_contributors.yml ├── .gitignore ├── .imgbotconfig ├── .markdownlint.yaml ├── .pre-commit-config.yaml ├── .vscode ├── extensions.json └── settings.json ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── docs ├── .pages ├── Bazarr │ ├── .pages │ ├── After-install-configuration.md │ ├── Bazarr-suggested-scoring.md │ ├── Setup-Guide.md │ ├── images │ │ ├── languages-profile.png │ │ ├── mass-edit.png │ │ ├── qs-anti-captcha.png │ │ ├── qs-automatic-subtitles-sync.png │ │ ├── qs-cutoff.png │ │ ├── qs-default-settings.png │ │ ├── qs-languages-profiles.png │ │ ├── qs-performance-optimization.png │ │ ├── qs-providers.png │ │ ├── qs-radarr-options.png │ │ ├── qs-radarr-path-mappings-add.png │ │ ├── qs-radarr-path-mappings-mapped.png │ │ ├── qs-radarr-path-mappings.png │ │ ├── qs-radarr.png │ │ ├── qs-save.png │ │ ├── qs-settings-languages.png │ │ ├── qs-settings-providers.png │ │ ├── qs-settings-radarr.png │ │ ├── qs-settings-sonarr.png │ │ ├── qs-settings-subtitles.png │ │ ├── qs-sonarr-options.png │ │ ├── qs-sonarr-path-mappings-add.png │ │ ├── qs-sonarr-path-mappings-mapped.png │ │ ├── qs-sonarr-path-mappings.png │ │ ├── qs-sonarr.png │ │ ├── qs-subtitles-language.png │ │ ├── qs-subtitles-options.png │ │ ├── select-all.png │ │ ├── settings-radarr-options-minimum-score.png │ │ ├── settings-sonarr-options-minimum-score.png │ │ └── settings-subtitles-sync-score.png │ ├── index.md │ └── scripts │ │ ├── 2to3-language-code │ │ └── 2to3_language_code.sh │ │ └── index.md ├── CNAME ├── Downloaders │ ├── .pages │ ├── 3rd-party-tools.md │ ├── Deluge │ │ ├── .pages │ │ ├── Basic-Setup.md │ │ ├── Installing.md │ │ ├── Port-Forwarding.md │ │ ├── Tips │ │ │ ├── Plugins.md │ │ │ ├── Thin-Client.md │ │ │ ├── Unraid-Mover.md │ │ │ └── images │ │ │ │ ├── Unraid-settings-user-scripts-deluge-mover-cron.png │ │ │ │ ├── Unraid-settings-user-scripts-deluge-mover-schedule.png │ │ │ │ ├── Unraid-settings-user-scripts-deluge-mover.png │ │ │ │ ├── Unraid-settings-user-scripts-edit-deluge-mover.png │ │ │ │ ├── Unraid-settings-user-scripts-edit-requests.png │ │ │ │ ├── Unraid-settings-user-scripts-icon.png │ │ │ │ ├── Unraid-settings-user-scripts-requests-schedule.png │ │ │ │ ├── Unraid-settings-user-scripts-requests.png │ │ │ │ ├── Unraid-user-scripts-add-new-script-enter-name-deluge.png │ │ │ │ ├── Unraid-user-scripts-add-new-script-enter-name.png │ │ │ │ ├── Unraid-user-scripts-add-new-script-icon.png │ │ │ │ ├── slackware-search-v15.png │ │ │ │ ├── slackware-search-v16.png │ │ │ │ └── unraid-app-python.png │ │ ├── Using-Labels.md │ │ ├── images │ │ │ ├── Deluge-about.png │ │ │ ├── Deluge-bandwidth-settings.png │ │ │ ├── Deluge-download-settings.png │ │ │ ├── Deluge-globalbw-settings.png │ │ │ ├── Deluge-goals-rotation.png │ │ │ ├── Deluge-goals-settings.png │ │ │ ├── Deluge-label-add.png │ │ │ ├── Deluge-label-bw.png │ │ │ ├── Deluge-label-folders.png │ │ │ ├── Deluge-network-extras-public.png │ │ │ ├── Deluge-network-extras-upnp.png │ │ │ ├── Deluge-network-extras.png │ │ │ ├── Deluge-network-settings.png │ │ │ ├── Deluge-plugin-settings.png │ │ │ ├── Deluge-port-forwarding.png │ │ │ ├── Deluge-queue-settings.png │ │ │ ├── Deluge-tc-connman.png │ │ │ ├── Deluge-tc-daemon.png │ │ │ ├── Deluge-tc-settings.png │ │ │ └── Deluge-torrentbw-settings.png │ │ └── index.md │ ├── NZBGet │ │ ├── .pages │ │ ├── Basic-Setup.md │ │ ├── Paths-and-Categories.md │ │ ├── images │ │ │ ├── categories.png │ │ │ ├── checkAndRepair.png │ │ │ ├── extScripts.png │ │ │ ├── extension-manager.png │ │ │ ├── incoming.png │ │ │ ├── logging.png │ │ │ ├── newsservers.png │ │ │ ├── paths.png │ │ │ ├── queue.png │ │ │ ├── radarr-download-clients-nzbget.png │ │ │ ├── radarr-settings-download-clients.png │ │ │ ├── sonarr-download-clients-nzbget.png │ │ │ ├── sonarr-settings-download-clients.png │ │ │ └── unpack.png │ │ ├── index.md │ │ └── scripts │ │ │ ├── Clean │ │ │ └── Clean.py │ │ │ ├── index.md │ │ │ └── replace_for │ │ │ └── replace_for.py │ ├── SABnzbd │ │ ├── .pages │ │ ├── Basic-Setup.md │ │ ├── Paths-and-Categories.md │ │ ├── images │ │ │ ├── radarr-download-clients-sabnzbd.png │ │ │ ├── radarr-settings-download-clients.png │ │ │ ├── sabnzbd-categories-replace_for.png │ │ │ ├── sabnzbd-categories.png │ │ │ ├── sabnzbd-category-breakdown.png │ │ │ ├── sabnzbd-folders-system-folders.png │ │ │ ├── sabnzbd-folders.png │ │ │ ├── sabnzbd-general-tuning.png │ │ │ ├── sabnzbd-servers.png │ │ │ ├── sabnzbd-special-host-whitelist.png │ │ │ ├── sabnzbd-switches-post-processing.png │ │ │ ├── sabnzbd-switches-queue-clean.png │ │ │ ├── sabnzbd-switches-queue-unwanted.png │ │ │ ├── sabnzbd-switches-queue.png │ │ │ ├── sabnzbd-unable-to-connect-to-sabnzbd.png │ │ │ ├── sonarr-download-clients-sabnzbd.png │ │ │ ├── sonarr-settings-download-clients.png │ │ │ └── starr-unable-to-connect-to-sabnzbd.png │ │ ├── index.md │ │ └── scripts │ │ │ ├── Clean │ │ │ └── Clean.py │ │ │ ├── index.md │ │ │ └── replace_for │ │ │ └── replace_for.py │ ├── index.md │ ├── qBittorrent │ │ ├── .pages │ │ ├── Basic-Setup.md │ │ ├── How-to-add-categories.md │ │ ├── Paths.md │ │ ├── Port-forwarding.md │ │ ├── Tips │ │ │ ├── How-to-run-the-unRaid-mover-for-qBittorrent.md │ │ │ ├── Themes-and-UI-replacements.md │ │ │ └── images │ │ │ │ ├── Unraid-settings-user-scripts-icon.png │ │ │ │ ├── Unraid-settings-user-scripts-list-select-qbit-api.png │ │ │ │ ├── Unraid-settings-user-scripts-list-select-qbit-mover.png │ │ │ │ ├── Unraid-settings-user-scripts-qbit-api-run-background.png │ │ │ │ ├── Unraid-settings-user-scripts-qbit-api-schedule.png │ │ │ │ ├── Unraid-settings-user-scripts-qbit-api.png │ │ │ │ ├── Unraid-settings-user-scripts-qbit-mover-cron.png │ │ │ │ ├── Unraid-settings-user-scripts-qbit-mover-schedule.png │ │ │ │ ├── Unraid-settings-user-scripts-qbit-mover.png │ │ │ │ ├── Unraid-user-scripts-add-new-script-enter-name-qbt.png │ │ │ │ ├── Unraid-user-scripts-add-new-script-enter-name.png │ │ │ │ ├── Unraid-user-scripts-add-new-script-icon.png │ │ │ │ ├── slackware-search-v15.png │ │ │ │ ├── slackware-search-v16.png │ │ │ │ └── unraid-app-python.png │ │ ├── images │ │ │ ├── qb-add-category.png │ │ │ ├── qb-category-breakdown.png │ │ │ ├── qb-new-category.png │ │ │ ├── qb-options-bittorrent-automatically-add-these-trackers.png │ │ │ ├── qb-options-bittorrent-privacy.png │ │ │ ├── qb-options-bittorrent-seeding-limits.png │ │ │ ├── qb-options-bittorrent-torrent-queueing.png │ │ │ ├── qb-options-downloads-saving-management.png │ │ │ ├── qb-options-downloads-when-adding-a-torrent.png │ │ │ ├── qb-options-webui-authentication.png │ │ │ ├── qb-options-webui-security.png │ │ │ ├── qb-saving-management.png │ │ │ ├── qbt-options-connection-connections-limits.png │ │ │ ├── qbt-options-connection-proxy-server.png │ │ │ ├── qbt-options-connection.png │ │ │ ├── qbt-options-speed-alternative-rate-limits.png │ │ │ ├── qbt-options-speed-global-rate-limits.png │ │ │ ├── qbt-options-speed-rate-limits-settings.png │ │ │ └── qbt-pf-connection.png │ │ └── index.md │ └── ruTorrent │ │ ├── index.md │ │ └── ruTorrent-Basic-Setup.md ├── File-and-Folder-Structure │ ├── .pages │ ├── Check-if-hardlinks-are-working.md │ ├── Examples.md │ ├── Hardlinks-and-Instant-Moves.md │ ├── How-to-set-up │ │ ├── Docker.md │ │ ├── Dockstarter.md │ │ ├── Native.md │ │ ├── Synology.md │ │ ├── TrueNAS-Core.md │ │ ├── Unraid.md │ │ ├── Windows.md │ │ ├── images │ │ │ ├── adduser.PNG │ │ │ ├── adduser_2.PNG │ │ │ ├── adduser_3.PNG │ │ │ ├── create_share.png │ │ │ ├── ds-deluge-preferences-downloads.png │ │ │ ├── ds-nzbget-settings-categories.png │ │ │ ├── ds-nzbget-settings-paths.png │ │ │ ├── ds-qbt-options-downloads.png │ │ │ ├── ds-radarr-add-new.png │ │ │ ├── ds-radarr-movies.png │ │ │ ├── ds-radarr-root-folder.png │ │ │ ├── ds-rtorrent-settings-autotools.png │ │ │ ├── ds-rtorrent-settings-downloads.png │ │ │ ├── ds-rtorrent.rc.png │ │ │ ├── ds-sabnzbd-categories.png │ │ │ ├── ds-sabnzbd-folders.png │ │ │ ├── ds-sonarr-add-new.png │ │ │ ├── ds-sonarr-root-folder.png │ │ │ ├── ds-sonarr-tv.png │ │ │ ├── home-folders.png │ │ │ ├── synology-control-panel.png │ │ │ ├── synology-create-task.png │ │ │ ├── synology-id.png │ │ │ ├── synology-ssh.png │ │ │ ├── synology-task-settings.png │ │ │ ├── truenas-create-dataset.png │ │ │ ├── truenas-dataset-options.png │ │ │ ├── truenas-dataset-permissions.png │ │ │ ├── truenas-group-options.png │ │ │ ├── truenas-nfs-service-options.png │ │ │ ├── truenas-nfs-share-options.png │ │ │ ├── truenas-user-options.png │ │ │ ├── unraid-arr.png │ │ │ ├── unraid-docker-click-edit.png │ │ │ ├── unraid-docker-enable-advanced-view.png │ │ │ ├── unraid-enable-hardlinks.png │ │ │ ├── unraid-enable-hardlinks_612.png │ │ │ ├── unraid-final-result.png │ │ │ ├── unraid-main-share.png │ │ │ ├── unraid-media-server.png │ │ │ ├── unraid-torrent-clients.png │ │ │ ├── unraid-usenet-client.png │ │ │ ├── unraid_main_share_array_612.png │ │ │ └── unraid_main_share_cache_612.png │ │ └── index.md │ ├── Replace-copies-with-hardlinks.md │ ├── images │ │ ├── deluge-preferences-downloads.png │ │ ├── hardlinks-inode.png │ │ ├── hardlinks-ls-al.png │ │ ├── hardlinks-ls-i.png │ │ ├── hardlinks-stat.png │ │ ├── nzbget-settings-categories.png │ │ ├── nzbget-settings-paths.png │ │ ├── qbt-options-downloads.png │ │ ├── radarr-add-new.png │ │ ├── radarr-enable-hardlinks.png │ │ ├── radarr-movies.png │ │ ├── radarr-root-folder.png │ │ ├── rtorrent-settings-autotools.png │ │ ├── rtorrent-settings-downloads.png │ │ ├── rtorrent.rc.png │ │ ├── sonarr-add-new.png │ │ ├── sonarr-enable-hardlinks.png │ │ ├── sonarr-root-folder.png │ │ └── sonarr-tv.png │ └── index.md ├── Glossary │ ├── .pages │ └── index.md ├── Guide-Sync │ ├── .pages │ └── index.md ├── Lidarr │ └── index.md ├── Misc │ ├── .pages │ ├── How-to-setup-Torguard-for-port-forwarding.md │ ├── how-to-provide-a-docker-compose.md │ ├── images │ │ └── torguard │ │ │ ├── client-area-login.png │ │ │ ├── client-area-manage-credentials.png │ │ │ ├── config-generator-wireguard.png │ │ │ ├── create_user_account.png │ │ │ ├── req_port_fwd.png │ │ │ ├── request-new-pfw-wireguard.png │ │ │ ├── services-my-services.png │ │ │ ├── status.png │ │ │ ├── tools-config-generator.png │ │ │ └── torguard-FreeTrial-728x90.gif │ ├── index.md │ └── x265-4k.md ├── Plex │ ├── .pages │ ├── Tips │ │ ├── 4k-transcoding.md │ │ ├── Optimal-plex-client-settings.md │ │ ├── Plex-media-server.md │ │ └── images │ │ │ ├── manage-libraries-movies-part1.png │ │ │ ├── manage-libraries-movies-part2.png │ │ │ ├── manage-libraries-movies-part3.png │ │ │ ├── manage-libraries-movies-part4.png │ │ │ ├── manage-libraries-movies-part5.png │ │ │ ├── manage-libraries-tv-part1.png │ │ │ ├── manage-libraries-tv-part2.png │ │ │ ├── manage-libraries-tv-part3.png │ │ │ ├── manage-libraries-tv-part4.png │ │ │ ├── manage-libraries-tv-part5.png │ │ │ ├── plex-settings-icon.png │ │ │ ├── settings-library-allow-media-deletion.png │ │ │ ├── settings-library-empty-trash-automatically-after-every-scan.png │ │ │ ├── settings-library-generate-chapter-thumbnails.png │ │ │ ├── settings-library-generate-credits-video-markers.png │ │ │ ├── settings-library-generate-intro-video-markers.png │ │ │ ├── settings-library-generate-video-preview-thumbnails.png │ │ │ ├── settings-library-generate-voice-activity-data.png │ │ │ ├── settings-library-include-music-libraries-in-automatic-updates.png │ │ │ ├── settings-library-marker-source.png │ │ │ ├── settings-library-part1.png │ │ │ ├── settings-library-run-a-partial-scan-when-changes-are-detected.png │ │ │ ├── settings-library-run-scanner-tasks-at-a-lower-priority.png │ │ │ ├── settings-library-scan-my-library-automatically.png │ │ │ ├── settings-library-scan-my-library-periodically.png │ │ │ ├── settings-manage.png │ │ │ ├── settings-network-custom-server-access-urls.png │ │ │ ├── settings-network-enable-local-network-discovery-(gdm).png │ │ │ ├── settings-network-enable-relay.png │ │ │ ├── settings-network-enable-server-support-for-ipv6.png │ │ │ ├── settings-network-lan-networks.png │ │ │ ├── settings-network-part1.png │ │ │ ├── settings-network-part2.png │ │ │ ├── settings-network-preferred-network-interface.png │ │ │ ├── settings-network-remote-streams-allowed-per-user.png │ │ │ ├── settings-network-secure-connections.png │ │ │ ├── settings-network-strict-tls-configuration.png │ │ │ ├── settings-network-treat-wan-ip-as-lan-bandwidth.png │ │ │ ├── settings-network-webhooks.png │ │ │ ├── settings-remote-access.png │ │ │ ├── settings-settings.png │ │ │ ├── settings-transcoder-enable-hdr-tone-mapping.png │ │ │ ├── settings-transcoder-hardware-transcoding-device.png │ │ │ ├── settings-transcoder-tonemapping-algorithm.png │ │ │ ├── settings-transcoder-transcoder-quality.png │ │ │ ├── settings-transcoder-transcoder-temporary-directory.png │ │ │ ├── settings-transcoder-use-hardware-accelerated-video-encoding.png │ │ │ ├── settings-transcoder-use-hardware-acceleration-when-available.png │ │ │ └── settings-transcoder.png │ ├── index.md │ ├── profiles │ │ ├── Android-SHIELD │ │ │ └── Android-SHIELD-Android-TV.xml │ │ ├── Chromecast │ │ │ └── Chromecast.xml │ │ └── index.md │ └── what-does-my-media-player-support.md ├── Prowlarr │ ├── .pages │ ├── images │ │ ├── add-indexer-proxy-flaresolverr.png │ │ ├── add-indexer-proxy-http.png │ │ ├── add-proxy-flaresolverr.png │ │ ├── add-proxy-http.png │ │ ├── add-tag-to-indexer-flaresolverr.png │ │ ├── add-tag-to-indexer-privoxy.png │ │ ├── indexer-sync-profile.png │ │ ├── select-indexer.png │ │ ├── settings-apps-sync-profiles.png │ │ ├── settings-indexers.png │ │ ├── sync-profile-automatic-search.png │ │ └── sync-profile-interactive-search.png │ ├── index.md │ ├── prowlarr-setup-flaresolverr.md │ ├── prowlarr-setup-limited-api.md │ └── prowlarr-setup-proxy.md ├── Radarr │ ├── .pages │ ├── Radarr-Quality-Settings-File-Size.md │ ├── Radarr-collection-of-custom-formats.md │ ├── Radarr-how-to-update-custom-formats.md │ ├── Radarr-import-custom-formats.md │ ├── Radarr-recommended-naming-scheme.md │ ├── Tips │ │ ├── .pages │ │ ├── How-to-order-Quality-Source.md │ │ ├── How-to-setup-language-custom-formats.md │ │ ├── Merge-quality.md │ │ ├── Radarr-remote-path-mapping.md │ │ ├── Radarr-rename-your-folders.md │ │ ├── Radarr-show-unknown-movie-items.md │ │ ├── Sync-2-radarr-sonarr.md │ │ └── images │ │ │ ├── Radarr-show-unknown-movie-item.png │ │ │ ├── merge.gif │ │ │ ├── order-qualities-default.png │ │ │ ├── order-qualities-downgrade.png │ │ │ ├── order-qualities-matters.png │ │ │ ├── order-qualities-top.png │ │ │ ├── original-language-tmdb.png │ │ │ ├── original-language-tvdb.png │ │ │ ├── radarr-add-list.png │ │ │ ├── radarr-add-lists-options-tags.png │ │ │ ├── radarr-add-lists-options.png │ │ │ ├── radarr-add-tag-manual.png │ │ │ ├── radarr-auto-tagging-add-auto-tag.png │ │ │ ├── radarr-auto-tagging-add-condition-final-steps.png │ │ │ ├── radarr-auto-tagging-add-condition-root-folder.png │ │ │ ├── radarr-auto-tagging-add-condition.png │ │ │ ├── radarr-correct-folder-name.png │ │ │ ├── radarr-edit-selected-movies.png │ │ │ ├── radarr-movie-editor-move-files-yes.png │ │ │ ├── radarr-movie-editor-select.png │ │ │ ├── radarr-movie-editor.png │ │ │ ├── radarr-settings-download-clients-categories.png │ │ │ ├── radarr-settings-download-clients.png │ │ │ ├── radarr-settings-lists.png │ │ │ ├── radarr-tags-3rd-party-app-jellyseerr.png │ │ │ ├── radarr-wrong-folder-name.png │ │ │ ├── rpm-activity-waiting-for-import.png │ │ │ ├── rpm-add-local-path.png │ │ │ ├── rpm-add-rpm-remote-path.png │ │ │ ├── rpm-add-rpm-select-sabnzbd.png │ │ │ ├── rpm-add-rpm.png │ │ │ ├── rpm-final-results.png │ │ │ ├── rpm-health-issue.png │ │ │ ├── rpm-sabnzbd-folders-cdf.png │ │ │ ├── rpm-sabnzbd-host.png │ │ │ ├── rpm-settings-download-clients.png │ │ │ ├── rpm-system-events.png │ │ │ ├── sonarr-add-list.png │ │ │ ├── sonarr-add-lists-options.png │ │ │ ├── sonarr-categories.png │ │ │ ├── sonarr-clone-profile.png │ │ │ ├── sonarr-settings-download-clients.png │ │ │ ├── sonarr-settings-import-lists.png │ │ │ └── sonarr-settings-profiles.png │ ├── images │ │ ├── cf-import-cf.png │ │ ├── cf-import-done.png │ │ ├── cf-import-to-update.png │ │ ├── cf-import.png │ │ ├── cf-json-copy-paste.png │ │ ├── cf-json-expand.png │ │ ├── cf-misc-10000-result.png │ │ ├── cf-misc-10000.png │ │ ├── cf-mm-propers-repacks-disable.png │ │ ├── cf-plus-add-small.png │ │ ├── cf-plus-add.png │ │ ├── cf-prefer-advanced-audio.png │ │ ├── cf-prefer-hdr-metadata.png │ │ ├── cf-profile-encodes-scoring.png │ │ ├── cf-profile-remux1080-scoring.png │ │ ├── cf-profile-remux2160-scoring.png │ │ ├── cf-profile-selected.png │ │ ├── cf-quality-profile-cf.png │ │ ├── cf-quality-profiles.png │ │ ├── cf-settings-cf.png │ │ ├── cf-settings-profiles.png │ │ ├── cf-table-select-brdisk.png │ │ ├── cfa-complete.png │ │ ├── cfa-da-scoring.png │ │ ├── cfa-default-scoring.png │ │ ├── cfa-mergedqualities.png │ │ ├── cfa-qualityorder.png │ │ ├── cfa-qualityprofile.png │ │ ├── cfa-settings-profiles.png │ │ ├── cfa-uncensored-scoring.png │ │ ├── custom-format-flow-chart-radar.png │ │ ├── flowchart-audio.png │ │ ├── flowchart-guide-radarr.png │ │ ├── flowchart-hdr-dv-webdl.png │ │ ├── flowchart-hdr-formats.png │ │ ├── flowchart-hdr10plus-boost.png │ │ ├── flowchart-quality-profiles-radarr.png │ │ ├── flowchart-sqp-1.png │ │ ├── flowchart-sqp-2-5.png │ │ ├── french-prowlarr-settings.png │ │ ├── french-radarr-qp-bluray-webdl-hd-vf.png │ │ ├── french-radarr-qp-bluray-webdl-hd-vo.png │ │ ├── french-radarr-qp-bluray-webdl-uhd-vf.png │ │ ├── french-radarr-qp-bluray-webdl-uhd-vo.png │ │ ├── french-radarr-qp-remux-hd-vf.png │ │ ├── french-radarr-qp-remux-hd-vo.png │ │ ├── french-radarr-qp-remux-uhd-vf.png │ │ ├── french-radarr-qp-remux-uhd-vo.png │ │ ├── french-starr-multi-settings.png │ │ ├── german-cf-profile-language.png │ │ ├── german-qp-bluray-webdl.png │ │ ├── german-starr-multi-settings.png │ │ ├── hdr-formats-flowchart.png │ │ ├── imax-e │ │ │ ├── imax-e.1.png │ │ │ ├── imax-e.2.png │ │ │ ├── imax-e.3.png │ │ │ ├── imax-e.4.png │ │ │ └── imax-e.5.png │ │ ├── plex-audio-atv.png │ │ ├── plex-audio-shield.png │ │ ├── qp-bluray-webdl.png │ │ ├── qp-remux-webdl-1080p.png │ │ ├── qp-remux-webdl-2160p.png │ │ ├── qp-uhd-bluray-webdl.png │ │ ├── radarr-enable-rename.png │ │ ├── radarr-show-adavanced.png │ │ └── unhide-advanced.png │ ├── index.md │ ├── radarr-setup-quality-profiles-anime.md │ ├── radarr-setup-quality-profiles-french-en.md │ ├── radarr-setup-quality-profiles-french-fr.md │ ├── radarr-setup-quality-profiles-german-en.md │ └── radarr-setup-quality-profiles.md ├── Recyclarr │ ├── .pages │ ├── index.md │ └── recyclarr-configs.md ├── SQP │ └── index.md ├── Sonarr │ ├── .pages │ ├── Sonarr-Quality-Settings-File-Size.md │ ├── Sonarr-recommended-naming-scheme.md │ ├── Tips │ │ ├── .pages │ │ ├── How-to-order-Quality-Source.md │ │ ├── How-to-setup-language-custom-formats.md │ │ ├── Merge-quality.md │ │ ├── Sonarr-remote-path-mapping.md │ │ ├── Sonarr-rename-your-folders.md │ │ ├── Sync-2-radarr-sonarr.md │ │ └── images │ │ │ ├── cl_cli_tab.png │ │ │ ├── dl_error.png │ │ │ ├── mapping.png │ │ │ ├── new_mapping.png │ │ │ ├── qbit_client.png │ │ │ ├── qbit_final.png │ │ │ └── qbit_options.png │ ├── images │ │ ├── cf-import-cf.png │ │ ├── cf-import-done.png │ │ ├── cf-import-to-update.png │ │ ├── cf-import.png │ │ ├── cf-json-copy-paste.png │ │ ├── cf-json-expand.png │ │ ├── cf-mm-propers-repacks-disable.png │ │ ├── cf-plus-add-small.png │ │ ├── cf-profile-alternative-web1080.png │ │ ├── cf-profile-alternative-web2160.png │ │ ├── cf-profile-selected.png │ │ ├── cf-profile-web1080.png │ │ ├── cf-profile-web2160.png │ │ ├── cf-quality-profile-cf.png │ │ ├── cf-quality-profiles.png │ │ ├── cf-settings-cf.png │ │ ├── cf-settings-profiles.png │ │ ├── cf-table-select-brdisk.png │ │ ├── cfa-complete.png │ │ ├── cfa-da-scoring.png │ │ ├── cfa-default-scoring.png │ │ ├── cfa-mergedqualities.png │ │ ├── cfa-prefixedrange.png │ │ ├── cfa-qualityorder.png │ │ ├── cfa-qualityprofile.png │ │ ├── cfa-seriestype.png │ │ ├── cfa-settings-profiles.png │ │ ├── cfa-uncensored-scoring.png │ │ ├── flowchart-quality-profiles-sonarr.png │ │ ├── french-prowlarr-settings.png │ │ ├── french-sonarr-qp-bluray-webdl-hd.png │ │ ├── french-sonarr-qp-bluray-webdl-uhd.png │ │ ├── french-starr-multi-settings.png │ │ ├── results.png │ │ ├── sonarr-enable-rename.png │ │ ├── sonarr-show-adavanced.png │ │ └── unhide-advanced.png │ ├── index.md │ ├── sonarr-collection-of-custom-formats.md │ ├── sonarr-how-to-update-custom-formats.md │ ├── sonarr-import-custom-formats.md │ ├── sonarr-setup-quality-profiles-anime.md │ ├── sonarr-setup-quality-profiles-french-en.md │ ├── sonarr-setup-quality-profiles-french-fr.md │ ├── sonarr-setup-quality-profiles-german-en.md │ ├── sonarr-setup-quality-profiles.md │ └── sonarr-v3-eol.md ├── assets │ └── javascripts │ │ └── glightbox.min.js ├── img │ ├── buy-me-a-coffee.png │ ├── favicon.png │ ├── logo.png │ └── thnx-for-the-coffee.jpg ├── index.md ├── js │ └── hide_announce.js ├── json │ ├── guide-only │ │ ├── language-german-and-original.json │ │ ├── language-not-dutch.json │ │ ├── language-not-original-or-german.json │ │ ├── language-prefer-dutch.json │ │ └── language-prefer-german.json │ ├── radarr │ │ ├── cf-groups │ │ │ ├── audio-formats.json │ │ │ ├── dolby-vision-incompatible-devices.json │ │ │ ├── dv-hdr10-and-hdr10-boost.json │ │ │ ├── hdr-formats.json │ │ │ ├── optional-misc-sqp.json │ │ │ ├── optional-misc.json │ │ │ ├── optional-movie-versions.json │ │ │ ├── optional-resolutions.json │ │ │ ├── optional-sdr.json │ │ │ ├── release-groups-french.json │ │ │ ├── release-groups-german.json │ │ │ ├── release-groups.json │ │ │ ├── required-golden-rule-hd.json │ │ │ ├── required-golden-rule-uhd.json │ │ │ ├── sqp-single-radarr.json │ │ │ ├── streaming-services-anime.json │ │ │ ├── streaming-services-asian.json │ │ │ ├── streaming-services-dutch.json │ │ │ ├── streaming-services-misc.json │ │ │ └── streaming-services-uk.json │ │ ├── cf │ │ │ ├── 10-mono.json │ │ │ ├── 1080p.json │ │ │ ├── 10bit.json │ │ │ ├── 20-stereo.json │ │ │ ├── 2160p.json │ │ │ ├── 30-sound.json │ │ │ ├── 3d.json │ │ │ ├── 40-sound.json │ │ │ ├── 4k-remaster.json │ │ │ ├── 51-surround.json │ │ │ ├── 61-surround.json │ │ │ ├── 71-surround.json │ │ │ ├── 720p.json │ │ │ ├── aac.json │ │ │ ├── amzn.json │ │ │ ├── anime-bd-tier-01-top-seadex-muxers.json │ │ │ ├── anime-bd-tier-02-seadex-muxers.json │ │ │ ├── anime-bd-tier-03-seadex-muxers.json │ │ │ ├── anime-bd-tier-04-seadex-muxers.json │ │ │ ├── anime-bd-tier-05-remuxes.json │ │ │ ├── anime-bd-tier-06-fansubs.json │ │ │ ├── anime-bd-tier-07-p2pscene.json │ │ │ ├── anime-bd-tier-08-mini-encodes.json │ │ │ ├── anime-dual-audio.json │ │ │ ├── anime-lq-groups.json │ │ │ ├── anime-raws.json │ │ │ ├── anime-web-tier-01-muxers.json │ │ │ ├── anime-web-tier-02-top-fansubs.json │ │ │ ├── anime-web-tier-03-official-subs.json │ │ │ ├── anime-web-tier-04-official-subs.json │ │ │ ├── anime-web-tier-05-fansubs.json │ │ │ ├── anime-web-tier-06-fansubs.json │ │ │ ├── atmos-undefined.json │ │ │ ├── atvp.json │ │ │ ├── aubc.json │ │ │ ├── av1.json │ │ │ ├── bad-dual-groups.json │ │ │ ├── bcore.json │ │ │ ├── bhdstudio.json │ │ │ ├── black-and-white-editions.json │ │ │ ├── br-disk.json │ │ │ ├── cbc.json │ │ │ ├── crav.json │ │ │ ├── crit.json │ │ │ ├── criterion-collection.json │ │ │ ├── dd.json │ │ │ ├── ddplus-atmos.json │ │ │ ├── ddplus.json │ │ │ ├── dsnp.json │ │ │ ├── dts-es.json │ │ │ ├── dts-hd-hra.json │ │ │ ├── dts-hd-ma.json │ │ │ ├── dts-x.json │ │ │ ├── dts.json │ │ │ ├── dubs-only.json │ │ │ ├── dutch-groups.json │ │ │ ├── dv-disk.json │ │ │ ├── dv-hdr10.json │ │ │ ├── dv-hdr10plus-boost.json │ │ │ ├── dv-hdr10plus.json │ │ │ ├── dv-hlg.json │ │ │ ├── dv-sdr.json │ │ │ ├── dv-webdl.json │ │ │ ├── dv.json │ │ │ ├── extras.json │ │ │ ├── fansub.json │ │ │ ├── fastsub.json │ │ │ ├── flac.json │ │ │ ├── flux.json │ │ │ ├── fod.json │ │ │ ├── framestor.json │ │ │ ├── freeleech.json │ │ │ ├── french-anime-fansub.json │ │ │ ├── french-anime-tier-01.json │ │ │ ├── french-anime-tier-02.json │ │ │ ├── french-anime-tier-03.json │ │ │ ├── french-hd-bluray-tier-01.json │ │ │ ├── french-hd-bluray-tier-02.json │ │ │ ├── french-lq.json │ │ │ ├── french-remux-tier-01.json │ │ │ ├── french-remux-tier-02.json │ │ │ ├── french-scene.json │ │ │ ├── french-uhd-bluray-tier-01.json │ │ │ ├── french-uhd-bluray-tier-02.json │ │ │ ├── french-vf2.json │ │ │ ├── french-vfb.json │ │ │ ├── french-vff.json │ │ │ ├── french-vfi.json │ │ │ ├── french-vfq.json │ │ │ ├── french-vof.json │ │ │ ├── french-voq.json │ │ │ ├── french-vostfr.json │ │ │ ├── french-vq.json │ │ │ ├── french-web-tier-01.json │ │ │ ├── french-web-tier-02.json │ │ │ ├── generated-dynamic-hdr.json │ │ │ ├── german-1080p-booster.json │ │ │ ├── german-2160p-booster.json │ │ │ ├── german-bluray-tier-01.json │ │ │ ├── german-bluray-tier-02.json │ │ │ ├── german-bluray-tier-03.json │ │ │ ├── german-lq-release-title.json │ │ │ ├── german-lq.json │ │ │ ├── german-microsized.json │ │ │ ├── german-remux-tier-01.json │ │ │ ├── german-remux-tier-02.json │ │ │ ├── german-scene.json │ │ │ ├── german-web-tier-01.json │ │ │ ├── german-web-tier-02.json │ │ │ ├── german-web-tier-03.json │ │ │ ├── hallowed.json │ │ │ ├── hbo.json │ │ │ ├── hd-bluray-tier-01.json │ │ │ ├── hd-bluray-tier-02.json │ │ │ ├── hd-bluray-tier-03.json │ │ │ ├── hdr-undefined.json │ │ │ ├── hdr.json │ │ │ ├── hdr10.json │ │ │ ├── hdr10plus-boost.json │ │ │ ├── hdr10plus.json │ │ │ ├── hfr.json │ │ │ ├── hlg.json │ │ │ ├── hmax.json │ │ │ ├── htsr.json │ │ │ ├── hulu.json │ │ │ ├── hybrid.json │ │ │ ├── imax-enhanced.json │ │ │ ├── imax.json │ │ │ ├── internal.json │ │ │ ├── ip.json │ │ │ ├── it.json │ │ │ ├── itvx.json │ │ │ ├── language-german-dl-undefined.json │ │ │ ├── language-german-dl.json │ │ │ ├── language-german.json │ │ │ ├── language-not-english.json │ │ │ ├── language-not-french.json │ │ │ ├── language-not-german-or-english.json │ │ │ ├── language-not-original.json │ │ │ ├── language-original-plus-french.json │ │ │ ├── line-mic-dubbed.json │ │ │ ├── lq-release-title.json │ │ │ ├── lq.json │ │ │ ├── ma.json │ │ │ ├── masters-of-cinema.json │ │ │ ├── max.json │ │ │ ├── mp3.json │ │ │ ├── mpeg2.json │ │ │ ├── multi.json │ │ │ ├── my5.json │ │ │ ├── nf.json │ │ │ ├── no-rlsgroup.json │ │ │ ├── now.json │ │ │ ├── obfuscated.json │ │ │ ├── open-matte.json │ │ │ ├── opus.json │ │ │ ├── ovid.json │ │ │ ├── pathe.json │ │ │ ├── pcm.json │ │ │ ├── pcok.json │ │ │ ├── pmtp.json │ │ │ ├── pq.json │ │ │ ├── remaster.json │ │ │ ├── remux-tier-01.json │ │ │ ├── remux-tier-02.json │ │ │ ├── remux-tier-03.json │ │ │ ├── repack-proper.json │ │ │ ├── repack2.json │ │ │ ├── repack3.json │ │ │ ├── retags.json │ │ │ ├── scene.json │ │ │ ├── sdr-no-webdl.json │ │ │ ├── sdr.json │ │ │ ├── sic.json │ │ │ ├── sing-along-versions.json │ │ │ ├── special-edition.json │ │ │ ├── stan.json │ │ │ ├── strp.json │ │ │ ├── theatrical-cut.json │ │ │ ├── truehd-atmos.json │ │ │ ├── truehd.json │ │ │ ├── tver.json │ │ │ ├── tving.json │ │ │ ├── u-next.json │ │ │ ├── uhd-bluray-tier-01.json │ │ │ ├── uhd-bluray-tier-02.json │ │ │ ├── uhd-bluray-tier-03.json │ │ │ ├── uncensored.json │ │ │ ├── upscaled.json │ │ │ ├── v0.json │ │ │ ├── v1.json │ │ │ ├── v2.json │ │ │ ├── v3.json │ │ │ ├── v4.json │ │ │ ├── vc-1.json │ │ │ ├── vdl.json │ │ │ ├── vinegar-syndrome.json │ │ │ ├── viu.json │ │ │ ├── vp9.json │ │ │ ├── vrv.json │ │ │ ├── web-tier-01.json │ │ │ ├── web-tier-02.json │ │ │ ├── web-tier-03.json │ │ │ ├── x264.json │ │ │ ├── x265-hd.json │ │ │ ├── x265-no-hdrdv.json │ │ │ ├── x265.json │ │ │ └── x266.json │ │ ├── dummy-files │ │ │ └── radarr-dummy-quality-profiles.json │ │ ├── naming │ │ │ └── radarr-naming.json │ │ ├── quality-profiles │ │ │ ├── anime-remux-1080p.json │ │ │ ├── french-multi-vo-hd-bluray-web.json │ │ │ ├── french-multi-vo-hd-remux-web.json │ │ │ ├── french-multi-vo-uhd-bluray-web.json │ │ │ ├── french-multi-vo-uhd-remux-web.json │ │ │ ├── german-hd-bluray-web.json │ │ │ ├── german-hd-remux-web.json │ │ │ ├── german-uhd-bluray-web-alternative.json │ │ │ ├── german-uhd-bluray-web.json │ │ │ ├── german-uhd-remux-web.json │ │ │ ├── hd-bluray-web.json │ │ │ ├── remux-2160p-alternative.json │ │ │ ├── remux-2160p-combined.json │ │ │ ├── remux-web-1080p.json │ │ │ ├── remux-web-2160p.json │ │ │ ├── sqp-1-1080p.json │ │ │ ├── sqp-1-2160p.json │ │ │ ├── sqp-1-web-1080p.json │ │ │ ├── sqp-1-web-2160p.json │ │ │ ├── sqp-2.json │ │ │ ├── sqp-3.json │ │ │ ├── sqp-4.json │ │ │ ├── sqp-5.json │ │ │ └── uhd-bluray-web.json │ │ └── quality-size │ │ │ ├── anime.json │ │ │ ├── movie.json │ │ │ ├── sqp-streaming.json │ │ │ └── sqp-uhd.json │ └── sonarr │ │ ├── cf-groups │ │ ├── audio-formats.json │ │ ├── dolby-vision-incompatible-devices.json │ │ ├── dv-hdr10-and-hdr10-boost.json │ │ ├── hdr-formats.json │ │ ├── optional-misc.json │ │ ├── optional-sdr.json │ │ ├── release-groups-french.json │ │ ├── release-groups.json │ │ ├── required-golden-rule-hd.json │ │ ├── required-golden-rule-uhd.json │ │ ├── season-packs.json │ │ ├── streaming-services-anime.json │ │ ├── streaming-services-asian.json │ │ ├── streaming-services-dutch.json │ │ ├── streaming-services-french.json │ │ ├── streaming-services-misc.json │ │ └── streaming-services-uk.json │ │ ├── cf │ │ ├── 10-mono.json │ │ ├── 1080p.json │ │ ├── 10bit.json │ │ ├── 20-stereo.json │ │ ├── 2160p.json │ │ ├── 30-sound.json │ │ ├── 40-sound.json │ │ ├── 4od.json │ │ ├── 51-surround.json │ │ ├── 61-surround.json │ │ ├── 71-surround.json │ │ ├── 720p.json │ │ ├── aac.json │ │ ├── abema.json │ │ ├── all4.json │ │ ├── amzn.json │ │ ├── anime-bd-tier-01-top-seadex-muxers.json │ │ ├── anime-bd-tier-02-seadex-muxers.json │ │ ├── anime-bd-tier-03-seadex-muxers.json │ │ ├── anime-bd-tier-04-seadex-muxers.json │ │ ├── anime-bd-tier-05-remuxes.json │ │ ├── anime-bd-tier-06-fansubs.json │ │ ├── anime-bd-tier-07-p2pscene.json │ │ ├── anime-bd-tier-08-mini-encodes.json │ │ ├── anime-dual-audio.json │ │ ├── anime-lq-groups.json │ │ ├── anime-raws.json │ │ ├── anime-web-tier-01-muxers.json │ │ ├── anime-web-tier-02-top-fansubs.json │ │ ├── anime-web-tier-03-official-subs.json │ │ ├── anime-web-tier-04-official-subs.json │ │ ├── anime-web-tier-05-fansubs.json │ │ ├── anime-web-tier-06-fansubs.json │ │ ├── atmos-undefined.json │ │ ├── atvp.json │ │ ├── aubc.json │ │ ├── av1.json │ │ ├── bad-dual-groups.json │ │ ├── bglobal.json │ │ ├── bilibili.json │ │ ├── br-disk-btn.json │ │ ├── br-disk.json │ │ ├── cbc.json │ │ ├── cc.json │ │ ├── cr.json │ │ ├── crav.json │ │ ├── dcu.json │ │ ├── dd.json │ │ ├── ddplus-atmos.json │ │ ├── ddplus.json │ │ ├── dscp.json │ │ ├── dsnp.json │ │ ├── dts-es.json │ │ ├── dts-hd-hra.json │ │ ├── dts-hd-ma.json │ │ ├── dts-x.json │ │ ├── dts.json │ │ ├── dubs-only.json │ │ ├── dv-disk.json │ │ ├── dv-hdr10.json │ │ ├── dv-hdr10plus-boost.json │ │ ├── dv-hdr10plus.json │ │ ├── dv-hlg.json │ │ ├── dv-sdr.json │ │ ├── dv-webdl.json │ │ ├── dv.json │ │ ├── extras.json │ │ ├── fansub.json │ │ ├── fastsub.json │ │ ├── flac.json │ │ ├── flux.json │ │ ├── fod.json │ │ ├── freeleech.json │ │ ├── french-adn.json │ │ ├── french-anime-fansub.json │ │ ├── french-anime-tier-01.json │ │ ├── french-anime-tier-02.json │ │ ├── french-anime-tier-03.json │ │ ├── french-auvio.json │ │ ├── french-hd-bluray-tier-01.json │ │ ├── french-lq.json │ │ ├── french-mycanal.json │ │ ├── french-remux-tier-01.json │ │ ├── french-salto.json │ │ ├── french-scene.json │ │ ├── french-vf2.json │ │ ├── french-vfb.json │ │ ├── french-vff.json │ │ ├── french-vfi.json │ │ ├── french-vfq.json │ │ ├── french-vof.json │ │ ├── french-voq.json │ │ ├── french-vostfr.json │ │ ├── french-vq.json │ │ ├── french-web-tier-01.json │ │ ├── french-web-tier-02.json │ │ ├── french-web-tier-03.json │ │ ├── french-wkn.json │ │ ├── funi.json │ │ ├── german-1080p-booster.json │ │ ├── german-2160p-booster.json │ │ ├── german-bluray-tier-01.json │ │ ├── german-bluray-tier-02.json │ │ ├── german-bluray-tier-03.json │ │ ├── german-lq-release-title.json │ │ ├── german-lq.json │ │ ├── german-microsized.json │ │ ├── german-remux-tier-01.json │ │ ├── german-remux-tier-02.json │ │ ├── german-scene.json │ │ ├── german-web-tier-01.json │ │ ├── german-web-tier-02.json │ │ ├── german-web-tier-03.json │ │ ├── hbo.json │ │ ├── hd-bluray-tier-01.json │ │ ├── hd-bluray-tier-02.json │ │ ├── hdr-undefined.json │ │ ├── hdr.json │ │ ├── hdr10.json │ │ ├── hdr10plus-boost.json │ │ ├── hdr10plus.json │ │ ├── hfr.json │ │ ├── hidive.json │ │ ├── hlg.json │ │ ├── hmax.json │ │ ├── htsr.json │ │ ├── hulu.json │ │ ├── hybrid.json │ │ ├── internal.json │ │ ├── ip.json │ │ ├── it.json │ │ ├── itvx.json │ │ ├── language-german-dl-undefined.json │ │ ├── language-german-dl.json │ │ ├── language-german.json │ │ ├── language-not-english.json │ │ ├── language-not-french.json │ │ ├── language-not-german-or-english.json │ │ ├── language-not-original.json │ │ ├── language-original-plus-french.json │ │ ├── lq-release-title.json │ │ ├── lq.json │ │ ├── max.json │ │ ├── mp3.json │ │ ├── mpeg2.json │ │ ├── multi-episode.json │ │ ├── multi.json │ │ ├── my5.json │ │ ├── nf.json │ │ ├── nlz.json │ │ ├── no-rlsgroup.json │ │ ├── now.json │ │ ├── obfuscated.json │ │ ├── opus.json │ │ ├── ovid.json │ │ ├── pcm.json │ │ ├── pcok.json │ │ ├── pmtp.json │ │ ├── pq.json │ │ ├── qibi.json │ │ ├── red.json │ │ ├── remaster.json │ │ ├── remux-tier-01.json │ │ ├── remux-tier-02.json │ │ ├── repack-proper.json │ │ ├── repack-v2.json │ │ ├── repack-v3.json │ │ ├── retags.json │ │ ├── scene.json │ │ ├── sdr-no-webdl.json │ │ ├── sdr.json │ │ ├── season-pack.json │ │ ├── sho.json │ │ ├── single-episode.json │ │ ├── stan.json │ │ ├── strp.json │ │ ├── syfy.json │ │ ├── truehd-atmos.json │ │ ├── truehd.json │ │ ├── tver.json │ │ ├── tving.json │ │ ├── u-next.json │ │ ├── uhd-streaming-boost.json │ │ ├── uhd-streaming-cut.json │ │ ├── uncensored.json │ │ ├── upscaled.json │ │ ├── v0.json │ │ ├── v1.json │ │ ├── v2.json │ │ ├── v3.json │ │ ├── v4.json │ │ ├── vc-1.json │ │ ├── vdl.json │ │ ├── viu.json │ │ ├── vp9.json │ │ ├── vrv.json │ │ ├── web-scene.json │ │ ├── web-tier-01.json │ │ ├── web-tier-02.json │ │ ├── web-tier-03.json │ │ ├── x264.json │ │ ├── x265-hd.json │ │ ├── x265-no-hdrdv.json │ │ ├── x265.json │ │ └── x266.json │ │ ├── dummy-files │ │ └── sonarr-dummy-quality-profiles.json │ │ ├── naming │ │ └── sonarr-naming.json │ │ ├── quality-profiles │ │ ├── anime-remux-1080p.json │ │ ├── french-multi-vo-bluray-web-1080p.json │ │ ├── french-multi-vo-bluray-web-2160p.json │ │ ├── german-hd-bluray-web.json │ │ ├── german-hd-remux-web.json │ │ ├── german-uhd-bluray-web-alternative.json │ │ ├── german-uhd-bluray-web.json │ │ ├── german-uhd-remux-web.json │ │ ├── web-1080p-alternative.json │ │ ├── web-1080p.json │ │ ├── web-2160p-alternative.json │ │ ├── web-2160p-combined.json │ │ └── web-2160p.json │ │ └── quality-size │ │ ├── anime.json │ │ └── series.json ├── manifest.webmanifest ├── requirements.txt ├── stylesheets │ ├── extra.css │ ├── github-permalink-style.css │ └── glightbox.min.css ├── thnx.md └── updates.txt ├── images ├── QR-code-BTC.png ├── QR-code-ETH.png ├── QR-code-EU.png ├── QR-code-US.png ├── QR-code-XMR.png └── coffee-paypal.png ├── includes ├── annotations │ └── sync-2-radarr-sonar.md ├── cf-descriptions │ ├── 1080p.md │ ├── 10bit.md │ ├── 2160p.md │ ├── 3d.md │ ├── 4k-remaster.md │ ├── 4od.md │ ├── 720p.md │ ├── aac.md │ ├── abema.md │ ├── all4.md │ ├── amzn.md │ ├── anime-bd-tier-01-top-seadex-muxers.md │ ├── anime-bd-tier-02-seadex-muxers.md │ ├── anime-bd-tier-03-seadex-muxers.md │ ├── anime-bd-tier-04-seadex-muxers.md │ ├── anime-bd-tier-05-remuxes.md │ ├── anime-bd-tier-06-fansubs.md │ ├── anime-bd-tier-07-p2pscene.md │ ├── anime-bd-tier-08-mini-encodes.md │ ├── anime-dual-audio.md │ ├── anime-lq-groups.md │ ├── anime-raws.md │ ├── anime-web-tier-01-muxers.md │ ├── anime-web-tier-02-top-fansubs.md │ ├── anime-web-tier-03-official-subs.md │ ├── anime-web-tier-04-official-subs.md │ ├── anime-web-tier-05-fansubs.md │ ├── anime-web-tier-06-fansubs.md │ ├── apply-10000.md │ ├── atmos-undefined.md │ ├── atvp.md │ ├── aubc.md │ ├── av1.md │ ├── bad-dual-groups.md │ ├── bcore.md │ ├── bglobal.md │ ├── bilibili.md │ ├── black-and-white-editions.md │ ├── br-disk.md │ ├── cbc.md │ ├── cc.md │ ├── cr.md │ ├── crav.md │ ├── crit.md │ ├── criterion-collection.md │ ├── dcu.md │ ├── dd.md │ ├── ddplus-atmos.md │ ├── ddplus.md │ ├── dolby-vision.md │ ├── dscp.md │ ├── dsnp.md │ ├── dts-es.md │ ├── dts-hd-hra.md │ ├── dts-hd-ma.md │ ├── dts-x.md │ ├── dts.md │ ├── dubs-only.md │ ├── dv-disk.md │ ├── dv-hdr10.md │ ├── dv-hdr10plus-boost.md │ ├── dv-hdr10plus.md │ ├── dv-hlg.md │ ├── dv-sdr.md │ ├── dv-webdl.md │ ├── dv.md │ ├── extras.md │ ├── fansub.md │ ├── fastsub.md │ ├── flac.md │ ├── fod.md │ ├── freeleech.md │ ├── french-adn.md │ ├── french-anime-fansub.md │ ├── french-anime-tier-01.md │ ├── french-anime-tier-02.md │ ├── french-anime-tier-03.md │ ├── french-auvio.md │ ├── french-hd-bluray-tier-01.md │ ├── french-hd-bluray-tier-02.md │ ├── french-lq.md │ ├── french-mycanal.md │ ├── french-remux-tier-01.md │ ├── french-remux-tier-02.md │ ├── french-salto.md │ ├── french-scene.md │ ├── french-uhd-bluray-tier-01.md │ ├── french-uhd-bluray-tier-02.md │ ├── french-vf2.md │ ├── french-vfb.md │ ├── french-vff.md │ ├── french-vfi.md │ ├── french-vfq.md │ ├── french-vof.md │ ├── french-voq.md │ ├── french-vostfr.md │ ├── french-vq.md │ ├── french-web-tier-01.md │ ├── french-web-tier-02.md │ ├── french-web-tier-03.md │ ├── french-wkn.md │ ├── funi.md │ ├── generated-dynamic-hdr.md │ ├── german-1080p-booster.md │ ├── german-2160p-booster.md │ ├── german-bluray-tier-01.md │ ├── german-bluray-tier-02.md │ ├── german-bluray-tier-03.md │ ├── german-lq-release-title.md │ ├── german-lq.md │ ├── german-microsized.md │ ├── german-remux-tier-01.md │ ├── german-remux-tier-02.md │ ├── german-scene.md │ ├── german-web-tier-01.md │ ├── german-web-tier-02.md │ ├── german-web-tier-03.md │ ├── hbo.md │ ├── hd-bluray-tier-01.md │ ├── hd-bluray-tier-02.md │ ├── hd-bluray-tier-03.md │ ├── hdr-formats-info.md │ ├── hdr-undefined.md │ ├── hdr.md │ ├── hdr10.md │ ├── hdr10plus-boost.md │ ├── hdr10plus.md │ ├── hfr.md │ ├── hidive.md │ ├── hlg.md │ ├── hmax.md │ ├── htsr.md │ ├── hulu.md │ ├── hybrid.md │ ├── imax-enhanced.md │ ├── imax.md │ ├── internal.md │ ├── ip.md │ ├── it.md │ ├── itvx.md │ ├── language-german-dl-undefined.md │ ├── language-german-dl.md │ ├── language-german.md │ ├── language-not-english.md │ ├── language-not-french.md │ ├── language-not-german-or-english.md │ ├── language-not-original.md │ ├── language-original-plus-french.md │ ├── line-mic-dubbed.md │ ├── lq-release-title.md │ ├── lq.md │ ├── ma.md │ ├── masters-of-cinema.md │ ├── mp3.md │ ├── multi-episode.md │ ├── my5.md │ ├── nf.md │ ├── nlz.md │ ├── no-rlsgroup.md │ ├── now.md │ ├── obfuscated.md │ ├── open-matte.md │ ├── opus.md │ ├── ovid.md │ ├── pathe.md │ ├── pcm.md │ ├── pcok.md │ ├── pmtp.md │ ├── pq.md │ ├── qibi.md │ ├── red.md │ ├── remaster.md │ ├── remux-tier-01.md │ ├── remux-tier-02-sonarr.md │ ├── remux-tier-02.md │ ├── remux-tier-03.md │ ├── retags.md │ ├── scene.md │ ├── sdr-no-webdl-radarr-warning.md │ ├── sdr-no-webdl-radarr.md │ ├── sdr-no-webdl-sonarr-warning.md │ ├── sdr-no-webdl-sonarr.md │ ├── sdr.md │ ├── season-pack.md │ ├── sho.md │ ├── sing-along-versions.md │ ├── single-episode.md │ ├── special-edition.md │ ├── stan.md │ ├── strp.md │ ├── syfy.md │ ├── theatrical-cut.md │ ├── truehd-atmos.md │ ├── truehd.md │ ├── tver.md │ ├── tving.md │ ├── u-next.md │ ├── uhd-bluray-tier-01.md │ ├── uhd-bluray-tier-02.md │ ├── uhd-bluray-tier-03.md │ ├── uhd-streaming-boost.md │ ├── uhd-streaming-cut.md │ ├── uncensored.md │ ├── upscaled.md │ ├── v0.md │ ├── v1.md │ ├── v2.md │ ├── v3.md │ ├── v4.md │ ├── vc-1.md │ ├── vdl.md │ ├── vinegar-syndrome.md │ ├── viu.md │ ├── vp9.md │ ├── vrv.md │ ├── web-scene.md │ ├── web-tier-01.md │ ├── web-tier-02.md │ ├── web-tier-03.md │ ├── x264.md │ ├── x265-hd-radarr-warning.md │ ├── x265-hd-radarr.md │ ├── x265-hd-sonarr-warning.md │ ├── x265-hd-sonarr.md │ ├── x265-no-hdrdv-radarr-warning.md │ ├── x265-no-hdrdv-radarr.md │ ├── x265-no-hdrdv-sonarr-warning.md │ ├── x265-no-hdrdv-sonarr.md │ ├── x265.md │ └── x266.md ├── cf │ ├── audio-info.md │ ├── audio-limitations-atv.md │ ├── dv-info-green-purple.md │ ├── dv-info-profiles.md │ ├── dv-limitations-atv.md │ ├── radarr-all-hdr-formats.md │ ├── radarr-anime-misc-required.md │ ├── radarr-anime.md │ ├── radarr-audio.md │ ├── radarr-cf-hd-bluray-web-scoring.md │ ├── radarr-cf-remux-web-scoring.md │ ├── radarr-cf-uhd-bluray-web-scoring.md │ ├── radarr-dv-tip-dv-webdl.md │ ├── radarr-misc-optional.md │ ├── radarr-misc-required.md │ ├── radarr-misc-uhd-optional.md │ ├── radarr-movie-versions-imaxe-noremux.md │ ├── radarr-movie-versions-imaxe.md │ ├── radarr-movie-versions-noremux.md │ ├── radarr-movie-versions.md │ ├── radarr-streaming-services.md │ ├── radarr-suggest-attention.md │ ├── radarr-unwanted-uhd.md │ ├── radarr-unwanted.md │ ├── score-attention.md │ ├── sonarr-all-hdr-formats.md │ ├── sonarr-anime-misc-required.md │ ├── sonarr-anime.md │ ├── sonarr-audio.md │ ├── sonarr-dv-tip-dv-webdl.md │ ├── sonarr-hq-source-group.md │ ├── sonarr-misc-optional.md │ ├── sonarr-misc-required.md │ ├── sonarr-misc-uhd-optional.md │ ├── sonarr-streaming-services-anime.md │ ├── sonarr-streaming-services.md │ ├── sonarr-suggest-attention.md │ ├── sonarr-uhd-streaming-services.md │ ├── sonarr-unwanted-uhd.md │ ├── sonarr-unwanted.md │ ├── which-audio-formats-should-i-choose.md │ └── which-hdr-formats-should-i-choose.md ├── docker │ ├── docker-compose.yml │ └── x265.md ├── downloaders │ ├── basic-setup.md │ ├── mover-workflow.md │ ├── nerdtools-replacement-package-slackware.md │ ├── path.md │ ├── port-forwarding.md │ └── warning-path-location.md ├── file-and-folder-structure │ ├── bad-path-suggestion.md │ ├── breakdown-folder-structure-docker.md │ ├── breakdown-folder-structure-synology.md │ ├── breakdown-folder-structure.md │ ├── docker-compose-commands.md │ ├── docker-iptables-fix.sh │ ├── docker-tree-full.md │ ├── docker-tree-media.md │ ├── docker-tree-torrents.md │ ├── docker-tree-usenet.md │ ├── folder-structure.md │ └── permissions.md ├── flowcharts │ └── radarr-flowchart.drawio ├── french-guide │ ├── french-guide-french-audio-information-en.md │ ├── french-guide-french-audio-information-fr.md │ ├── french-guide-language-profiles-en.md │ ├── french-guide-language-profiles-fr.md │ ├── french-guide-optional-format-information-fr.md │ ├── radarr-cf-french-anime-scoring-en.md │ ├── radarr-cf-french-anime-scoring-fr.md │ ├── radarr-cf-french-hd-bluray-web-scoring-en.md │ ├── radarr-cf-french-hd-bluray-web-scoring-fr.md │ ├── radarr-cf-french-remux-web-scoring-en.md │ ├── radarr-cf-french-remux-web-scoring-fr.md │ ├── radarr-cf-french-uhd-bluray-web-scoring-en.md │ ├── radarr-cf-french-uhd-bluray-web-scoring-fr.md │ ├── radarr-french-advanced-audio-information-en.md │ ├── radarr-french-advanced-audio-information-fr.md │ ├── radarr-french-anime-info-en.md │ ├── radarr-french-anime-info-fr.md │ ├── radarr-french-audio-version-en.md │ ├── radarr-french-audio-version-fr.md │ ├── radarr-french-hdr-format-information-fr.md │ ├── radarr-french-unwanted-en.md │ ├── radarr-french-unwanted-fr.md │ ├── radarr-french-unwanted-uhd-en.md │ ├── radarr-french-unwanted-uhd-fr.md │ ├── sonarr-cf-french-anime-scoring-en.md │ ├── sonarr-cf-french-anime-scoring-fr.md │ ├── sonarr-cf-french-web-scoring-en.md │ ├── sonarr-cf-french-web-scoring-fr.md │ ├── sonarr-french-anime-info-en.md │ ├── sonarr-french-anime-info-fr.md │ ├── sonarr-french-audio-version-en.md │ ├── sonarr-french-audio-version-fr.md │ ├── sonarr-french-hdr-format-information-fr.md │ ├── sonarr-french-streaming-services-anime-en.md │ ├── sonarr-french-streaming-services-anime-fr.md │ ├── sonarr-french-streaming-services-en.md │ ├── sonarr-french-streaming-services-fr.md │ ├── sonarr-french-unwanted-en.md │ ├── sonarr-french-unwanted-fr.md │ ├── sonarr-suggest-attention-fr.md │ ├── starr-move-quality-to-top-fr.md │ └── starr-score-attention-fr.md ├── german-guide │ ├── radarr-cf-german-hd-bluray-web-scoring-en.md │ ├── radarr-cf-german-remux-web-scoring-en.md │ ├── radarr-cf-german-resolution-scoring-en.md │ ├── radarr-cf-german-resolution-scoring-hd-only-en.md │ ├── radarr-cf-german-uhd-bluray-web-scoring-en.md │ ├── radarr-german-advanced-audio-information-en.md │ ├── radarr-german-audio-version-en.md │ ├── radarr-german-misc-optional.md │ ├── radarr-german-misc-uhd-optional.md │ ├── radarr-german-unwanted-en.md │ ├── sonarr-cf-german-hd-bluray-web-scoring-en.md │ ├── sonarr-cf-german-remux-web-scoring-en.md │ ├── sonarr-cf-german-resolution-scoring-en.md │ ├── sonarr-cf-german-resolution-scoring-hd-only-en.md │ ├── sonarr-cf-german-uhd-bluray-web-scoring-en.md │ ├── sonarr-german-advanced-audio-information-en.md │ ├── sonarr-german-audio-version-en.md │ ├── sonarr-german-misc-optional.md │ ├── sonarr-german-misc-uhd-optional.md │ └── sonarr-german-unwanted-en.md ├── guides │ └── screenshots-are-examples-warning.md ├── merge-quality │ ├── radarr-current-logic.md │ └── sonarr-current-logic.md ├── radarr │ ├── imdb-vs-tmdb.md │ ├── radarr-folder-name-after-year-info.md │ └── tmdb-imdb-info.md ├── shared │ └── custom-format-basic-scoring-information.md ├── sonarr │ ├── imdb-vs-tvdb.md │ └── tvdb-imdb-info.md ├── starr │ ├── cf-not-compatible.md │ ├── move-quality-to-top.md │ ├── quality-size-description-faq.md │ ├── quality-size-preferred-info.md │ └── renaming-description-faq.md └── support.md ├── metadata.json ├── metadata.schema.json ├── mkdocs.yml ├── overrides ├── .icons │ └── circle-question.svg ├── css │ └── custom.css └── main.html ├── schemas ├── base-cf.schema.json ├── guide-only-cf.schema.json ├── radarr-cf.schema.json ├── sonarr-cf.schema.json └── specs │ ├── edition-spec.json │ ├── indexer-flag-spec.json │ ├── language-spec.json │ ├── quality-modifier-spec.json │ ├── release-group-spec.json │ ├── release-title-spec.json │ ├── release-type-spec.json │ ├── resolution-spec.json │ ├── size-spec.json │ ├── source-spec.json │ └── year-spec.json └── yamllint.yml /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: TRaSH- 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: github-actions 4 | directory: "/" 5 | schedule: 6 | interval: weekly 7 | open-pull-requests-limit: 10 8 | 9 | - package-ecosystem: pip 10 | directory: "/" 11 | schedule: 12 | interval: weekly 13 | open-pull-requests-limit: 10 14 | -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- 1 | name: Label Pull Requests 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | pull_request_target: 8 | 9 | jobs: 10 | triage: 11 | permissions: 12 | contents: read 13 | pull-requests: write 14 | runs-on: ubuntu-latest 15 | steps: 16 | - uses: actions/labeler@v5 17 | with: 18 | sync-labels: true 19 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | venv/ 3 | mkdocs-dev-server.bat 4 | site/ 5 | /docs/Notifiarr/preview.bat 6 | /docs/Notifiarr/Integrations/_TEMPLATE.md 7 | /includes/flowcharts/.$radarr-flowchart.drawio.bkp 8 | .DS_Store 9 | -------------------------------------------------------------------------------- /.imgbotconfig: -------------------------------------------------------------------------------- 1 | "ignoredFiles": [ 2 | "/images/*", 3 | "/docs/img/*" 4 | ] 5 | -------------------------------------------------------------------------------- /docs/.pages: -------------------------------------------------------------------------------- 1 | nav: 2 | - Home: index.md 3 | - Radarr 4 | - Sonarr 5 | - Prowlarr 6 | - Lidarr 7 | - Bazarr 8 | - File-and-Folder-Structure 9 | - Downloaders 10 | - Plex 11 | - Guide-Sync 12 | - Misc 13 | - Glossary 14 | -------------------------------------------------------------------------------- /docs/Bazarr/.pages: -------------------------------------------------------------------------------- 1 | nav: 2 | - Home: index.md 3 | - Basic-Guide (ext.link): https://wiki.bazarr.media/Getting-Started/Setup-Guide/ 4 | - After Install Configuration (ext.link): https://wiki.bazarr.media/Getting-Started/First-time-installation-configuration/ 5 | - Suggested Scoring: Bazarr-suggested-scoring.md 6 | - Scripts: /Bazarr/scripts/ 7 | 8 | -------------------------------------------------------------------------------- /docs/Bazarr/images/languages-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/languages-profile.png -------------------------------------------------------------------------------- /docs/Bazarr/images/mass-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/mass-edit.png -------------------------------------------------------------------------------- /docs/Bazarr/images/qs-anti-captcha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/qs-anti-captcha.png -------------------------------------------------------------------------------- /docs/Bazarr/images/qs-automatic-subtitles-sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/qs-automatic-subtitles-sync.png -------------------------------------------------------------------------------- /docs/Bazarr/images/qs-cutoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/qs-cutoff.png -------------------------------------------------------------------------------- /docs/Bazarr/images/qs-default-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/qs-default-settings.png -------------------------------------------------------------------------------- /docs/Bazarr/images/qs-languages-profiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/qs-languages-profiles.png -------------------------------------------------------------------------------- /docs/Bazarr/images/qs-performance-optimization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/qs-performance-optimization.png -------------------------------------------------------------------------------- /docs/Bazarr/images/qs-providers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/qs-providers.png -------------------------------------------------------------------------------- /docs/Bazarr/images/qs-radarr-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/qs-radarr-options.png -------------------------------------------------------------------------------- /docs/Bazarr/images/qs-radarr-path-mappings-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/qs-radarr-path-mappings-add.png -------------------------------------------------------------------------------- /docs/Bazarr/images/qs-radarr-path-mappings-mapped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/qs-radarr-path-mappings-mapped.png -------------------------------------------------------------------------------- /docs/Bazarr/images/qs-radarr-path-mappings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/qs-radarr-path-mappings.png -------------------------------------------------------------------------------- /docs/Bazarr/images/qs-radarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/qs-radarr.png -------------------------------------------------------------------------------- /docs/Bazarr/images/qs-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/qs-save.png -------------------------------------------------------------------------------- /docs/Bazarr/images/qs-settings-languages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/qs-settings-languages.png -------------------------------------------------------------------------------- /docs/Bazarr/images/qs-settings-providers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/qs-settings-providers.png -------------------------------------------------------------------------------- /docs/Bazarr/images/qs-settings-radarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/qs-settings-radarr.png -------------------------------------------------------------------------------- /docs/Bazarr/images/qs-settings-sonarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/qs-settings-sonarr.png -------------------------------------------------------------------------------- /docs/Bazarr/images/qs-settings-subtitles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/qs-settings-subtitles.png -------------------------------------------------------------------------------- /docs/Bazarr/images/qs-sonarr-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/qs-sonarr-options.png -------------------------------------------------------------------------------- /docs/Bazarr/images/qs-sonarr-path-mappings-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/qs-sonarr-path-mappings-add.png -------------------------------------------------------------------------------- /docs/Bazarr/images/qs-sonarr-path-mappings-mapped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/qs-sonarr-path-mappings-mapped.png -------------------------------------------------------------------------------- /docs/Bazarr/images/qs-sonarr-path-mappings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/qs-sonarr-path-mappings.png -------------------------------------------------------------------------------- /docs/Bazarr/images/qs-sonarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/qs-sonarr.png -------------------------------------------------------------------------------- /docs/Bazarr/images/qs-subtitles-language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/qs-subtitles-language.png -------------------------------------------------------------------------------- /docs/Bazarr/images/qs-subtitles-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/qs-subtitles-options.png -------------------------------------------------------------------------------- /docs/Bazarr/images/select-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/select-all.png -------------------------------------------------------------------------------- /docs/Bazarr/images/settings-radarr-options-minimum-score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/settings-radarr-options-minimum-score.png -------------------------------------------------------------------------------- /docs/Bazarr/images/settings-sonarr-options-minimum-score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/settings-sonarr-options-minimum-score.png -------------------------------------------------------------------------------- /docs/Bazarr/images/settings-subtitles-sync-score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Bazarr/images/settings-subtitles-sync-score.png -------------------------------------------------------------------------------- /docs/Bazarr/scripts/2to3-language-code/2to3_language_code.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | mv "{{subtitles}}" "{{directory}}/{{episode_name}}.{{subtitles_language_code3}}.srt" 4 | 5 | exit 6 | -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | trash-guides.info 2 | -------------------------------------------------------------------------------- /docs/Downloaders/.pages: -------------------------------------------------------------------------------- 1 | nav: 2 | - Home: index.md 3 | - NZBGet 4 | - SABnzbd 5 | - qBittorrent 6 | - Deluge 7 | - ruTorrent 8 | - 3rd Party tools: 3rd-party-tools.md 9 | -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/.pages: -------------------------------------------------------------------------------- 1 | nav: 2 | - Installing: Installing.md 3 | - Basic-Setup: Basic-Setup.md 4 | - Using Labels: Using-Labels.md 5 | - Port forwarding: Port-Forwarding.md 6 | - Tips 7 | -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/Tips/images/Unraid-settings-user-scripts-deluge-mover-cron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/Tips/images/Unraid-settings-user-scripts-deluge-mover-cron.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/Tips/images/Unraid-settings-user-scripts-deluge-mover-schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/Tips/images/Unraid-settings-user-scripts-deluge-mover-schedule.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/Tips/images/Unraid-settings-user-scripts-deluge-mover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/Tips/images/Unraid-settings-user-scripts-deluge-mover.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/Tips/images/Unraid-settings-user-scripts-edit-deluge-mover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/Tips/images/Unraid-settings-user-scripts-edit-deluge-mover.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/Tips/images/Unraid-settings-user-scripts-edit-requests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/Tips/images/Unraid-settings-user-scripts-edit-requests.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/Tips/images/Unraid-settings-user-scripts-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/Tips/images/Unraid-settings-user-scripts-icon.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/Tips/images/Unraid-settings-user-scripts-requests-schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/Tips/images/Unraid-settings-user-scripts-requests-schedule.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/Tips/images/Unraid-settings-user-scripts-requests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/Tips/images/Unraid-settings-user-scripts-requests.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/Tips/images/Unraid-user-scripts-add-new-script-enter-name-deluge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/Tips/images/Unraid-user-scripts-add-new-script-enter-name-deluge.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/Tips/images/Unraid-user-scripts-add-new-script-enter-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/Tips/images/Unraid-user-scripts-add-new-script-enter-name.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/Tips/images/Unraid-user-scripts-add-new-script-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/Tips/images/Unraid-user-scripts-add-new-script-icon.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/Tips/images/slackware-search-v15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/Tips/images/slackware-search-v15.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/Tips/images/slackware-search-v16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/Tips/images/slackware-search-v16.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/Tips/images/unraid-app-python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/Tips/images/unraid-app-python.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/images/Deluge-about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/images/Deluge-about.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/images/Deluge-bandwidth-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/images/Deluge-bandwidth-settings.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/images/Deluge-download-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/images/Deluge-download-settings.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/images/Deluge-globalbw-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/images/Deluge-globalbw-settings.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/images/Deluge-goals-rotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/images/Deluge-goals-rotation.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/images/Deluge-goals-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/images/Deluge-goals-settings.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/images/Deluge-label-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/images/Deluge-label-add.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/images/Deluge-label-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/images/Deluge-label-bw.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/images/Deluge-label-folders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/images/Deluge-label-folders.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/images/Deluge-network-extras-public.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/images/Deluge-network-extras-public.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/images/Deluge-network-extras-upnp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/images/Deluge-network-extras-upnp.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/images/Deluge-network-extras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/images/Deluge-network-extras.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/images/Deluge-network-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/images/Deluge-network-settings.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/images/Deluge-plugin-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/images/Deluge-plugin-settings.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/images/Deluge-port-forwarding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/images/Deluge-port-forwarding.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/images/Deluge-queue-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/images/Deluge-queue-settings.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/images/Deluge-tc-connman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/images/Deluge-tc-connman.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/images/Deluge-tc-daemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/images/Deluge-tc-daemon.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/images/Deluge-tc-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/images/Deluge-tc-settings.png -------------------------------------------------------------------------------- /docs/Downloaders/Deluge/images/Deluge-torrentbw-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/Deluge/images/Deluge-torrentbw-settings.png -------------------------------------------------------------------------------- /docs/Downloaders/NZBGet/.pages: -------------------------------------------------------------------------------- 1 | nav: 2 | - Basic-Setup: Basic-Setup.md 3 | - Path and Categories: Paths-and-Categories.md 4 | - Scripts: /Downloaders/NZBGet/scripts/ 5 | -------------------------------------------------------------------------------- /docs/Downloaders/NZBGet/images/categories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/NZBGet/images/categories.png -------------------------------------------------------------------------------- /docs/Downloaders/NZBGet/images/checkAndRepair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/NZBGet/images/checkAndRepair.png -------------------------------------------------------------------------------- /docs/Downloaders/NZBGet/images/extScripts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/NZBGet/images/extScripts.png -------------------------------------------------------------------------------- /docs/Downloaders/NZBGet/images/extension-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/NZBGet/images/extension-manager.png -------------------------------------------------------------------------------- /docs/Downloaders/NZBGet/images/incoming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/NZBGet/images/incoming.png -------------------------------------------------------------------------------- /docs/Downloaders/NZBGet/images/logging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/NZBGet/images/logging.png -------------------------------------------------------------------------------- /docs/Downloaders/NZBGet/images/newsservers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/NZBGet/images/newsservers.png -------------------------------------------------------------------------------- /docs/Downloaders/NZBGet/images/paths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/NZBGet/images/paths.png -------------------------------------------------------------------------------- /docs/Downloaders/NZBGet/images/queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/NZBGet/images/queue.png -------------------------------------------------------------------------------- /docs/Downloaders/NZBGet/images/radarr-download-clients-nzbget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/NZBGet/images/radarr-download-clients-nzbget.png -------------------------------------------------------------------------------- /docs/Downloaders/NZBGet/images/radarr-settings-download-clients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/NZBGet/images/radarr-settings-download-clients.png -------------------------------------------------------------------------------- /docs/Downloaders/NZBGet/images/sonarr-download-clients-nzbget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/NZBGet/images/sonarr-download-clients-nzbget.png -------------------------------------------------------------------------------- /docs/Downloaders/NZBGet/images/sonarr-settings-download-clients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/NZBGet/images/sonarr-settings-download-clients.png -------------------------------------------------------------------------------- /docs/Downloaders/NZBGet/images/unpack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/NZBGet/images/unpack.png -------------------------------------------------------------------------------- /docs/Downloaders/SABnzbd/.pages: -------------------------------------------------------------------------------- 1 | nav: 2 | - Basic-Setup: Basic-Setup.md 3 | - Path and Categories: Paths-and-Categories.md 4 | - Scripts: /Downloaders/SABnzbd/scripts/ 5 | -------------------------------------------------------------------------------- /docs/Downloaders/SABnzbd/images/radarr-download-clients-sabnzbd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/SABnzbd/images/radarr-download-clients-sabnzbd.png -------------------------------------------------------------------------------- /docs/Downloaders/SABnzbd/images/radarr-settings-download-clients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/SABnzbd/images/radarr-settings-download-clients.png -------------------------------------------------------------------------------- /docs/Downloaders/SABnzbd/images/sabnzbd-categories-replace_for.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/SABnzbd/images/sabnzbd-categories-replace_for.png -------------------------------------------------------------------------------- /docs/Downloaders/SABnzbd/images/sabnzbd-categories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/SABnzbd/images/sabnzbd-categories.png -------------------------------------------------------------------------------- /docs/Downloaders/SABnzbd/images/sabnzbd-category-breakdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/SABnzbd/images/sabnzbd-category-breakdown.png -------------------------------------------------------------------------------- /docs/Downloaders/SABnzbd/images/sabnzbd-folders-system-folders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/SABnzbd/images/sabnzbd-folders-system-folders.png -------------------------------------------------------------------------------- /docs/Downloaders/SABnzbd/images/sabnzbd-folders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/SABnzbd/images/sabnzbd-folders.png -------------------------------------------------------------------------------- /docs/Downloaders/SABnzbd/images/sabnzbd-general-tuning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/SABnzbd/images/sabnzbd-general-tuning.png -------------------------------------------------------------------------------- /docs/Downloaders/SABnzbd/images/sabnzbd-servers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/SABnzbd/images/sabnzbd-servers.png -------------------------------------------------------------------------------- /docs/Downloaders/SABnzbd/images/sabnzbd-special-host-whitelist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/SABnzbd/images/sabnzbd-special-host-whitelist.png -------------------------------------------------------------------------------- /docs/Downloaders/SABnzbd/images/sabnzbd-switches-post-processing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/SABnzbd/images/sabnzbd-switches-post-processing.png -------------------------------------------------------------------------------- /docs/Downloaders/SABnzbd/images/sabnzbd-switches-queue-clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/SABnzbd/images/sabnzbd-switches-queue-clean.png -------------------------------------------------------------------------------- /docs/Downloaders/SABnzbd/images/sabnzbd-switches-queue-unwanted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/SABnzbd/images/sabnzbd-switches-queue-unwanted.png -------------------------------------------------------------------------------- /docs/Downloaders/SABnzbd/images/sabnzbd-switches-queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/SABnzbd/images/sabnzbd-switches-queue.png -------------------------------------------------------------------------------- /docs/Downloaders/SABnzbd/images/sabnzbd-unable-to-connect-to-sabnzbd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/SABnzbd/images/sabnzbd-unable-to-connect-to-sabnzbd.png -------------------------------------------------------------------------------- /docs/Downloaders/SABnzbd/images/sonarr-download-clients-sabnzbd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/SABnzbd/images/sonarr-download-clients-sabnzbd.png -------------------------------------------------------------------------------- /docs/Downloaders/SABnzbd/images/sonarr-settings-download-clients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/SABnzbd/images/sonarr-settings-download-clients.png -------------------------------------------------------------------------------- /docs/Downloaders/SABnzbd/images/starr-unable-to-connect-to-sabnzbd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/SABnzbd/images/starr-unable-to-connect-to-sabnzbd.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/.pages: -------------------------------------------------------------------------------- 1 | nav: 2 | - Basic-Setup: Basic-Setup.md 3 | - Paths: Paths.md 4 | - How to add Categories: How-to-add-categories.md 5 | - Port forwarding: Port-forwarding.md 6 | - Tips 7 | -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/Paths.md: -------------------------------------------------------------------------------- 1 | # qBittorrent - Paths 2 | 3 | {! include-markdown "../../../includes/downloaders/path.md" !} 4 | 5 | --- 6 | 7 | `Options` => `Downloads` 8 | 9 | ![qbt-options-downloads](/File-and-Folder-Structure/images/qbt-options-downloads.png) 10 | -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/Tips/images/Unraid-settings-user-scripts-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/Tips/images/Unraid-settings-user-scripts-icon.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/Tips/images/Unraid-settings-user-scripts-list-select-qbit-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/Tips/images/Unraid-settings-user-scripts-list-select-qbit-api.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/Tips/images/Unraid-settings-user-scripts-list-select-qbit-mover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/Tips/images/Unraid-settings-user-scripts-list-select-qbit-mover.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/Tips/images/Unraid-settings-user-scripts-qbit-api-run-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/Tips/images/Unraid-settings-user-scripts-qbit-api-run-background.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/Tips/images/Unraid-settings-user-scripts-qbit-api-schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/Tips/images/Unraid-settings-user-scripts-qbit-api-schedule.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/Tips/images/Unraid-settings-user-scripts-qbit-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/Tips/images/Unraid-settings-user-scripts-qbit-api.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/Tips/images/Unraid-settings-user-scripts-qbit-mover-cron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/Tips/images/Unraid-settings-user-scripts-qbit-mover-cron.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/Tips/images/Unraid-settings-user-scripts-qbit-mover-schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/Tips/images/Unraid-settings-user-scripts-qbit-mover-schedule.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/Tips/images/Unraid-settings-user-scripts-qbit-mover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/Tips/images/Unraid-settings-user-scripts-qbit-mover.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/Tips/images/Unraid-user-scripts-add-new-script-enter-name-qbt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/Tips/images/Unraid-user-scripts-add-new-script-enter-name-qbt.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/Tips/images/Unraid-user-scripts-add-new-script-enter-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/Tips/images/Unraid-user-scripts-add-new-script-enter-name.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/Tips/images/Unraid-user-scripts-add-new-script-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/Tips/images/Unraid-user-scripts-add-new-script-icon.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/Tips/images/slackware-search-v15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/Tips/images/slackware-search-v15.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/Tips/images/slackware-search-v16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/Tips/images/slackware-search-v16.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/Tips/images/unraid-app-python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/Tips/images/unraid-app-python.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/images/qb-add-category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/images/qb-add-category.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/images/qb-category-breakdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/images/qb-category-breakdown.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/images/qb-new-category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/images/qb-new-category.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/images/qb-options-bittorrent-automatically-add-these-trackers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/images/qb-options-bittorrent-automatically-add-these-trackers.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/images/qb-options-bittorrent-privacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/images/qb-options-bittorrent-privacy.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/images/qb-options-bittorrent-seeding-limits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/images/qb-options-bittorrent-seeding-limits.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/images/qb-options-bittorrent-torrent-queueing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/images/qb-options-bittorrent-torrent-queueing.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/images/qb-options-downloads-saving-management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/images/qb-options-downloads-saving-management.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/images/qb-options-downloads-when-adding-a-torrent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/images/qb-options-downloads-when-adding-a-torrent.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/images/qb-options-webui-authentication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/images/qb-options-webui-authentication.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/images/qb-options-webui-security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/images/qb-options-webui-security.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/images/qb-saving-management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/images/qb-saving-management.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/images/qbt-options-connection-connections-limits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/images/qbt-options-connection-connections-limits.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/images/qbt-options-connection-proxy-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/images/qbt-options-connection-proxy-server.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/images/qbt-options-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/images/qbt-options-connection.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/images/qbt-options-speed-alternative-rate-limits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/images/qbt-options-speed-alternative-rate-limits.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/images/qbt-options-speed-global-rate-limits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/images/qbt-options-speed-global-rate-limits.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/images/qbt-options-speed-rate-limits-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/images/qbt-options-speed-rate-limits-settings.png -------------------------------------------------------------------------------- /docs/Downloaders/qBittorrent/images/qbt-pf-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Downloaders/qBittorrent/images/qbt-pf-connection.png -------------------------------------------------------------------------------- /docs/Downloaders/ruTorrent/index.md: -------------------------------------------------------------------------------- 1 | # ruTorrent Placeholder 2 | 3 | We currently do not have a guide for rTorrent/ruTorrent. 4 | 5 | If you are an rTorrent user and would like to contribute, please contact us on Discord or submit a PR. 6 | -------------------------------------------------------------------------------- /docs/Downloaders/ruTorrent/ruTorrent-Basic-Setup.md: -------------------------------------------------------------------------------- 1 | # ruTorrent - Basic Setup 2 | 3 | {! include-markdown "../../../includes/downloaders/basic-setup.md" !} 4 | 5 | --- 6 | 7 | ## Soon 8 | 9 | I've asked several people that used this download client for some help/feedback, but most of them just switched to qBittorrent. 10 | 11 | --8<-- "includes/support.md" 12 | -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/.pages: -------------------------------------------------------------------------------- 1 | nav: 2 | - Home: index.md 3 | - Hardlinks and Instant Moves: Hardlinks-and-Instant-Moves.md 4 | - How To Set Up: How-to-set-up 5 | - Examples: Examples.md 6 | - Check if Hardlinks Are Working: Check-if-hardlinks-are-working.md 7 | - Replace Copies With Hardlinks: Replace-copies-with-hardlinks.md 8 | -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/adduser.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/adduser.PNG -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/adduser_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/adduser_2.PNG -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/adduser_3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/adduser_3.PNG -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/create_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/create_share.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/ds-deluge-preferences-downloads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/ds-deluge-preferences-downloads.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/ds-nzbget-settings-categories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/ds-nzbget-settings-categories.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/ds-nzbget-settings-paths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/ds-nzbget-settings-paths.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/ds-qbt-options-downloads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/ds-qbt-options-downloads.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/ds-radarr-add-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/ds-radarr-add-new.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/ds-radarr-movies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/ds-radarr-movies.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/ds-radarr-root-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/ds-radarr-root-folder.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/ds-rtorrent-settings-autotools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/ds-rtorrent-settings-autotools.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/ds-rtorrent-settings-downloads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/ds-rtorrent-settings-downloads.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/ds-rtorrent.rc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/ds-rtorrent.rc.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/ds-sabnzbd-categories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/ds-sabnzbd-categories.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/ds-sabnzbd-folders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/ds-sabnzbd-folders.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/ds-sonarr-add-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/ds-sonarr-add-new.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/ds-sonarr-root-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/ds-sonarr-root-folder.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/ds-sonarr-tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/ds-sonarr-tv.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/home-folders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/home-folders.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/synology-control-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/synology-control-panel.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/synology-create-task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/synology-create-task.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/synology-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/synology-id.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/synology-ssh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/synology-ssh.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/synology-task-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/synology-task-settings.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/truenas-create-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/truenas-create-dataset.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/truenas-dataset-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/truenas-dataset-options.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/truenas-dataset-permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/truenas-dataset-permissions.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/truenas-group-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/truenas-group-options.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/truenas-nfs-service-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/truenas-nfs-service-options.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/truenas-nfs-share-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/truenas-nfs-share-options.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/truenas-user-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/truenas-user-options.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/unraid-arr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/unraid-arr.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/unraid-docker-click-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/unraid-docker-click-edit.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/unraid-docker-enable-advanced-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/unraid-docker-enable-advanced-view.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/unraid-enable-hardlinks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/unraid-enable-hardlinks.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/unraid-enable-hardlinks_612.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/unraid-enable-hardlinks_612.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/unraid-final-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/unraid-final-result.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/unraid-main-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/unraid-main-share.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/unraid-media-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/unraid-media-server.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/unraid-torrent-clients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/unraid-torrent-clients.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/unraid-usenet-client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/unraid-usenet-client.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/unraid_main_share_array_612.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/unraid_main_share_array_612.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/How-to-set-up/images/unraid_main_share_cache_612.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/How-to-set-up/images/unraid_main_share_cache_612.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/images/deluge-preferences-downloads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/images/deluge-preferences-downloads.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/images/hardlinks-inode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/images/hardlinks-inode.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/images/hardlinks-ls-al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/images/hardlinks-ls-al.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/images/hardlinks-ls-i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/images/hardlinks-ls-i.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/images/hardlinks-stat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/images/hardlinks-stat.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/images/nzbget-settings-categories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/images/nzbget-settings-categories.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/images/nzbget-settings-paths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/images/nzbget-settings-paths.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/images/qbt-options-downloads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/images/qbt-options-downloads.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/images/radarr-add-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/images/radarr-add-new.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/images/radarr-enable-hardlinks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/images/radarr-enable-hardlinks.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/images/radarr-movies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/images/radarr-movies.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/images/radarr-root-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/images/radarr-root-folder.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/images/rtorrent-settings-autotools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/images/rtorrent-settings-autotools.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/images/rtorrent-settings-downloads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/images/rtorrent-settings-downloads.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/images/rtorrent.rc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/images/rtorrent.rc.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/images/sonarr-add-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/images/sonarr-add-new.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/images/sonarr-enable-hardlinks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/images/sonarr-enable-hardlinks.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/images/sonarr-root-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/images/sonarr-root-folder.png -------------------------------------------------------------------------------- /docs/File-and-Folder-Structure/images/sonarr-tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/File-and-Folder-Structure/images/sonarr-tv.png -------------------------------------------------------------------------------- /docs/Glossary/.pages: -------------------------------------------------------------------------------- 1 | nav: 2 | - Home: index.md 3 | -------------------------------------------------------------------------------- /docs/Guide-Sync/.pages: -------------------------------------------------------------------------------- 1 | nav: 2 | - Home: index.md 3 | -------------------------------------------------------------------------------- /docs/Misc/.pages: -------------------------------------------------------------------------------- 1 | nav: 2 | - Home: index.md 3 | - How to provide a Docker compose: how-to-provide-a-docker-compose.md 4 | - Setup TorGuard for port forwarding: How-to-setup-Torguard-for-port-forwarding.md 5 | - x265-4k and Golden Rule: x265-4k.md 6 | -------------------------------------------------------------------------------- /docs/Misc/images/torguard/client-area-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Misc/images/torguard/client-area-login.png -------------------------------------------------------------------------------- /docs/Misc/images/torguard/client-area-manage-credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Misc/images/torguard/client-area-manage-credentials.png -------------------------------------------------------------------------------- /docs/Misc/images/torguard/config-generator-wireguard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Misc/images/torguard/config-generator-wireguard.png -------------------------------------------------------------------------------- /docs/Misc/images/torguard/create_user_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Misc/images/torguard/create_user_account.png -------------------------------------------------------------------------------- /docs/Misc/images/torguard/req_port_fwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Misc/images/torguard/req_port_fwd.png -------------------------------------------------------------------------------- /docs/Misc/images/torguard/request-new-pfw-wireguard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Misc/images/torguard/request-new-pfw-wireguard.png -------------------------------------------------------------------------------- /docs/Misc/images/torguard/services-my-services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Misc/images/torguard/services-my-services.png -------------------------------------------------------------------------------- /docs/Misc/images/torguard/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Misc/images/torguard/status.png -------------------------------------------------------------------------------- /docs/Misc/images/torguard/tools-config-generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Misc/images/torguard/tools-config-generator.png -------------------------------------------------------------------------------- /docs/Misc/images/torguard/torguard-FreeTrial-728x90.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Misc/images/torguard/torguard-FreeTrial-728x90.gif -------------------------------------------------------------------------------- /docs/Plex/.pages: -------------------------------------------------------------------------------- 1 | nav: 2 | - Home: index.md 3 | - Suggested Plex Media Server Settings: /Plex/Tips/Plex-media-server/ 4 | - Optimal Plex Client Settings: /Plex/Tips/Optimal-plex-client-settings/ 5 | - What does my media player support: what-does-my-media-player-support.md 6 | - Stop 4k Video Transcoding: /Plex/Tips/4k-transcoding/ 7 | - Profiles: /Plex/profiles/ 8 | -------------------------------------------------------------------------------- /docs/Plex/Tips/images/manage-libraries-movies-part1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/manage-libraries-movies-part1.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/manage-libraries-movies-part2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/manage-libraries-movies-part2.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/manage-libraries-movies-part3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/manage-libraries-movies-part3.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/manage-libraries-movies-part4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/manage-libraries-movies-part4.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/manage-libraries-movies-part5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/manage-libraries-movies-part5.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/manage-libraries-tv-part1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/manage-libraries-tv-part1.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/manage-libraries-tv-part2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/manage-libraries-tv-part2.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/manage-libraries-tv-part3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/manage-libraries-tv-part3.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/manage-libraries-tv-part4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/manage-libraries-tv-part4.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/manage-libraries-tv-part5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/manage-libraries-tv-part5.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/plex-settings-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/plex-settings-icon.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-library-allow-media-deletion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-library-allow-media-deletion.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-library-empty-trash-automatically-after-every-scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-library-empty-trash-automatically-after-every-scan.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-library-generate-chapter-thumbnails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-library-generate-chapter-thumbnails.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-library-generate-credits-video-markers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-library-generate-credits-video-markers.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-library-generate-intro-video-markers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-library-generate-intro-video-markers.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-library-generate-video-preview-thumbnails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-library-generate-video-preview-thumbnails.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-library-generate-voice-activity-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-library-generate-voice-activity-data.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-library-include-music-libraries-in-automatic-updates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-library-include-music-libraries-in-automatic-updates.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-library-marker-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-library-marker-source.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-library-part1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-library-part1.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-library-run-a-partial-scan-when-changes-are-detected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-library-run-a-partial-scan-when-changes-are-detected.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-library-run-scanner-tasks-at-a-lower-priority.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-library-run-scanner-tasks-at-a-lower-priority.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-library-scan-my-library-automatically.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-library-scan-my-library-automatically.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-library-scan-my-library-periodically.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-library-scan-my-library-periodically.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-manage.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-network-custom-server-access-urls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-network-custom-server-access-urls.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-network-enable-local-network-discovery-(gdm).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-network-enable-local-network-discovery-(gdm).png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-network-enable-relay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-network-enable-relay.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-network-enable-server-support-for-ipv6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-network-enable-server-support-for-ipv6.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-network-lan-networks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-network-lan-networks.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-network-part1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-network-part1.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-network-part2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-network-part2.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-network-preferred-network-interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-network-preferred-network-interface.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-network-remote-streams-allowed-per-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-network-remote-streams-allowed-per-user.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-network-secure-connections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-network-secure-connections.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-network-strict-tls-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-network-strict-tls-configuration.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-network-treat-wan-ip-as-lan-bandwidth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-network-treat-wan-ip-as-lan-bandwidth.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-network-webhooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-network-webhooks.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-remote-access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-remote-access.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-settings.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-transcoder-enable-hdr-tone-mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-transcoder-enable-hdr-tone-mapping.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-transcoder-hardware-transcoding-device.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-transcoder-hardware-transcoding-device.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-transcoder-tonemapping-algorithm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-transcoder-tonemapping-algorithm.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-transcoder-transcoder-quality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-transcoder-transcoder-quality.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-transcoder-transcoder-temporary-directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-transcoder-transcoder-temporary-directory.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-transcoder-use-hardware-accelerated-video-encoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-transcoder-use-hardware-accelerated-video-encoding.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-transcoder-use-hardware-acceleration-when-available.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-transcoder-use-hardware-acceleration-when-available.png -------------------------------------------------------------------------------- /docs/Plex/Tips/images/settings-transcoder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Plex/Tips/images/settings-transcoder.png -------------------------------------------------------------------------------- /docs/Prowlarr/.pages: -------------------------------------------------------------------------------- 1 | nav: 2 | - Home: index.md 3 | - How to set up proxy for certain indexers: prowlarr-setup-proxy.md 4 | - How to set up FlareSolverr: prowlarr-setup-flaresolverr.md 5 | - How to set up indexers with limited API: prowlarr-setup-limited-api.md 6 | -------------------------------------------------------------------------------- /docs/Prowlarr/images/add-indexer-proxy-flaresolverr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Prowlarr/images/add-indexer-proxy-flaresolverr.png -------------------------------------------------------------------------------- /docs/Prowlarr/images/add-indexer-proxy-http.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Prowlarr/images/add-indexer-proxy-http.png -------------------------------------------------------------------------------- /docs/Prowlarr/images/add-proxy-flaresolverr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Prowlarr/images/add-proxy-flaresolverr.png -------------------------------------------------------------------------------- /docs/Prowlarr/images/add-proxy-http.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Prowlarr/images/add-proxy-http.png -------------------------------------------------------------------------------- /docs/Prowlarr/images/add-tag-to-indexer-flaresolverr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Prowlarr/images/add-tag-to-indexer-flaresolverr.png -------------------------------------------------------------------------------- /docs/Prowlarr/images/add-tag-to-indexer-privoxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Prowlarr/images/add-tag-to-indexer-privoxy.png -------------------------------------------------------------------------------- /docs/Prowlarr/images/indexer-sync-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Prowlarr/images/indexer-sync-profile.png -------------------------------------------------------------------------------- /docs/Prowlarr/images/select-indexer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Prowlarr/images/select-indexer.png -------------------------------------------------------------------------------- /docs/Prowlarr/images/settings-apps-sync-profiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Prowlarr/images/settings-apps-sync-profiles.png -------------------------------------------------------------------------------- /docs/Prowlarr/images/settings-indexers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Prowlarr/images/settings-indexers.png -------------------------------------------------------------------------------- /docs/Prowlarr/images/sync-profile-automatic-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Prowlarr/images/sync-profile-automatic-search.png -------------------------------------------------------------------------------- /docs/Prowlarr/images/sync-profile-interactive-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Prowlarr/images/sync-profile-interactive-search.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/Radarr-show-unknown-movie-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/Radarr-show-unknown-movie-item.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/merge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/merge.gif -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/order-qualities-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/order-qualities-default.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/order-qualities-downgrade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/order-qualities-downgrade.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/order-qualities-matters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/order-qualities-matters.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/order-qualities-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/order-qualities-top.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/original-language-tmdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/original-language-tmdb.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/original-language-tvdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/original-language-tvdb.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/radarr-add-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/radarr-add-list.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/radarr-add-lists-options-tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/radarr-add-lists-options-tags.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/radarr-add-lists-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/radarr-add-lists-options.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/radarr-add-tag-manual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/radarr-add-tag-manual.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/radarr-auto-tagging-add-auto-tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/radarr-auto-tagging-add-auto-tag.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/radarr-auto-tagging-add-condition-final-steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/radarr-auto-tagging-add-condition-final-steps.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/radarr-auto-tagging-add-condition-root-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/radarr-auto-tagging-add-condition-root-folder.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/radarr-auto-tagging-add-condition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/radarr-auto-tagging-add-condition.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/radarr-correct-folder-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/radarr-correct-folder-name.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/radarr-edit-selected-movies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/radarr-edit-selected-movies.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/radarr-movie-editor-move-files-yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/radarr-movie-editor-move-files-yes.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/radarr-movie-editor-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/radarr-movie-editor-select.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/radarr-movie-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/radarr-movie-editor.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/radarr-settings-download-clients-categories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/radarr-settings-download-clients-categories.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/radarr-settings-download-clients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/radarr-settings-download-clients.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/radarr-settings-lists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/radarr-settings-lists.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/radarr-tags-3rd-party-app-jellyseerr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/radarr-tags-3rd-party-app-jellyseerr.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/radarr-wrong-folder-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/radarr-wrong-folder-name.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/rpm-activity-waiting-for-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/rpm-activity-waiting-for-import.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/rpm-add-local-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/rpm-add-local-path.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/rpm-add-rpm-remote-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/rpm-add-rpm-remote-path.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/rpm-add-rpm-select-sabnzbd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/rpm-add-rpm-select-sabnzbd.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/rpm-add-rpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/rpm-add-rpm.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/rpm-final-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/rpm-final-results.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/rpm-health-issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/rpm-health-issue.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/rpm-sabnzbd-folders-cdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/rpm-sabnzbd-folders-cdf.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/rpm-sabnzbd-host.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/rpm-sabnzbd-host.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/rpm-settings-download-clients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/rpm-settings-download-clients.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/rpm-system-events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/rpm-system-events.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/sonarr-add-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/sonarr-add-list.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/sonarr-add-lists-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/sonarr-add-lists-options.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/sonarr-categories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/sonarr-categories.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/sonarr-clone-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/sonarr-clone-profile.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/sonarr-settings-download-clients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/sonarr-settings-download-clients.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/sonarr-settings-import-lists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/sonarr-settings-import-lists.png -------------------------------------------------------------------------------- /docs/Radarr/Tips/images/sonarr-settings-profiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/Tips/images/sonarr-settings-profiles.png -------------------------------------------------------------------------------- /docs/Radarr/images/cf-import-cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cf-import-cf.png -------------------------------------------------------------------------------- /docs/Radarr/images/cf-import-done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cf-import-done.png -------------------------------------------------------------------------------- /docs/Radarr/images/cf-import-to-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cf-import-to-update.png -------------------------------------------------------------------------------- /docs/Radarr/images/cf-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cf-import.png -------------------------------------------------------------------------------- /docs/Radarr/images/cf-json-copy-paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cf-json-copy-paste.png -------------------------------------------------------------------------------- /docs/Radarr/images/cf-json-expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cf-json-expand.png -------------------------------------------------------------------------------- /docs/Radarr/images/cf-misc-10000-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cf-misc-10000-result.png -------------------------------------------------------------------------------- /docs/Radarr/images/cf-misc-10000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cf-misc-10000.png -------------------------------------------------------------------------------- /docs/Radarr/images/cf-mm-propers-repacks-disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cf-mm-propers-repacks-disable.png -------------------------------------------------------------------------------- /docs/Radarr/images/cf-plus-add-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cf-plus-add-small.png -------------------------------------------------------------------------------- /docs/Radarr/images/cf-plus-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cf-plus-add.png -------------------------------------------------------------------------------- /docs/Radarr/images/cf-prefer-advanced-audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cf-prefer-advanced-audio.png -------------------------------------------------------------------------------- /docs/Radarr/images/cf-prefer-hdr-metadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cf-prefer-hdr-metadata.png -------------------------------------------------------------------------------- /docs/Radarr/images/cf-profile-encodes-scoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cf-profile-encodes-scoring.png -------------------------------------------------------------------------------- /docs/Radarr/images/cf-profile-remux1080-scoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cf-profile-remux1080-scoring.png -------------------------------------------------------------------------------- /docs/Radarr/images/cf-profile-remux2160-scoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cf-profile-remux2160-scoring.png -------------------------------------------------------------------------------- /docs/Radarr/images/cf-profile-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cf-profile-selected.png -------------------------------------------------------------------------------- /docs/Radarr/images/cf-quality-profile-cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cf-quality-profile-cf.png -------------------------------------------------------------------------------- /docs/Radarr/images/cf-quality-profiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cf-quality-profiles.png -------------------------------------------------------------------------------- /docs/Radarr/images/cf-settings-cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cf-settings-cf.png -------------------------------------------------------------------------------- /docs/Radarr/images/cf-settings-profiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cf-settings-profiles.png -------------------------------------------------------------------------------- /docs/Radarr/images/cf-table-select-brdisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cf-table-select-brdisk.png -------------------------------------------------------------------------------- /docs/Radarr/images/cfa-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cfa-complete.png -------------------------------------------------------------------------------- /docs/Radarr/images/cfa-da-scoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cfa-da-scoring.png -------------------------------------------------------------------------------- /docs/Radarr/images/cfa-default-scoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cfa-default-scoring.png -------------------------------------------------------------------------------- /docs/Radarr/images/cfa-mergedqualities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cfa-mergedqualities.png -------------------------------------------------------------------------------- /docs/Radarr/images/cfa-qualityorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cfa-qualityorder.png -------------------------------------------------------------------------------- /docs/Radarr/images/cfa-qualityprofile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cfa-qualityprofile.png -------------------------------------------------------------------------------- /docs/Radarr/images/cfa-settings-profiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cfa-settings-profiles.png -------------------------------------------------------------------------------- /docs/Radarr/images/cfa-uncensored-scoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/cfa-uncensored-scoring.png -------------------------------------------------------------------------------- /docs/Radarr/images/custom-format-flow-chart-radar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/custom-format-flow-chart-radar.png -------------------------------------------------------------------------------- /docs/Radarr/images/flowchart-audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/flowchart-audio.png -------------------------------------------------------------------------------- /docs/Radarr/images/flowchart-guide-radarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/flowchart-guide-radarr.png -------------------------------------------------------------------------------- /docs/Radarr/images/flowchart-hdr-dv-webdl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/flowchart-hdr-dv-webdl.png -------------------------------------------------------------------------------- /docs/Radarr/images/flowchart-hdr-formats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/flowchart-hdr-formats.png -------------------------------------------------------------------------------- /docs/Radarr/images/flowchart-hdr10plus-boost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/flowchart-hdr10plus-boost.png -------------------------------------------------------------------------------- /docs/Radarr/images/flowchart-quality-profiles-radarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/flowchart-quality-profiles-radarr.png -------------------------------------------------------------------------------- /docs/Radarr/images/flowchart-sqp-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/flowchart-sqp-1.png -------------------------------------------------------------------------------- /docs/Radarr/images/flowchart-sqp-2-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/flowchart-sqp-2-5.png -------------------------------------------------------------------------------- /docs/Radarr/images/french-prowlarr-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/french-prowlarr-settings.png -------------------------------------------------------------------------------- /docs/Radarr/images/french-radarr-qp-bluray-webdl-hd-vf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/french-radarr-qp-bluray-webdl-hd-vf.png -------------------------------------------------------------------------------- /docs/Radarr/images/french-radarr-qp-bluray-webdl-hd-vo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/french-radarr-qp-bluray-webdl-hd-vo.png -------------------------------------------------------------------------------- /docs/Radarr/images/french-radarr-qp-bluray-webdl-uhd-vf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/french-radarr-qp-bluray-webdl-uhd-vf.png -------------------------------------------------------------------------------- /docs/Radarr/images/french-radarr-qp-bluray-webdl-uhd-vo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/french-radarr-qp-bluray-webdl-uhd-vo.png -------------------------------------------------------------------------------- /docs/Radarr/images/french-radarr-qp-remux-hd-vf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/french-radarr-qp-remux-hd-vf.png -------------------------------------------------------------------------------- /docs/Radarr/images/french-radarr-qp-remux-hd-vo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/french-radarr-qp-remux-hd-vo.png -------------------------------------------------------------------------------- /docs/Radarr/images/french-radarr-qp-remux-uhd-vf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/french-radarr-qp-remux-uhd-vf.png -------------------------------------------------------------------------------- /docs/Radarr/images/french-radarr-qp-remux-uhd-vo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/french-radarr-qp-remux-uhd-vo.png -------------------------------------------------------------------------------- /docs/Radarr/images/french-starr-multi-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/french-starr-multi-settings.png -------------------------------------------------------------------------------- /docs/Radarr/images/german-cf-profile-language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/german-cf-profile-language.png -------------------------------------------------------------------------------- /docs/Radarr/images/german-qp-bluray-webdl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/german-qp-bluray-webdl.png -------------------------------------------------------------------------------- /docs/Radarr/images/german-starr-multi-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/german-starr-multi-settings.png -------------------------------------------------------------------------------- /docs/Radarr/images/hdr-formats-flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/hdr-formats-flowchart.png -------------------------------------------------------------------------------- /docs/Radarr/images/imax-e/imax-e.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/imax-e/imax-e.1.png -------------------------------------------------------------------------------- /docs/Radarr/images/imax-e/imax-e.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/imax-e/imax-e.2.png -------------------------------------------------------------------------------- /docs/Radarr/images/imax-e/imax-e.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/imax-e/imax-e.3.png -------------------------------------------------------------------------------- /docs/Radarr/images/imax-e/imax-e.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/imax-e/imax-e.4.png -------------------------------------------------------------------------------- /docs/Radarr/images/imax-e/imax-e.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/imax-e/imax-e.5.png -------------------------------------------------------------------------------- /docs/Radarr/images/plex-audio-atv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/plex-audio-atv.png -------------------------------------------------------------------------------- /docs/Radarr/images/plex-audio-shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/plex-audio-shield.png -------------------------------------------------------------------------------- /docs/Radarr/images/qp-bluray-webdl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/qp-bluray-webdl.png -------------------------------------------------------------------------------- /docs/Radarr/images/qp-remux-webdl-1080p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/qp-remux-webdl-1080p.png -------------------------------------------------------------------------------- /docs/Radarr/images/qp-remux-webdl-2160p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/qp-remux-webdl-2160p.png -------------------------------------------------------------------------------- /docs/Radarr/images/qp-uhd-bluray-webdl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/qp-uhd-bluray-webdl.png -------------------------------------------------------------------------------- /docs/Radarr/images/radarr-enable-rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/radarr-enable-rename.png -------------------------------------------------------------------------------- /docs/Radarr/images/radarr-show-adavanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/radarr-show-adavanced.png -------------------------------------------------------------------------------- /docs/Radarr/images/unhide-advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Radarr/images/unhide-advanced.png -------------------------------------------------------------------------------- /docs/Recyclarr/.pages: -------------------------------------------------------------------------------- 1 | nav: 2 | - Home: index.md 3 | - Collection of configs: recyclarr-configs.md 4 | -------------------------------------------------------------------------------- /docs/Recyclarr/recyclarr-configs.md: -------------------------------------------------------------------------------- 1 | # Collection of Recyclarr configs 2 | 3 | This page has been relocated here: [Recyclarr - Pre-Built Configuration Files](https://recyclarr.dev/wiki/guide-configs/) 4 | -------------------------------------------------------------------------------- /docs/Sonarr/Tips/.pages: -------------------------------------------------------------------------------- 1 | nav: 2 | - How to Merge Quality: Merge-quality.md 3 | - How to Order Quality Sources: How-to-order-Quality-Source.md 4 | - How to rename your folders: Sonarr-rename-your-folders.md 5 | - How to set up Language Custom Formats: How-to-setup-language-custom-formats.md 6 | - How to Sync 2 Radarr or Sonarr with each other: Sync-2-radarr-sonarr.md 7 | - Remote Path Mappings: Sonarr-remote-path-mapping.md 8 | 9 | -------------------------------------------------------------------------------- /docs/Sonarr/Tips/How-to-order-Quality-Source.md: -------------------------------------------------------------------------------- 1 | 2 | {! include-markdown '../../Radarr/Tips/How-to-order-Quality-Source.md' !} 3 | 4 | -------------------------------------------------------------------------------- /docs/Sonarr/Tips/How-to-setup-language-custom-formats.md: -------------------------------------------------------------------------------- 1 | 2 | {! include-markdown '../../Radarr/Tips/How-to-setup-language-custom-formats.md' !} 3 | 4 | -------------------------------------------------------------------------------- /docs/Sonarr/Tips/Merge-quality.md: -------------------------------------------------------------------------------- 1 | 2 | {! include-markdown '../../Radarr/Tips/Merge-quality.md' !} 3 | 4 | -------------------------------------------------------------------------------- /docs/Sonarr/Tips/Sonarr-rename-your-folders.md: -------------------------------------------------------------------------------- 1 | 2 | {! include-markdown '../../Radarr/Tips/Radarr-rename-your-folders.md' !} 3 | 4 | -------------------------------------------------------------------------------- /docs/Sonarr/Tips/Sync-2-radarr-sonarr.md: -------------------------------------------------------------------------------- 1 | 2 | {! include-markdown '../../Radarr/Tips/Sync-2-radarr-sonarr.md' !} 3 | 4 | -------------------------------------------------------------------------------- /docs/Sonarr/Tips/images/cl_cli_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/Tips/images/cl_cli_tab.png -------------------------------------------------------------------------------- /docs/Sonarr/Tips/images/dl_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/Tips/images/dl_error.png -------------------------------------------------------------------------------- /docs/Sonarr/Tips/images/mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/Tips/images/mapping.png -------------------------------------------------------------------------------- /docs/Sonarr/Tips/images/new_mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/Tips/images/new_mapping.png -------------------------------------------------------------------------------- /docs/Sonarr/Tips/images/qbit_client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/Tips/images/qbit_client.png -------------------------------------------------------------------------------- /docs/Sonarr/Tips/images/qbit_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/Tips/images/qbit_final.png -------------------------------------------------------------------------------- /docs/Sonarr/Tips/images/qbit_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/Tips/images/qbit_options.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cf-import-cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cf-import-cf.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cf-import-done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cf-import-done.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cf-import-to-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cf-import-to-update.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cf-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cf-import.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cf-json-copy-paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cf-json-copy-paste.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cf-json-expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cf-json-expand.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cf-mm-propers-repacks-disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cf-mm-propers-repacks-disable.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cf-plus-add-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cf-plus-add-small.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cf-profile-alternative-web1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cf-profile-alternative-web1080.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cf-profile-alternative-web2160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cf-profile-alternative-web2160.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cf-profile-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cf-profile-selected.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cf-profile-web1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cf-profile-web1080.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cf-profile-web2160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cf-profile-web2160.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cf-quality-profile-cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cf-quality-profile-cf.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cf-quality-profiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cf-quality-profiles.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cf-settings-cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cf-settings-cf.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cf-settings-profiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cf-settings-profiles.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cf-table-select-brdisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cf-table-select-brdisk.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cfa-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cfa-complete.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cfa-da-scoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cfa-da-scoring.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cfa-default-scoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cfa-default-scoring.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cfa-mergedqualities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cfa-mergedqualities.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cfa-prefixedrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cfa-prefixedrange.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cfa-qualityorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cfa-qualityorder.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cfa-qualityprofile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cfa-qualityprofile.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cfa-seriestype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cfa-seriestype.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cfa-settings-profiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cfa-settings-profiles.png -------------------------------------------------------------------------------- /docs/Sonarr/images/cfa-uncensored-scoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/cfa-uncensored-scoring.png -------------------------------------------------------------------------------- /docs/Sonarr/images/flowchart-quality-profiles-sonarr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/flowchart-quality-profiles-sonarr.png -------------------------------------------------------------------------------- /docs/Sonarr/images/french-prowlarr-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/french-prowlarr-settings.png -------------------------------------------------------------------------------- /docs/Sonarr/images/french-sonarr-qp-bluray-webdl-hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/french-sonarr-qp-bluray-webdl-hd.png -------------------------------------------------------------------------------- /docs/Sonarr/images/french-sonarr-qp-bluray-webdl-uhd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/french-sonarr-qp-bluray-webdl-uhd.png -------------------------------------------------------------------------------- /docs/Sonarr/images/french-starr-multi-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/french-starr-multi-settings.png -------------------------------------------------------------------------------- /docs/Sonarr/images/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/results.png -------------------------------------------------------------------------------- /docs/Sonarr/images/sonarr-enable-rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/sonarr-enable-rename.png -------------------------------------------------------------------------------- /docs/Sonarr/images/sonarr-show-adavanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/sonarr-show-adavanced.png -------------------------------------------------------------------------------- /docs/Sonarr/images/unhide-advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/Sonarr/images/unhide-advanced.png -------------------------------------------------------------------------------- /docs/img/buy-me-a-coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/img/buy-me-a-coffee.png -------------------------------------------------------------------------------- /docs/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/img/favicon.png -------------------------------------------------------------------------------- /docs/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/img/logo.png -------------------------------------------------------------------------------- /docs/img/thnx-for-the-coffee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/docs/img/thnx-for-the-coffee.jpg -------------------------------------------------------------------------------- /docs/json/radarr/cf/fansub.json: -------------------------------------------------------------------------------- 1 | { 2 | "trash_id": "02e48d30a176c91baf9e15de05e5dc6a", 3 | "name": "FanSUB", 4 | "includeCustomFormatWhenRenaming": false, 5 | "specifications": [ 6 | { 7 | "name": "FanSUB", 8 | "implementation": "ReleaseTitleSpecification", 9 | "negate": false, 10 | "required": true, 11 | "fields": { 12 | "value": "\\b(FanSUB)\\b" 13 | } 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /docs/json/radarr/cf/hfr.json: -------------------------------------------------------------------------------- 1 | { 2 | "trash_id": "73613461ac2cea99d52c4cd6e177ab82", 3 | "name": "HFR", 4 | "includeCustomFormatWhenRenaming": true, 5 | "specifications": [ 6 | { 7 | "name": "HFR", 8 | "implementation": "ReleaseTitleSpecification", 9 | "negate": false, 10 | "required": true, 11 | "fields": { 12 | "value": "\\b(HFR)\\b" 13 | } 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /docs/json/radarr/cf/mpeg2.json: -------------------------------------------------------------------------------- 1 | { 2 | "trash_id": "ff86c4326018682f817830ced463332b", 3 | "name": "MPEG2", 4 | "includeCustomFormatWhenRenaming": false, 5 | "specifications": [ 6 | { 7 | "name": "MPEG2", 8 | "implementation": "ReleaseTitleSpecification", 9 | "negate": false, 10 | "required": true, 11 | "fields": { 12 | "value": "MPEG[-.]?2" 13 | } 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /docs/json/radarr/cf/vc-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "trash_id": "11cd1db7165d6a7ad9a83bc97b8b1060", 3 | "name": "VC-1", 4 | "includeCustomFormatWhenRenaming": false, 5 | "specifications": [ 6 | { 7 | "name": "VC-1", 8 | "implementation": "ReleaseTitleSpecification", 9 | "negate": false, 10 | "required": true, 11 | "fields": { 12 | "value": "\\bVC[-_. ]?1\\b" 13 | } 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /docs/json/radarr/cf/vp9.json: -------------------------------------------------------------------------------- 1 | { 2 | "trash_id": "ae4cfaa9283a4f2150ac3da08e388723", 3 | "name": "VP9", 4 | "includeCustomFormatWhenRenaming": false, 5 | "specifications": [ 6 | { 7 | "name": "VP9", 8 | "implementation": "ReleaseTitleSpecification", 9 | "negate": false, 10 | "required": true, 11 | "fields": { 12 | "value": "\\bVP9\\b" 13 | } 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /docs/json/sonarr/cf/fansub.json: -------------------------------------------------------------------------------- 1 | { 2 | "trash_id": "84f0acbda9c0c9de783894fb66df25aa", 3 | "name": "FanSUB", 4 | "includeCustomFormatWhenRenaming": false, 5 | "specifications": [ 6 | { 7 | "name": "FanSUB", 8 | "implementation": "ReleaseTitleSpecification", 9 | "negate": false, 10 | "required": true, 11 | "fields": { 12 | "value": "\\b(FanSUB)\\b" 13 | } 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /docs/json/sonarr/cf/hfr.json: -------------------------------------------------------------------------------- 1 | { 2 | "trash_id": "1bd69272e23c5e6c5b1d6c8a36fce95e", 3 | "name": "HFR", 4 | "includeCustomFormatWhenRenaming": true, 5 | "specifications": [ 6 | { 7 | "name": "HFR", 8 | "implementation": "ReleaseTitleSpecification", 9 | "negate": false, 10 | "required": true, 11 | "fields": { 12 | "value": "\\b(HFR)\\b" 13 | } 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /docs/json/sonarr/cf/mpeg2.json: -------------------------------------------------------------------------------- 1 | { 2 | "trash_id": "4aee45b0868229c4fbd8bad3e315f1d0", 3 | "name": "MPEG2", 4 | "includeCustomFormatWhenRenaming": false, 5 | "specifications": [ 6 | { 7 | "name": "MPEG2", 8 | "implementation": "ReleaseTitleSpecification", 9 | "negate": false, 10 | "required": true, 11 | "fields": { 12 | "value": "MPEG[-.]?2" 13 | } 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /docs/json/sonarr/cf/vc-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "trash_id": "7470a681e6205243983c4410ee4c920f", 3 | "name": "VC-1", 4 | "includeCustomFormatWhenRenaming": false, 5 | "specifications": [ 6 | { 7 | "name": "VC-1", 8 | "implementation": "ReleaseTitleSpecification", 9 | "negate": false, 10 | "required": true, 11 | "fields": { 12 | "value": "\\bVC[-_. ]?1\\b" 13 | } 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /docs/json/sonarr/cf/vp9.json: -------------------------------------------------------------------------------- 1 | { 2 | "trash_id": "90501962793d580d011511155c97e4e5", 3 | "name": "VP9", 4 | "includeCustomFormatWhenRenaming": false, 5 | "specifications": [ 6 | { 7 | "name": "VP9", 8 | "implementation": "ReleaseTitleSpecification", 9 | "negate": false, 10 | "required": true, 11 | "fields": { 12 | "value": "\\bVP9\\b" 13 | } 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /docs/manifest.webmanifest: -------------------------------------------------------------------------------- 1 | { 2 | "name": "TRaSH Guides", 3 | "short_name": "Guidarr", 4 | "description": "Guides mainly for Sonarr/Radarr/Bazarr and everything related to it.", 5 | "icons": [ 6 | { 7 | "src": "img/logo.png", 8 | "sizes": "512x512", 9 | "type": "image/png" 10 | } 11 | ], 12 | "theme_color": "#4051B5", 13 | "background_color": "#2E303E", 14 | "display": "standalone" 15 | } 16 | -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | mkdocs-glightbox==0.4.0 2 | mkdocs-awesome-pages-plugin==2.10.1 3 | mkdocs-git-revision-date-localized-plugin==1.4.6 4 | mkdocs-macros-plugin==1.3.7 5 | mkdocs-material==9.6.14 6 | mkdocs-minify-plugin==0.8.0 7 | mkdocs-redirects==1.2.2 8 | mkdocs-include-markdown-plugin==7.1.5 9 | mkdocs-markdownextradata-plugin==0.2.6 10 | -------------------------------------------------------------------------------- /docs/thnx.md: -------------------------------------------------------------------------------- 1 | # Thanks for the Coffee 2 | -------------------------------------------------------------------------------- /images/QR-code-BTC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/images/QR-code-BTC.png -------------------------------------------------------------------------------- /images/QR-code-ETH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/images/QR-code-ETH.png -------------------------------------------------------------------------------- /images/QR-code-EU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/images/QR-code-EU.png -------------------------------------------------------------------------------- /images/QR-code-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/images/QR-code-US.png -------------------------------------------------------------------------------- /images/QR-code-XMR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/images/QR-code-XMR.png -------------------------------------------------------------------------------- /images/coffee-paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRaSH-Guides/Guides/bea2213bdc8b75d07fcb64fd122a1684b819a00f/images/coffee-paypal.png -------------------------------------------------------------------------------- /includes/cf-descriptions/1080p.md: -------------------------------------------------------------------------------- 1 | 2 | **1080p**
3 | 4 | This Custom Format can boost 1080p releases. It is only useful if you use [Merge Qualities](/Radarr/Tips/Merge-quality/){:target="\_blank" rel="noopener noreferrer"} in your Quality Profile. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/10bit.md: -------------------------------------------------------------------------------- 1 | 2 | **10bit**
3 | 4 | This Custom Format covers releases that are 10bit. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/2160p.md: -------------------------------------------------------------------------------- 1 | 2 | **2160p**
3 | 4 | This Custom Format can boost 2160p releases. It is only useful if you use [Merge Qualities](/Radarr/Tips/Merge-quality/){:target="\_blank" rel="noopener noreferrer"} in your Quality Profile. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/3d.md: -------------------------------------------------------------------------------- 1 | 2 | **3D**
3 | 4 | If you prefer or not prefer 3D. 5 | 6 | You can use Custom Format or use Restrictions (`Settings` => `Indexers` => `Restrictions`) what ever you prefer. 7 | 8 | -------------------------------------------------------------------------------- /includes/cf-descriptions/4od.md: -------------------------------------------------------------------------------- 1 | 2 | **4OD**
3 | 4 | [From Wikipedia, the free encyclopedia](){:target="\_blank" rel="noopener noreferrer"} 5 | 6 | 4OD is a previous name for the UK's Channel4 VOD service. Releases are usually identified with either 'ALL4' or '4OD', not 'Channel4'. 7 | 8 | -------------------------------------------------------------------------------- /includes/cf-descriptions/720p.md: -------------------------------------------------------------------------------- 1 | 2 | **720p**
3 | 4 | This Custom Format can boost 720p releases. It is only useful if you use [Merge Qualities](/Radarr/Tips/Merge-quality/){:target="\_blank" rel="noopener noreferrer"} in your Quality Profile. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/abema.md: -------------------------------------------------------------------------------- 1 | 2 | **Abema**
3 | 4 | [From Wikipedia, the free encyclopedia](https://www.wikiwand.com/en/Abema){:target="\_blank" rel="noopener noreferrer"} 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/all4.md: -------------------------------------------------------------------------------- 1 | 2 | **ALL4**
3 | 4 | [From Wikipedia, the free encyclopedia](){:target="\_blank" rel="noopener noreferrer"} 5 | 6 | ALL4 is a previous name for the UK's Channel4 VOD service. Releases are usually identified with either 'ALL4' or '4OD', not 'Channel4'. 7 | 8 | -------------------------------------------------------------------------------- /includes/cf-descriptions/anime-bd-tier-01-top-seadex-muxers.md: -------------------------------------------------------------------------------- 1 | 2 | **Anime BD Tier 01 (Top SeaDex Muxers)**
3 | 4 | Groups that do the best releases as per SeaDex. They are more consistent and trump others. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/anime-bd-tier-02-seadex-muxers.md: -------------------------------------------------------------------------------- 1 | 2 | **Anime BD Tier 02 (SeaDex Muxers)**
3 | 4 | Groups that do the best releases as per SeaDex. They are more consistent and trump others. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/anime-bd-tier-03-seadex-muxers.md: -------------------------------------------------------------------------------- 1 | 2 | **Anime BD Tier 03 (SeaDex Muxers)**
3 | 4 | Groups that do the best releases as per SeaDex. They are more consistent and trump others. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/anime-bd-tier-04-seadex-muxers.md: -------------------------------------------------------------------------------- 1 | 2 | **Anime BD Tier 04 (SeaDex Muxers)**
3 | 4 | Groups that do the best releases as per SeaDex. They are more consistent and trump others. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/anime-bd-tier-05-remuxes.md: -------------------------------------------------------------------------------- 1 | 2 | **Anime BD Tier 05 (Remuxes)**
3 | 4 | Groups that are consistent and do Remuxes. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/anime-bd-tier-06-fansubs.md: -------------------------------------------------------------------------------- 1 | 2 | **Anime BD Tier 06 (FanSubs)**
3 | 4 | FanSub groups that are consistent. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/anime-bd-tier-07-p2pscene.md: -------------------------------------------------------------------------------- 1 | 2 | **Anime BD Tier 07 (P2P/Scene)**
3 | 4 | Known P2P and Scene Anime groups. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/anime-bd-tier-08-mini-encodes.md: -------------------------------------------------------------------------------- 1 | 2 | **Anime BD Tier 08 (Mini Encodes)**
3 | 4 | Know groups that do mini encodes. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/anime-dual-audio.md: -------------------------------------------------------------------------------- 1 | 2 | **Anime Dual Audio**
3 | 4 | This Custom Format covers releases that have Dual Audio. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/anime-lq-groups.md: -------------------------------------------------------------------------------- 1 | 2 | **Anime LQ Groups**
3 | 4 | A collection of known low-quality groups. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/anime-raws.md: -------------------------------------------------------------------------------- 1 | 2 | **Anime Raws**
3 | 4 | A collection of known groups that release raws. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/anime-web-tier-01-muxers.md: -------------------------------------------------------------------------------- 1 | 2 | **Anime Web Tier 01 (Muxers)**
3 | 4 | Groups that do the best releases as per SeaDex. They are more consistent and trump others. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/anime-web-tier-02-top-fansubs.md: -------------------------------------------------------------------------------- 1 | 2 | **Anime Web Tier 02 (Top FanSubs)**
3 | 4 | Groups that do the best releases as per SeaDex. They are more consistent and trump others. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/anime-web-tier-03-official-subs.md: -------------------------------------------------------------------------------- 1 | 2 | **Anime Web Tier 03 (Official Subs)**
3 | 4 | Official sub groups that tend to be more consistent and release fast. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/anime-web-tier-04-official-subs.md: -------------------------------------------------------------------------------- 1 | 2 | **Anime Web Tier 04 (Official Subs)**
3 | 4 | Official sub groups. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/anime-web-tier-05-fansubs.md: -------------------------------------------------------------------------------- 1 | 2 | **Anime Web Tier 05 (FanSubs)**
3 | 4 | FanSub groups that are consistent. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/anime-web-tier-06-fansubs.md: -------------------------------------------------------------------------------- 1 | 2 | **Anime Web Tier 06 (FanSubs)**
3 | 4 | FanSub groups that are consistent. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/apply-10000.md: -------------------------------------------------------------------------------- 1 | 2 | After applying this Custom Format, you will need to modify the scoring in your Quality Profile (`Settings` => `Profiles`) to `-10000`. 3 | 4 | -------------------------------------------------------------------------------- /includes/cf-descriptions/aubc.md: -------------------------------------------------------------------------------- 1 | 2 | **AUBC**
3 | 4 | [From Wikipedia, the free encyclopedia](){:target="\_blank" rel="noopener noreferrer"} 5 | 6 | The Australian Broadcasting Corporation (ABC) is the national broadcaster of Australia 7 | 8 | -------------------------------------------------------------------------------- /includes/cf-descriptions/bglobal.md: -------------------------------------------------------------------------------- 1 | 2 | **B-Global**
3 | 4 | [From Wikipedia, the free encyclopedia](https://www.wikiwand.com/en/Bilibili){:target="\_blank" rel="noopener noreferrer"} 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/bilibili.md: -------------------------------------------------------------------------------- 1 | 2 | **Bilibili**
3 | 4 | [From Wikipedia, the free encyclopedia](https://www.wikiwand.com/en/Bilibili){:target="\_blank" rel="noopener noreferrer"} 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/black-and-white-editions.md: -------------------------------------------------------------------------------- 1 | 2 | **Black and White Editions**
3 | 4 | Some movies get an additional release version in monochrome/black and white. This custom format matches some of the more common occurrences of these. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/cc.md: -------------------------------------------------------------------------------- 1 | 2 | **Comedy Central**
3 | 4 | [From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Comedy_Central){:target="\_blank" rel="noopener noreferrer"} 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/cr.md: -------------------------------------------------------------------------------- 1 | 2 | **Crunchyroll**
3 | 4 | [From Wikipedia, the free encyclopedia](https://www.wikiwand.com/en/Crunchyroll){:target="\_blank" rel="noopener noreferrer"} 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/crit.md: -------------------------------------------------------------------------------- 1 | 2 | **Criterion Channel**
3 | 4 | [From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/The_Criterion_Collection#Streaming_as_The_Criterion_Channel){:target="\_blank" rel="noopener noreferrer"} 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/dd.md: -------------------------------------------------------------------------------- 1 | 2 | **DD (Dolby Digital – lossy)**
3 | 4 | [From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Dolby_Digital){:target="\_blank" rel="noopener noreferrer"} 5 | 6 | Dolby Digital, also known as Dolby AC-3, is a lossy audio compression format. 7 | 8 | -------------------------------------------------------------------------------- /includes/cf-descriptions/ddplus-atmos.md: -------------------------------------------------------------------------------- 1 | 2 | **DD+ ATMOS (Dolby Digital Plus with Atmos – lossy)**
3 | 4 | Atmos via UHD Blu-ray will be lossless, or lossy via streaming services so in this case it will be lossy + Atmos 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/dts-es.md: -------------------------------------------------------------------------------- 1 | 2 | **DTS-ES (DTS Extended Surround – lossy)**
3 | 4 | DTS-ES (DTS Extended Surround) includes two variants, DTS-ES Discrete 6.1 and DTS-ES Matrix 5.1, depending on how the sound was originally mastered and stored. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/dubs-only.md: -------------------------------------------------------------------------------- 1 | 2 | **Dubs Only**
3 | 4 | This Custom Format covers releases that only have Dubs. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/dv-disk.md: -------------------------------------------------------------------------------- 1 | 2 | **DV (Disk)**
3 | 4 | This will boost the score for Dolby Vision Releases using the original full-quality Dolby Vision layer from the disc release to replace the old WEBDL HYBRID release. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/dv-hdr10plus-boost.md: -------------------------------------------------------------------------------- 1 | 2 | **DV HDR10+ Boost**
3 | 4 | Use this Custom Format if you want to upgrade from DV HDR10 to DV HDR10+, which supports the best of both worlds. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/dv-sdr.md: -------------------------------------------------------------------------------- 1 | 2 | _This Custom Format will only match on_ `DV SDR` 3 | 4 | **DV SDR**
5 | 6 | This is a very rare HDR Format. 7 | 8 | -------------------------------------------------------------------------------- /includes/cf-descriptions/extras.md: -------------------------------------------------------------------------------- 1 | 2 | **Extras**
3 | 4 | This Custom Format is used to prevent from grabbing releases containing only extras (bonus footage, outtakes, etc). 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/fansub.md: -------------------------------------------------------------------------------- 1 | 2 | **FanSUB**
3 | 4 | Action of subtitling a video for personal and non-professional purposes. The quality of FanSUBs can vary enormously (accuracy of translation, mistakes, etc.) and could lead to so-called FastSUBs. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/fastsub.md: -------------------------------------------------------------------------------- 1 | 2 | **FastSUB**
3 | 4 | FanSUB, but made as quickly as possible, at the expense of quality. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/fod.md: -------------------------------------------------------------------------------- 1 | 2 | **Fuji Television On Demand**
3 | 4 | [From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Fuji_Television){:target="\_blank" rel="noopener noreferrer"} 5 | [FOD Website](https://fod-sp.fujitv.co.jp){:target="\_blank" rel="noopener noreferrer"} 6 | 7 | -------------------------------------------------------------------------------- /includes/cf-descriptions/freeleech.md: -------------------------------------------------------------------------------- 1 | 2 | **FreeLeech**
3 | 4 | Sometimes, torrent sites set a torrent to be freeleech. This means, that the download of this torrent will not count towards your download quota or ratio. This is useful if you do not have the best ratio yet. 5 | 6 | !!! warning 7 | 8 | Keep in mind not all trackers support this option. 9 | 10 | -------------------------------------------------------------------------------- /includes/cf-descriptions/french-adn.md: -------------------------------------------------------------------------------- 1 | 2 | **Animation Digital Network**
3 | 4 | [From Wikipedia, the free encyclopedia](https://fr.wikipedia.org/wiki/Animation_Digital_Network){:target="\_blank" rel="noopener noreferrer"} 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/french-anime-fansub.md: -------------------------------------------------------------------------------- 1 | 2 | **FR Anime FanSub**
3 | 4 | Known good groups that only do FanSub in good quality. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/french-anime-tier-01.md: -------------------------------------------------------------------------------- 1 | 2 | **FR Anime Tier 01**
3 | 4 | - WIP 5 | - Groups that are known to be active and only doing Anime 6 | - Groups whose releases are at least comparable to SeaDex recommended. 7 | 8 | -------------------------------------------------------------------------------- /includes/cf-descriptions/french-anime-tier-02.md: -------------------------------------------------------------------------------- 1 | 2 | **FR Anime Tier 02**
3 | 4 | - WIP 5 | - Groups that are known to be active and only doing Anime, but with few releases per year. 6 | - Groups that are known to be active and doing Anime AND other types of releases. 7 | 8 | -------------------------------------------------------------------------------- /includes/cf-descriptions/french-hd-bluray-tier-01.md: -------------------------------------------------------------------------------- 1 | 2 | **FR HD Bluray Tier 01**
3 | 4 | - WiP 5 | - Groups that create encodes from a remux without micro-sizing them. 6 | - Groups that have a minimum count of great releases (best encode in its class 1080p and lower). 7 | - Groups that add the best French audio track to an English release from Tier 01 or 02. 8 | 9 | -------------------------------------------------------------------------------- /includes/cf-descriptions/french-mycanal.md: -------------------------------------------------------------------------------- 1 | 2 | **Groupe Canal+**
3 | 4 | [From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Groupe_Canal%2B){:target="\_blank" rel="noopener noreferrer"} 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/french-remux-tier-01.md: -------------------------------------------------------------------------------- 1 | 2 | **Remux Tier 01**
3 | 4 | - WiP 5 | - Groups that produce remuxes from multiple sources (discs) and combine them to produce the best end result. 6 | - Groups producing remuxes with a group from Remux Tier 01 or 02 adding the best available French Audio. 7 | 8 | -------------------------------------------------------------------------------- /includes/cf-descriptions/french-salto.md: -------------------------------------------------------------------------------- 1 | 2 | **SⱯLTO**
3 | 4 | [From Wikipedia, the free encyclopedia](){:target="\_blank" rel="noopener noreferrer"} 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/french-scene.md: -------------------------------------------------------------------------------- 1 | 2 | **FR Scene Groups**
3 | 4 | Known French Scene groups. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/french-vf2.md: -------------------------------------------------------------------------------- 1 | 2 | **VF2**
3 | 4 | VF[1-9] or FR[1-9] indicates the number of dubs present (normally VF2 being VFF and VFQ). 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/french-vfb.md: -------------------------------------------------------------------------------- 1 | 2 | **VFB**
3 | 4 | Belgian French Version. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/french-vff.md: -------------------------------------------------------------------------------- 1 | 2 | **VFF**
3 | 4 | Full French version (dubbing done in France) and French version (normally equivalent to VFQ). 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/french-vfi.md: -------------------------------------------------------------------------------- 1 | 2 | **VFI**
3 | 4 | International French Version. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/french-vfq.md: -------------------------------------------------------------------------------- 1 | 2 | **VFQ**
3 | 4 | Canadian French Version. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/french-vof.md: -------------------------------------------------------------------------------- 1 | 2 | **VOF**
3 | 4 | Original French Version. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/french-voq.md: -------------------------------------------------------------------------------- 1 | 2 | **VOQ**
3 | 4 | Quebec Original Version. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/french-vq.md: -------------------------------------------------------------------------------- 1 | 2 | **VQ**
3 | 4 | Quebec Version (strong Quebec accent, ex: The Simpsons movie). 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/french-web-tier-01.md: -------------------------------------------------------------------------------- 1 | 2 | **FR WEB Tier 01**
3 | 4 | - WiP 5 | - Groups that get their releases directly from the source. 6 | - Groups that source and add the French audio track from the source to an English release from Tier 01 or 02. 7 | 8 | -------------------------------------------------------------------------------- /includes/cf-descriptions/french-web-tier-02.md: -------------------------------------------------------------------------------- 1 | 2 | **FR WEB Tier 02**
3 | 4 | - WiP 5 | - Groups that source and add the French audio track from the source to an English release. 6 | - Groups that haven't released much or are not well recognized. (yet) 7 | - Groups that retired and don't have the best quality by today's standards. 8 | 9 | -------------------------------------------------------------------------------- /includes/cf-descriptions/french-web-tier-03.md: -------------------------------------------------------------------------------- 1 | 2 | **FR WEB Tier 03**
3 | 4 | - WIP 5 | - Groups that haven't released much or are not well recognized. (yet) 6 | - Groups that retired and don't have the best quality by today's standards. 7 | 8 | -------------------------------------------------------------------------------- /includes/cf-descriptions/french-wkn.md: -------------------------------------------------------------------------------- 1 | 2 | **Wakanim**
3 | 4 | [From Wikipedia, the free encyclopedia](https://fr.wikipedia.org/wiki/Wakanim){:target="\_blank" rel="noopener noreferrer"} 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/funi.md: -------------------------------------------------------------------------------- 1 | 2 | **Funimation**
3 | 4 | [From Wikipedia, the free encyclopedia](https://www.wikiwand.com/en/Funimation){:target="\_blank" rel="noopener noreferrer"} 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/german-1080p-booster.md: -------------------------------------------------------------------------------- 1 | 2 | **German 1080p Booster**
3 | 4 | As the scores for German groups are higher, we need to introduce resolution boosters to ensure upgradability between resolutions, allowing for upgrades from English to German. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/german-2160p-booster.md: -------------------------------------------------------------------------------- 1 | 2 | **German 2160p Booster**
3 | 4 | As the scores for German groups are higher, we need to introduce resolution boosters to ensure upgradability between resolutions, allowing for upgrades from English to German. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/german-bluray-tier-03.md: -------------------------------------------------------------------------------- 1 | 2 | **German Bluray Tier 03**
3 | 4 | - WiP 5 | - Groups that haven't released much or are not well recognized. (yet) 6 | - Groups that retired and don't have the best quality by today's standards. 7 | 8 | -------------------------------------------------------------------------------- /includes/cf-descriptions/german-lq-release-title.md: -------------------------------------------------------------------------------- 1 | 2 | **German LQ (Release Title)**
3 | 4 | A collection of terms seen in the titles of Low-Quality releases that are not captured by using a release group name. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/german-microsized.md: -------------------------------------------------------------------------------- 1 | 2 | **German Microsized**
3 | 4 | A collection of known German groups producing low quality micro-sized releases. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/german-scene.md: -------------------------------------------------------------------------------- 1 | 2 | **German Scene**
3 | 4 | Known German Scene groups (which are not defined as LQ). 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/german-web-tier-03.md: -------------------------------------------------------------------------------- 1 | 2 | **German Web Tier 03**
3 | 4 | - WiP 5 | - Groups that haven't released much or are not well recognized. (yet) 6 | - Groups that retired and don't have the best quality by today's standards. 7 | 8 | -------------------------------------------------------------------------------- /includes/cf-descriptions/hd-bluray-tier-02.md: -------------------------------------------------------------------------------- 1 | 2 | **HD Bluray Tier 02**
3 | 4 | Groups that: 5 | 6 | - Use remuxes as their source without micro-sizing them. 7 | - Follow the [Contributing General Guidelines](https://github.com/TRaSH-Guides/Guides/blob/master/CONTRIBUTING.md#general-guidelines){:target="_blank" rel="noopener noreferrer"}. 8 | 9 | -------------------------------------------------------------------------------- /includes/cf-descriptions/hdr-formats-info.md: -------------------------------------------------------------------------------- 1 | 2 | 💡 Any form of HDR will look significantly better than SDR on supporting equipment. The overall result will ultimately end up varying, though, based on your hardware and how the studio and filmmaker implemented HDR. 3 | 4 | -------------------------------------------------------------------------------- /includes/cf-descriptions/hdr-undefined.md: -------------------------------------------------------------------------------- 1 | 2 | **HDR (undefined)**
3 | 4 | Some release groups don't add HDR to their 4K release naming scheme. 5 | 6 | Currently, only FraMeSToR and HQMUX do not include the 'HDR' tag. In the future, we can add more when it's needed. 7 | 8 | Add this Custom Format with the same score you use for `HDR10`. 9 | 10 | -------------------------------------------------------------------------------- /includes/cf-descriptions/hdr.md: -------------------------------------------------------------------------------- 1 | 2 | _This Custom Format will only match on_ `HDR` **NOT** _on_ `HDR10`, `HDR10+` _etc_ 3 | 4 | **HDR**
5 | 6 | This Custom Format is a sort of "catch-all" for the `HDR` scene naming scheme where we don't know, based on name alone, which HDR formats are included - it could be `HDR10`, `HDR10+` or even `PQ`. 7 | 8 | -------------------------------------------------------------------------------- /includes/cf-descriptions/hdr10plus-boost.md: -------------------------------------------------------------------------------- 1 | 2 | **HDR10+ Boost**
3 | 4 | You have a TV (e.g., Samsung) and Media Player Device (e.g., Apple TV 4K 3rd generation) that supports HDR10+, or you prefer HDR10+. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/hfr.md: -------------------------------------------------------------------------------- 1 | 2 | **HFR**
3 | 4 | HFR stands for High Frame Rate and refers to a video format that uses a higher number of frames per second than traditional video, which could result in smoother and more detailed motion. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/hidive.md: -------------------------------------------------------------------------------- 1 | 2 | **HIDIVE**
3 | 4 | [From Wikipedia, the free encyclopedia](https://www.wikiwand.com/en/HIDIVE){:target="\_blank" rel="noopener noreferrer"} 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/hulu.md: -------------------------------------------------------------------------------- 1 | 2 | **Hulu**
3 | 4 | [From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Hulu){:target="\_blank" rel="noopener noreferrer"} 5 | 6 | Hulu (/ˈhuːluː/) is an American subscription streaming service owned by The Walt Disney Company. It was launched on October 29, 2007. 7 | 8 | -------------------------------------------------------------------------------- /includes/cf-descriptions/hybrid.md: -------------------------------------------------------------------------------- 1 | 2 | **Hybrid**
3 | 4 | A hybrid release means any combination of sources (video + audio) and not a direct encoding of a single source. Generally, you can be sure that any hybrid put together should be the best quality release of a particular title. However, not all release groups always mention that their release is a hybrid release. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/internal.md: -------------------------------------------------------------------------------- 1 | 2 | **Internal**
3 | 4 | - Those who prefer scene releases may want to boost internals, as they generally have higher settings that may not conform to the ruleset. 5 | - In some rare cases, P2P use is also INTERNAL. 6 | 7 | -------------------------------------------------------------------------------- /includes/cf-descriptions/ip.md: -------------------------------------------------------------------------------- 1 | 2 | **BBC iPlayer aka iP**
3 | 4 | [From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/BBC_iPlayer){:target="\_blank" rel="noopener noreferrer"} 5 | 6 | BBC iPlayer is a video on demand service from the BBC. iPlayer services delivered to UK-based viewers feature no commercial advertising. 7 | 8 | -------------------------------------------------------------------------------- /includes/cf-descriptions/language-german.md: -------------------------------------------------------------------------------- 1 | 2 | **Language: German**
3 | 4 | This custom format helps Radarr/Sonarr recognize German audio releases that contain only a German language track and no others. It will add `German` to your filename. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/language-not-english.md: -------------------------------------------------------------------------------- 1 | 2 | **Language: Not English (English Only)**
3 | 4 | Because it uses reverse scoring, and if you use the default scores, it will assign all releases without the English audio a score of `-10000`. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/language-not-french.md: -------------------------------------------------------------------------------- 1 | 2 | **Language: Not French (French Only)**
3 | 4 | Because it uses reverse scoring, and if you use the default scores, it will assign all releases without the French audio a score of `-10000`. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/language-not-german-or-english.md: -------------------------------------------------------------------------------- 1 | 2 | **Language: Not German or English**
3 | 4 | Used to avoid releases which do not contain German or English audio. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/language-not-original.md: -------------------------------------------------------------------------------- 1 | 2 | **Language: Not Original (Original Only)**
3 | 4 | Because it uses reverse scoring, and if you use the default scores, it will assign all releases without the original audio a score of `-10000`. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/language-original-plus-french.md: -------------------------------------------------------------------------------- 1 | 2 | **Language: Original + French**
3 | 4 | Language Specification Original + French 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/line-mic-dubbed.md: -------------------------------------------------------------------------------- 1 | 2 | **Line/Mic Dubbed**
3 | 4 | - This seems to be often used with German releases, and this will block the low-quality audio. 5 | - Line Dubbed = Sound extracted in the cinema by cable. 6 | - Mic Dubbed = Sound extracted in the cinema by a microphone. 7 | 8 | -------------------------------------------------------------------------------- /includes/cf-descriptions/lq-release-title.md: -------------------------------------------------------------------------------- 1 | 2 | **LQ (Release Title)**
3 | 4 | A collection of terms seen in the titles of Low-Quality releases that are not captured by using a release group name. 5 | 6 | --8<-- "includes/cf-descriptions/apply-10000.md" 7 | 8 | -------------------------------------------------------------------------------- /includes/cf-descriptions/mp3.md: -------------------------------------------------------------------------------- 1 | 2 | **MP3 (MPEG-1 Audio Layer III – lossy)**
3 | 4 | MP3 (MPEG-1 and/or MPEG-2 Audio Layer 3) is a lossy data compression format for audio. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/my5.md: -------------------------------------------------------------------------------- 1 | 2 | **MY5**
3 | 4 | [From Wikipedia, the free encyclopedia](){:target="\_blank" rel="noopener noreferrer"} 5 | 6 | My5 (previously Five Download and later Demand 5) is the brand name of video-on-demand services offered by Channel 5 in the United Kingdom. 7 | 8 | -------------------------------------------------------------------------------- /includes/cf-descriptions/nlz.md: -------------------------------------------------------------------------------- 1 | 2 | **NLZiet**
3 | 4 | NLZIET is the online service of Dutch broadcasters that provides non-stop tv, commercial-free. The streaming service brings the best of all channels straight to your preferred device and lets you see your favorite tv content in high quality on all available platforms; anytime and anywhere. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/now.md: -------------------------------------------------------------------------------- 1 | 2 | **NOW**
3 | 4 | [From Wikipedia, the free encyclopedia](){:target="\_blank" rel="noopener noreferrer"} 5 | 6 | Now (formerly Now TV and often stylised as NOW) is a subscription over-the-top streaming television service operated by British satellite television provider Sky Group. 7 | 8 | -------------------------------------------------------------------------------- /includes/cf-descriptions/open-matte.md: -------------------------------------------------------------------------------- 1 | 2 | **Open Matte**
3 | 4 | Open matte is a filming technique that involves matting out the top and bottom of the film frame in the movie projector (known as a soft matte) for the widescreen theatrical release and then scanning the film without a matte (at an Academy ratio) for a full-screen home video release. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/ovid.md: -------------------------------------------------------------------------------- 1 | 2 | **OViD**
3 | 4 | [OViD Website](https://search.ovid.tv/other/about){:target="\_blank" rel="noopener noreferrer"} 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/pathe.md: -------------------------------------------------------------------------------- 1 | 2 | **Pathé Thuis**
3 | 4 | [From Wikipedia, the free encyclopedia](https://nl.wikipedia.org/wiki/Path%C3%A9_Thuis){:target="\_blank" rel="noopener noreferrer"} 5 | 6 | Pathé Thuis is a Dutch streaming service for renting and purchasing films. 7 | 8 | -------------------------------------------------------------------------------- /includes/cf-descriptions/pcm.md: -------------------------------------------------------------------------------- 1 | 2 | **PCM (Pulse Code Modulation – lossless, uncompressed)**
3 | 4 | PCM is the method of encoding typically used for uncompressed digital audio. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/pq.md: -------------------------------------------------------------------------------- 1 | 2 | **PQ10**
3 | 4 | PQ (perceptual quantizer) or PQ10 is the most basic HDR format that can be used for both video and still images. It is the same as the HDR10 format without any metadata. 5 | 6 | You will find this mainly with older movies. 7 | 8 | -------------------------------------------------------------------------------- /includes/cf-descriptions/qibi.md: -------------------------------------------------------------------------------- 1 | 2 | **Quibi**
3 | 4 | [From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/Quibi){:target="\_blank" rel="noopener noreferrer"} 5 | 6 | Quibi (/ˈkwɪbi/ KWIB-ee) was an American short-form streaming platform, It launched in April 2020, but shut down in December 2020 after falling short of its subscriber projections. 7 | 8 | -------------------------------------------------------------------------------- /includes/cf-descriptions/red.md: -------------------------------------------------------------------------------- 1 | 2 | **Youtube Red**
3 | 4 | [From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/YouTube_Premium){:target="\_blank" rel="noopener noreferrer"} 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/scene.md: -------------------------------------------------------------------------------- 1 | 2 | **Scene**
3 | 4 | This Custom Format will try to recognize so-called "scene releases". Depending on your preferences, you can give it a negative score `-10000`, a positive score, or just skip adding it altogether. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/sdr-no-webdl-radarr-warning.md: -------------------------------------------------------------------------------- 1 | 2 | !!! Danger "If you have also added [{{ radarr['cf']['sdr']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#sdr){:target="\_blank" rel="noopener noreferrer"} to your Radarr,
then one of them should be scored as `0` in your quality profile." 3 | 4 | -------------------------------------------------------------------------------- /includes/cf-descriptions/sdr-no-webdl-sonarr-warning.md: -------------------------------------------------------------------------------- 1 | 2 | !!! Danger "If you have also added [{{ sonarr['cf']['sdr']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#sdr){:target="\_blank" rel="noopener noreferrer"} to your Sonarr,
then one of them should be scored as `0` in your quality profile." 3 | 4 | -------------------------------------------------------------------------------- /includes/cf-descriptions/sdr.md: -------------------------------------------------------------------------------- 1 | 2 | **SDR**
3 | 4 | This will prevent grabbing UHD/4k releases without HDR Formats. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/sing-along-versions.md: -------------------------------------------------------------------------------- 1 | 2 | **Sing-Along Versions**
3 | 4 | Versions of musical films that have sing-along lyrics hardcoded into the video stream. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/syfy.md: -------------------------------------------------------------------------------- 1 | 2 | **Syfy**
3 | 4 | [From Wikipedia, the free encyclopedia](){:target="\_blank" rel="noopener noreferrer"} 5 | 6 | Syfy is an American basic cable television channel. Launched on September 24, 1992, the channel broadcasts programming relating to the science fiction, horror, and fantasy genres. 7 | 8 | -------------------------------------------------------------------------------- /includes/cf-descriptions/theatrical-cut.md: -------------------------------------------------------------------------------- 1 | 2 | **Theatrical Cut**
3 | 4 | The Theatrical Cut is the film's version shown in the cinemas. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/tver.md: -------------------------------------------------------------------------------- 1 | 2 | **TVer**
3 | 4 | [From Wikipedia, the free encyclopedia](){:target="\_blank" rel="noopener noreferrer"} 5 | [TVer Website](https://tver.jp){:target="\_blank" rel="noopener noreferrer"} 6 | 7 | -------------------------------------------------------------------------------- /includes/cf-descriptions/u-next.md: -------------------------------------------------------------------------------- 1 | 2 | **U-NEXT**
3 | 4 | [From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/U-Next){:target="\_blank" rel="noopener noreferrer"} 5 | [U-NEXT Website](https://video.unext.jp){:target="\_blank" rel="noopener noreferrer"} 6 | 7 | -------------------------------------------------------------------------------- /includes/cf-descriptions/uhd-streaming-cut.md: -------------------------------------------------------------------------------- 1 | 2 | **UHD Streaming Cut**
3 | 4 | Some streaming services have UHD releases that are generally worse than their HD counterparts. The UHD Streaming Cut custom format decreases those streaming services' scores appropriately for UHD releases. Use this in conjunction with the regular streaming service custom formats. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/uncensored.md: -------------------------------------------------------------------------------- 1 | 2 | **Uncensored**
3 | 4 | This Custom Format covers releases that are uncensored. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/upscaled.md: -------------------------------------------------------------------------------- 1 | 2 | **Upscaled**
3 | 4 | This custom format is used to prevent grabbing upscaled releases. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/v0.md: -------------------------------------------------------------------------------- 1 | 2 | **v0**
3 | 4 | Custom Format to cover releases named with v0 which we don't want. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/v1.md: -------------------------------------------------------------------------------- 1 | 2 | **v1**
3 | 4 | Custom Format to cover v1 releases. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/v2.md: -------------------------------------------------------------------------------- 1 | 2 | **v2**
3 | 4 | Custom Format to cover v2 releases. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/v3.md: -------------------------------------------------------------------------------- 1 | 2 | **v3**
3 | 4 | Custom Format to cover v3 releases. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/v4.md: -------------------------------------------------------------------------------- 1 | 2 | **v4**
3 | 4 | Custom Format to cover v4 releases. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/vinegar-syndrome.md: -------------------------------------------------------------------------------- 1 | 2 | **Vinegar Syndrome**
3 | 4 | Vinegar Syndrome is a US-based company founded in 2012 to preserve and distribute old X-rated films. Over time, they expanded their catalog to include other types of cult and exploitation films, specializing in horror and action genres. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/vp9.md: -------------------------------------------------------------------------------- 1 | 2 | **VP9**
3 | 4 | - This is a new codec and you need modern devices that support it. 5 | - We also had reports of playback/transcoding issues. 6 | - No respectable release group is using it (yet). 7 | - It's better to ignore this new codec to prevent compatibility issues. 8 | 9 | -------------------------------------------------------------------------------- /includes/cf-descriptions/vrv.md: -------------------------------------------------------------------------------- 1 | 2 | **VRV**
3 | 4 | [From Wikipedia, the free encyclopedia](){:target="\_blank" rel="noopener noreferrer"} 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/web-scene.md: -------------------------------------------------------------------------------- 1 | 2 | **WEB Scene**
3 | 4 | One of the few scene groups that released quality releases. 5 | 6 | -------------------------------------------------------------------------------- /includes/cf-descriptions/x265-hd-radarr-warning.md: -------------------------------------------------------------------------------- 1 | 2 | !!! Danger "If you have also added [{{ radarr['cf']['x265-no-hdrdv']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-no-hdrdv){:target="\_blank" rel="noopener noreferrer"} to your Radarr,
then one of them should be scored as `0` in your quality profile." 3 | 4 | -------------------------------------------------------------------------------- /includes/cf-descriptions/x265-hd-sonarr-warning.md: -------------------------------------------------------------------------------- 1 | 2 | !!! Danger "If you have also added [{{ sonarr['cf']['x265-no-hdrdv']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#x265-no-hdrdv){:target="\_blank" rel="noopener noreferrer"} to your Sonarr,
then one of them should be scored as `0` in your quality profile." 3 | 4 | -------------------------------------------------------------------------------- /includes/cf-descriptions/x265-no-hdrdv-radarr-warning.md: -------------------------------------------------------------------------------- 1 | 2 | !!! Danger "If you have also added [{{ radarr['cf']['x265-hd']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-hd){:target="\_blank" rel="noopener noreferrer"} to your Radarr,
then one of them should be scored as `0` in your quality profile." 3 | 4 | -------------------------------------------------------------------------------- /includes/cf-descriptions/x265-no-hdrdv-sonarr-warning.md: -------------------------------------------------------------------------------- 1 | 2 | !!! Danger "If you have also added [{{ sonarr['cf']['x265-hd']['name'] }}](/Sonarr/sonarr-collection-of-custom-formats/#x265-hd){:target="\_blank" rel="noopener noreferrer"} to your Sonarr,
then one of them should be scored as `0` in your quality profile." 3 | 4 | -------------------------------------------------------------------------------- /includes/cf/audio-limitations-atv.md: -------------------------------------------------------------------------------- 1 | 2 | !!! bug "Apple TV doesn't passthrough HD-audio, If you use infuse, it's still limited!
Please check `I have an Apple TV`" 3 | 4 | -------------------------------------------------------------------------------- /includes/cf/which-audio-formats-should-i-choose.md: -------------------------------------------------------------------------------- 1 | 2 | ??? question "Which Audio Format should I choose? - [Click to show/hide]" 3 | 4 | ![!Audio Formats Flowchart](/Radarr/images/flowchart-audio.png) 5 | 6 | -------------------------------------------------------------------------------- /includes/cf/which-hdr-formats-should-i-choose.md: -------------------------------------------------------------------------------- 1 | 2 | ??? question "Which HDR Format should I choose? - [Click to show/hide]" 3 | 4 | ![!HDR Formats Flowchart](/Radarr/images/flowchart-hdr-formats.png) 5 | 6 | -------------------------------------------------------------------------------- /includes/file-and-folder-structure/docker-tree-media.md: -------------------------------------------------------------------------------- 1 | 2 | ```none 3 | data 4 | └── media 5 | ├── movies 6 | ├── music 7 | ├── books 8 | └── tv 9 | ``` 10 | 11 | -------------------------------------------------------------------------------- /includes/file-and-folder-structure/docker-tree-torrents.md: -------------------------------------------------------------------------------- 1 | 2 | ```none 3 | data 4 | └── torrents 5 | ├── books 6 | ├── movies 7 | ├── music 8 | └── tv 9 | ``` 10 | 11 | -------------------------------------------------------------------------------- /includes/file-and-folder-structure/docker-tree-usenet.md: -------------------------------------------------------------------------------- 1 | 2 | ```none 3 | data 4 | └── usenet 5 | ├── incomplete 6 | └── complete 7 | ├── books 8 | ├── movies 9 | ├── music 10 | └── tv 11 | ``` 12 | 13 | -------------------------------------------------------------------------------- /includes/file-and-folder-structure/permissions.md: -------------------------------------------------------------------------------- 1 | 2 | ### Permissions 3 | 4 | Recursively chown user and group and Recursively chmod to 775/664 5 | 6 | ```bash 7 | sudo chown -R $USER:$USER /data 8 | sudo chmod -R a=,a+rX,u+w,g+w /data 9 | ``` 10 | 11 | -------------------------------------------------------------------------------- /includes/radarr/imdb-vs-tmdb.md: -------------------------------------------------------------------------------- 1 | 2 | While both IMDb and TMDb IDs are unique, TMDb can occasionally remove IDs entirely, sometimes only to be re-added with a new ID later. However, due to using TMDb as its metadata source, they can be seen as "more aligned" with Radarr. IMDb IDs on the other hand, once present, are very accurate and rarely ever change. 3 | 4 | -------------------------------------------------------------------------------- /includes/radarr/radarr-folder-name-after-year-info.md: -------------------------------------------------------------------------------- 1 | 2 | !!! note "Keep in mind adding anything additional after the release year could give issues during a fresh import into Radarr, but it can help for movies that have the same release name and year" 3 | 4 | -------------------------------------------------------------------------------- /includes/radarr/tmdb-imdb-info.md: -------------------------------------------------------------------------------- 1 | 2 | !!! info "TMDb is usually better as it guarantees a match, IMDb only gets matched if the TMDb entry has the correct IMDb ID association." 3 | 4 | -------------------------------------------------------------------------------- /includes/sonarr/imdb-vs-tvdb.md: -------------------------------------------------------------------------------- 1 | 2 | While both IMDb and TVDb IDs are unique, TVDb can occasionally remove IDs entirely, sometimes only to be re-added with a new ID later. However, due to using TVDb as its metadata source, they can be seen as "more aligned" with Sonarr. IMDb IDs on the other hand, once present, are very accurate and rarely ever change. 3 | 4 | -------------------------------------------------------------------------------- /includes/sonarr/tvdb-imdb-info.md: -------------------------------------------------------------------------------- 1 | 2 | !!! info "TVDb is usually better as it guarantees a match, IMDb only gets matched if the TVDb entry has the correct IMDb ID association." 3 | 4 | -------------------------------------------------------------------------------- /includes/starr/cf-not-compatible.md: -------------------------------------------------------------------------------- 1 | 2 | !!! danger "Keep in mind that custom formats in Radarr and Sonarr are not always compatible :bangbang:" 3 | 4 | -------------------------------------------------------------------------------- /overrides/css/custom.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin-left: 1em; 3 | } 4 | -------------------------------------------------------------------------------- /yamllint.yml: -------------------------------------------------------------------------------- 1 | extends: default 2 | rules: 3 | document-start: 4 | present: false 5 | line-length: disable 6 | truthy: 7 | check-keys: false 8 | --------------------------------------------------------------------------------