Replace broken regex patterns with wildcards

qBittorrent's excluded file names field uses simple wildcards, not
regex. The regex: prefix is not supported and was silently ignored.

Replace the two non-functional regex lines with four wildcard patterns:

  *.7z.*   - 7z multi-volume (.7z.001, .7z.002, ...)
  *.r??    - rar volumes (.r00-.r99)
  *.s??    - rar overflow (.s00-.s99)
  *.z??    - zip splits (.z00-.z99)

These overlap harmlessly with upstream's existing literal entries
(*.r00-*.r04 etc.) and will be preserved as custom additions by the
three-way merge.
This commit is contained in:
CodeX
2026-04-10 15:51:10 +02:00
parent 455af2029f
commit 5cc26422f1
+4 -2
View File
@@ -843,6 +843,8 @@
*sample.wmv *sample.wmv
Trailer.* Trailer.*
VOSTFR VOSTFR
*.7z.*
*.r??
*.s??
*.z??
api api
regex:(?i)^.*\.7z\.\d+$
regex:(?i)^.*\.[r-z]\d+$