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
Owner

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.

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.
CodeX added 1 commit 2026-04-10 15:51:21 +02:00
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.
CodeX merged commit 94180d85a7 into main 2026-04-10 15:53:44 +02:00
CodeX deleted branch fix/wildcard-archive-patterns 2026-04-10 15:53:44 +02:00
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: arr/blocklists#6