Replace broken regex patterns with wildcards #6

Merged
CodeX merged 1 commits from fix/wildcard-archive-patterns into main 2026-04-10 15:53:44 +02:00

1 Commits

Author SHA1 Message Date
CodeX 5cc26422f1 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.
2026-04-10 15:51:10 +02:00