Removed Year from EpisodeParseResult (we never used it anyways).

Episode parsing REGEX will properly handle filenames with S01E01/1x01 naming.
Added REGEX to support seasons with more than 100 episodes (0-99)... Stupid soaps.
Title Normalizing REGEX will keep the year (has to start with 19 or 20 and be exactly 4 digits long)
This commit is contained in:
Mark McDowall 2011-04-23 01:04:30 -07:00
parent 86e709e922
commit e9ce98caa4
3 changed files with 38 additions and 29 deletions

View file

@ -11,7 +11,6 @@ namespace NzbDrone.Core.Model
internal int SeasonNumber { get; set; }
internal List<int> Episodes { get; set; }
internal int Year { get; set; }
internal string EpisodeTitle { get; set; }