eztv_api_x
Advanced tools
Comparing version 0.0.10 to 0.1.0
@@ -87,7 +87,14 @@ /************************* | ||
episode_rows = $(this).children('.forum_thread_post'); | ||
if(episode_rows.length > 0) { | ||
var title = $(this).children('td').eq(1).text(); | ||
if(title.indexOf("x264") > -1) return true; | ||
} | ||
return false; | ||
if(episode_rows.length > 0) { | ||
var title = $(this).children('td').eq(1).text(); | ||
// we exclude all x264-CTU or AC3 (probably AC3) | ||
if(title.indexOf("x264-CTU") > -1 || title.indexOf("AC3") > -1) | ||
return false; | ||
else if(title.indexOf("XviD") > -1 || title.indexOf("x264") > -1) | ||
// accept xvid & x264 | ||
return true; | ||
} | ||
return false; | ||
}); | ||
@@ -94,0 +101,0 @@ |
{ | ||
"name" : "eztv_api_x", | ||
"version" : "0.0.10", | ||
"version" : "0.1.0", | ||
"description" : "Web Scraper to provide methods to access EZTV easier", | ||
@@ -5,0 +5,0 @@ "author" : "SlashmanX & phenomenz", |
7316
115