TRaSH-Guides / Guides

Here you will find Guides mainly for the Starr Apps (Sonarr/Radarr) and everything related to it.
https://trash-guides.info/
MIT License
1.64k stars 207 forks source link

fix(radarr): Update x265.json with (?i) to let the entire regular expression case-insensitive #1963

Closed remisharrock closed 1 month ago

remisharrock commented 1 month ago

sometimes I see H 265 or X 265 so I added this modifier to let the entire regular expression case-insensitive. [xh]: Matches "x" or "h" in either lowercase or uppercase due to the (?i) modifier. it will also match "HEVC" in any combination of upper and lower case letters (e.g., "HEVC", "hevc", "Hevc", "hEVC", etc.).

remisharrock commented 1 month ago

I guess we could do the same in many other regexes ?

bakerboy448 commented 1 month ago

Invalid and not needed. Custom formats are already case sensitive. This will never be added as it is 100% unecessary