1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-02 06:07:19 +02:00

Updated Custom Formats (markdown)

Leonardo Galli 2018-03-04 18:21:38 +01:00
parent 2e00c642c4
commit b67cc5bf0c

@ -31,3 +31,16 @@ The Value is used for the matching.
| Required | RE | Makes the Quality Tag strongly required. More on that later. |
## Examples
| Example of Tag | Example Release Name | Matching | Does it Match? |
|---|---|---|---|---|
| S_BLURAY | Prometheus.2012.Bluray.1080p | S_BLURAY == S_BLURAY | YES |
| S_WEBDL | Prometheus.2012.Bluray.1080p | S_BLURAY == S_WEBDL | NO |
| S_N_WEBDL | Prometheus.2012.Bluray.1080p | S_BLURAY != S_WEBDL | YES |
| R_1080 | Prometheus.2012.Bluray.1080p | R_1080 == R_1080 | YES |
| R_576 | Prometheus.2012.Bluray.1080p | R_1080 == R_576 | NO |
| M_REMUX | Prometheus.2012.Bluray.1080p | M_NONE == M_REMUX | NO |
| M_REMUX | Prometheus.2012.Bluray.Remux.1080p | M_REMUX == M_REMUX | YES |
| L_English | Prometheus.2012.Bluray.1080p | [L_English] contains L_English | YES |
| L_French | Prometheus.2012.Bluray.MULTI.FRENCH.ENGLISH.1080p | [L_English, L_French] contains L_French | YES |