Skip to content

Commit

Permalink
Updated torrents search
Browse files Browse the repository at this point in the history
  • Loading branch information
modiholodri committed Jan 2, 2017
1 parent 516c802 commit 13c014c
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 41 deletions.
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,11 @@ Network Trash Folder
Temporary Items
.apdisk
/.project
*.suo

## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

# User-specific files
.vs/Movie File Merger/v14/.suo
*.suo
*.user
*.userosscache
Expand Down Expand Up @@ -309,3 +307,6 @@ paket-files/
# JetBrains Rider
.idea/
*.sln.iml
*.suo
*.suo
.vs/Movie File Merger/v14/.suo
20 changes: 14 additions & 6 deletions Movie File Merger/MainForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

56 changes: 23 additions & 33 deletions Movie File Merger/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -770,22 +770,20 @@ void SearchDownload( string strCleanName )
{
LogMessage( "Info", Color.Blue, "Searching " + cobSearchDownload.Text + " for " + strCleanName );
switch ( cobSearchDownload.Text ) {
case "All Below":
case "Best Below":
ExecuteThis( "https://1337x.to/search/" + strCleanName + "/1/" );
ExecuteThis( "https://rarbg.to/torrents.php?search=" + strCleanName );
ExecuteThis( "http://bitsnoop.com/search/all/" + strCleanName );
ExecuteThis( "http://www.demonoid.pw/files/?query=" + strCleanName );
ExecuteThis( "http://www.demonoid.pw/files/?category=1&subcategory=0&language=0&quality=0&seeded=2&external=2&query=" + strCleanName );
ExecuteThis( "http://extratorrent.cc/search/?search=" + strCleanName );
ExecuteThis( "https://eztv.ag/search/" + strCleanName );
// ExecuteThis( "https://kat.cr/usearch/" + strCleanName + " category:movies/" );
// ExecuteThis( "http://magnetseed.net/search/index?q=" + strCleanName );
// ExecuteThis( "https://eztv.ag/search/" + strCleanName );
ExecuteThis( "https://isohunt.to/torrents/?ihq=" + strCleanName );
// ExecuteThis( "https://kat.am/usearch/" + strCleanName + " category:movies/" );
ExecuteThis( "https://www.limetorrents.cc/search/all/" + strCleanName );
// ExecuteThis( "https://thepiratebay.la/search/" + strCleanName );
// ExecuteThis( "http://torrentz.eu/search?f=" + strCleanName );
// ExecuteThis( "http://www.torrenthound.com/search/" + strCleanName );
// ExecuteThis( "http://www.torlock.com/all/torrents/" + strCleanName );
// ExecuteThis( "https://www.yify-torrent.org/search/" + strCleanName );
ExecuteThis( "https://thepiratebay.org/search/" + strCleanName );
// ExecuteThis( "https://worldwidetorrents.eu/torrents-search.php?search=" + strCleanName );
ExecuteThis( "https://zooqle.com/search?q=" + strCleanName );
// ExecuteThis( "https://yts.ag/movie/" + strCleanName );
break;
case "Rarbg":
ExecuteThis( "https://rarbg.to/torrents.php?search=" + strCleanName );
Expand All @@ -797,7 +795,7 @@ void SearchDownload( string strCleanName )
ExecuteThis( "http://bitsnoop.com/search/all/" + strCleanName );
break;
case "Demonoid":
ExecuteThis( "http://www.demonoid.pw/files/?query=" + strCleanName );
ExecuteThis( "http://www.demonoid.pw/files/?category=1&subcategory=0&language=0&quality=0&seeded=2&external=2&query=" + strCleanName );
break;
case "Extra Torrent":
ExecuteThis( "http://extratorrent.cc/search/?search=" + strCleanName );
Expand All @@ -808,36 +806,28 @@ void SearchDownload( string strCleanName )
case "ISO Hunt":
ExecuteThis( "https://isohunt.to/torrents/?ihq=" + strCleanName );
break;
case "Kickass":
ExecuteThis( "https://kat.am/usearch/" + strCleanName + " category:movies/" );
break;
case "Lime Torrents":
ExecuteThis( "https://www.limetorrents.cc/search/all/" + strCleanName );
break;
default:
ExecuteThis( "https://rarbg.to/torrents.php?search=" + strCleanName );
LogMessage( "Warning", Color.Orange, "Could not find " + cobSearchDownload.Text + " -> Searching Rarbg instead." );
break;
/*
case "Magnet Seed":
ExecuteThis( "http://magnetseed.net/search/index?q=" + strCleanName );
break;
case "Torrent Hound":
ExecuteThis( "http://www.torrenthound.com/search/" + strCleanName );
break;
case "Torlock":
ExecuteThis( "http://www.torlock.com/all/torrents/" + strCleanName );
case "The Piratebay":
ExecuteThis( "https://thepiratebay.org/search/" + strCleanName );
break;
case "Yifi Torrents":
ExecuteThis( "https://www.yify-torrent.org/search/" + strCleanName );
case "World Wide Torrents":
ExecuteThis( "https://worldwidetorrents.eu/torrents-search.php?search=" + strCleanName );
break;
case "The Piratebay":
ExecuteThis( "https://thepiratebay.la/search/" + strCleanName );
case "Yifi":
ExecuteThis( "https://yts.ag/movie/" + strCleanName );
break;
case "Torrentz":
ExecuteThis( "http://torrentz.eu/search?f=" + strCleanName );
case "Zoogle":
ExecuteThis( "https://zooqle.com/search?q=" + strCleanName );
break;
case "Kickass":
ExecuteThis( "https://kat.cr/usearch/" + strCleanName + " category:movies/" );
default:
ExecuteThis( "https://rarbg.to/torrents.php?search=" + strCleanName );
LogMessage( "Warning", Color.Orange, "Could not find " + cobSearchDownload.Text + " -> Searching Rarbg instead." );
break;
*/
}
}

Expand Down

0 comments on commit 13c014c

Please sign in to comment.