From 13c014c6337791e246550fed387828d7f1c32a61 Mon Sep 17 00:00:00 2001 From: Modi777 Date: Mon, 2 Jan 2017 09:59:58 +0700 Subject: [PATCH] Updated torrents search --- .gitignore | 5 ++- Movie File Merger/MainForm.Designer.cs | 20 ++++++--- Movie File Merger/MainForm.cs | 56 +++++++++++--------------- 3 files changed, 40 insertions(+), 41 deletions(-) diff --git a/.gitignore b/.gitignore index a7af19c..ad9bf8c 100644 --- a/.gitignore +++ b/.gitignore @@ -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 @@ -309,3 +307,6 @@ paket-files/ # JetBrains Rider .idea/ *.sln.iml +*.suo +*.suo +.vs/Movie File Merger/v14/.suo diff --git a/Movie File Merger/MainForm.Designer.cs b/Movie File Merger/MainForm.Designer.cs index 036cb6e..6a1982e 100644 --- a/Movie File Merger/MainForm.Designer.cs +++ b/Movie File Merger/MainForm.Designer.cs @@ -1031,15 +1031,19 @@ private void InitializeComponent() this.cobSearchDownload.DropDownWidth = 130; this.cobSearchDownload.FormattingEnabled = true; this.cobSearchDownload.Items.AddRange(new object[] { - "All Below", + "Best Below", "1337X", + "Rarbg", "Bit Snoop", "Demonoid", "Extra Torrent", "Eztv", - "Rarbg", + "Kickass", "ISO Hunt", - "Lime Torrents"}); + "Lime Torrents", + "World Wide Torrents", + "Yifi", + "Zoogle"}); this.cobSearchDownload.Location = new System.Drawing.Point(84, 86); this.cobSearchDownload.Margin = new System.Windows.Forms.Padding(2); this.cobSearchDownload.Name = "cobSearchDownload"; @@ -1196,15 +1200,19 @@ private void InitializeComponent() this.cobSearchDownloadMaintenance.DropDownWidth = 130; this.cobSearchDownloadMaintenance.FormattingEnabled = true; this.cobSearchDownloadMaintenance.Items.AddRange(new object[] { - "All Below", + "Best Below", "1337X", + "Rarbg", "Bit Snoop", "Demonoid", "Extra Torrent", "Eztv", - "Rarbg", + "Kickass", "ISO Hunt", - "Lime Torrents"}); + "Lime Torrents", + "World Wide Torrents", + "Yifi", + "Zoogle"}); this.cobSearchDownloadMaintenance.Location = new System.Drawing.Point(174, 15); this.cobSearchDownloadMaintenance.Margin = new System.Windows.Forms.Padding(2); this.cobSearchDownloadMaintenance.Name = "cobSearchDownloadMaintenance"; diff --git a/Movie File Merger/MainForm.cs b/Movie File Merger/MainForm.cs index a33a764..d0c1d1b 100644 --- a/Movie File Merger/MainForm.cs +++ b/Movie File Merger/MainForm.cs @@ -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 ); @@ -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 ); @@ -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; - */ } }