From 0459ecd2cda4fc4ca8a45ee0106bf97716a5a880 Mon Sep 17 00:00:00 2001 From: Leonardo Galli Date: Mon, 26 Feb 2018 23:20:52 +0100 Subject: [PATCH] Updated Custom Qualities (markdown) --- Custom-Formats.md | 33 +++++++++++++++++++++++++++++++++ Custom-Qualities.md | 6 ------ 2 files changed, 33 insertions(+), 6 deletions(-) create mode 100644 Custom-Formats.md delete mode 100644 Custom-Qualities.md diff --git a/Custom-Formats.md b/Custom-Formats.md new file mode 100644 index 0000000..4d712c1 --- /dev/null +++ b/Custom-Formats.md @@ -0,0 +1,33 @@ +# Quality Tags + +A Quality Tag consists of three parts: The Tag Prefix, the Tag Modifier (optional) and the Tag Value. + +Format: PREFIX_MODIFIER_VALUE or PREFIX_VALUE + +The Prefix determines what kind of Quality Tag this is and against what it matches. + +The Modifier changes how the matching occurs. + +The Value is used for the matching. + +## Quality Tag Types + +| Name | Tag Prefix | Possible Values / Examples | Notes | +|-------|-----------|------|---| +|Source|S_|S_WORKPRINT, TODO add all final values here | This tag is matched against the source where a release was ripped from. | +| Resolution | R_ | R_480, R_576, R_720, R_1080, R_2160 | This tag is matched against the resolution parsed from either the release name or media info (if available) | +| Modifier | M_ | M_SCREENER, M_REMUX, M_BRDISK, TODO add all final values here | This tag is matched against any modifiers Radarr may parse, such as whether the release is a remux or a full bluray disk. | +| Language | L_ | L_English, L_German, etc. | This tag is matched against any language(s) Radarr parses. All languages previously selectable in profiles work here. | +| Indexer Flags | I_ | I_GFreeleech, I_GHalfleech, TODO add all final values here | This tag is matched against any Indexer Flags Radarr may parse. | +| Edition | E_ | E_Director, E_theatrical, E_EXTENDED, ... | This tag is matched against any Editions Radarr may parse. You can put any value after E_ and Radarr will try to match that against what it parsed (case-insensitive). | +| Custom | C_ | C_Surround, C_YIFI, C_-Framestor, C_h264, ... | This tag is matched against the whole release name (case-insensitve). You can put any value after C_. | + +## Quality Tag Modifiers + +| Name | Abbreviation | Notes | +|---|---|---| +| Regex | R | Is only useful for Edition and Custom Quality Tags. Makes it, that Radarr parses the value of the Quality Tag as a Regex and uses the Regex for matching. | +| Negate | N | Negates the Quality Tag, i.e. when it normally matches it won't and when it normally wouldn't match it does. | +| Required | RE | Makes the Quality Tag strongly required. More on that later. | + + diff --git a/Custom-Qualities.md b/Custom-Qualities.md deleted file mode 100644 index 481dafd..0000000 --- a/Custom-Qualities.md +++ /dev/null @@ -1,6 +0,0 @@ -# Quality Tags - -| Name | Tag Prefix | Possible Values / Examples | Notes | -|-------|-----------|------|---| -|Source|S_|S_WORKPRINT,| -| Language |L_|L_English, L_German|-| \ No newline at end of file