You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Feature Description
Change logic for detecting tv shows in config.xml
Problem and Motivation
Regex for shows is lacking as it does handle certain naming conventions.
Possible Solution
Fix the logic for has_episodes, to match more cases of episode names, even when they aren't in sequence.
Additional Context
I am coming from rclone_rd, which handled categorizing shows/movies well. Some non-English shows use different formats. Sometimes torrents are one per episode, not all in one torrent.
Feature Description
Change logic for detecting tv shows in config.xml
Problem and Motivation
Regex for shows is lacking as it does handle certain naming conventions.
Possible Solution
Fix the logic for has_episodes, to match more cases of episode names, even when they aren't in sequence.
Additional Context
I am coming from rclone_rd, which handled categorizing shows/movies well. Some non-English shows use different formats. Sometimes torrents are one per episode, not all in one torrent.
The regex rclone_rd used was as follows:
Shows:
(?i)(S[0-9]{2}|SEASON|COMPLETE|[^457a-z\W\s]-[0-9]+)
Movies:
(?i)(19|20)([0-9]{2} ?\.?)
Everything else would be categorized in folder called default. This logic can be found here.
The text was updated successfully, but these errors were encountered: