Skip to content

Commit

Permalink
Merge pull request #5 from charmpitz/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
charmpitz committed Mar 22, 2015
2 parents d364543 + b470f3f commit 9041a8e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
17 changes: 11 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ new Tripper(
'tracker' => array(
// FreshonTv, Filelist
'type' => 'FreshonTv',
'options' => array(
'hd_only' => true
),
'credentials' => array(
'username' => '',
'password' => ''
Expand All @@ -40,6 +43,7 @@ new Tripper(
'name' => 'Supernatural',
'query' => 'S07-S10E04',
'resolution' => '480p|720p|1080p',
// 'ripper' => 'NTb|DIMENSION|LOL|2HD|TvT|KiNGS|W4F|DEMAND|SAiNTS|CtrlHD|ECI',
// 'custom_search_name' => '',
)
),
Expand All @@ -66,7 +70,7 @@ $filelist =
new Tripper(
array(
'tracker' => array(
'type' => 'Filelist',
'type' => 'Filelist'
'credentials' => array(
'username' => '',
'password' => ''
Expand All @@ -75,11 +79,12 @@ new Tripper(
'search' => array(
'type' => 'Movies',
'options' => array(
'name' => 'Shawshank.Redemption',
'year' => '1994',
'resolution' => '720p|1080p|480p',
'quality' => 'Bluray|BluRay|BRRip|DVDRip|DVD5.PAL',
'number_of_results' => 3
'name' => 'Shawshank Redemption',
'year' => '1994',
'resolution' => '720p', // |1080p|480p
'quality' => 'Bluray', // |BluRay|BRRip|DVDRip|DVD5.PAL
// 'ripper' => 'NTb|DIMENSION|LOL|2HD|TvT|KiNGS|W4F|DEMAND|SAiNTS|CtrlHD|ECI',
'number_of_results' => 1
)
),
'client' => array(
Expand Down
2 changes: 2 additions & 0 deletions src/SearchFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ class Search_Series {
public $query;
public $resolution;
public $torrents;
public $ripper;

public function __construct($options, $torrents) {

Expand Down Expand Up @@ -207,6 +208,7 @@ class Search_Movies {
public $resolution;
public $quality;
public $number_of_results = 1;
public $ripper;
public $torrents;

public function __construct($options, $torrents) {
Expand Down

0 comments on commit 9041a8e

Please sign in to comment.