Changeset 110

Show
Ignore:
Timestamp:
07/01/07 15:49:10 (2 years ago)
Author:
gbooker
Message:

Added the dot to these regexs as well.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/SapphireTVShowDataMenu.m

    r109 r110  
    8888        showInfo = [NSMutableDictionary new]; 
    8989         
    90         regcomp(&letterMarking, "[ -]?S[0-9]+E[0-9]+", REG_EXTENDED | REG_ICASE); 
    91         regcomp(&seasonByEpisode, "[ -]?[0-9]+x[0-9]+", REG_EXTENDED | REG_ICASE); 
     90        regcomp(&letterMarking, "[\\. -]?S[0-9]+E[0-9]+", REG_EXTENDED | REG_ICASE); 
     91        regcomp(&seasonByEpisode, "[\\. -]?[0-9]+x[0-9]+", REG_EXTENDED | REG_ICASE); 
    9292        regcomp(&seasonEpisodeTriple, "[\\. -][0-9]{3,5}[\\. -]", REG_EXTENDED | REG_ICASE);     
    9393        return self;