diff --git a/README.md b/README.md index 5e97dc36c..41a0b0043 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This project is a new fork and is recruiting development help. If you are able Jackett works as a proxy server: it translates queries from apps (Sonarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. This allows for getting recent uploads (like RSS) and performing searches. Jackett is a single repository of maintained indexer scraping & translation logic - removing the burden from other apps. -Developer note: The software implments the [Torznab](https://github.com/Sonarr/Sonarr/wiki/Implementing-a-Torznab-indexer) (with [nZEDb](https://github.com/nZEDb/nZEDb/blob/master/docs/newznab_api_specification.txt) category numbering) and [TorrentPotato](https://github.com/RuudBurger/CouchPotatoServer/wiki/Couchpotato-torrent-provider) APIs. +Developer note: The software implements the [Torznab](https://github.com/Sonarr/Sonarr/wiki/Implementing-a-Torznab-indexer) (with [nZEDb](https://github.com/nZEDb/nZEDb/blob/master/docs/newznab_api_specification.txt) category numbering) and [TorrentPotato](https://github.com/RuudBurger/CouchPotatoServer/wiki/Couchpotato-torrent-provider) APIs. diff --git a/src/Jackett.Test/Indexers/BakaBTTests.cs b/src/Jackett.Test/Indexers/BakaBTTests.cs deleted file mode 100644 index 660ae9328..000000000 --- a/src/Jackett.Test/Indexers/BakaBTTests.cs +++ /dev/null @@ -1,177 +0,0 @@ -using Jackett.Utils.Clients; -using NUnit.Framework; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using Autofac; -using Jackett.Indexers; -using FluentAssertions; -using Newtonsoft.Json.Linq; -using Jackett; -using Newtonsoft.Json; - -namespace JackettTest.Indexers -{ - [TestFixture] - class BakaBTTests : TestBase - { - [Test] - public async void should_return_be_able_to_login_successfully() - { - // Do Login - TestUtil.RegisterStringCall(new WebRequest() - { - Url = "http://bakabt.me/login.php", - Cookies = "bbtid=b", - Type = RequestType.POST, - Referer = "http://bakabt.me/", - PostData = new Dictionary() - { - {"username", "user" }, - {"password", "pwd" }, - {"returnto", "/index.php" } - } - }, (req) => { - return new WebClientStringResult() - { - Status = System.Net.HttpStatusCode.Found, - Cookies = "bbtid=c", - }; - }); - - // Get login form - TestUtil.RegisterStringCall(new WebRequest() - { - Url = "http://bakabt.me/login.php", - Type = RequestType.GET - }, (req) => { - return new WebClientStringResult() - { - Cookies = "bbtid=b", - Status = System.Net.HttpStatusCode.Found - }; - }); - - // Get logged in page - TestUtil.RegisterStringCall(new WebRequest() - { - Cookies = "bbtid=c", - Type = RequestType.GET, - Url = "http://bakabt.me/browse.php?only=0&hentai=1&incomplete=1&lossless=1&hd=1&multiaudio=1&bonus=1&c1=1&reorder=1&q=" - }, (req) => { - return new WebClientStringResult() - { - Content = TestUtil.GetResource("Indexers/BakaBTTestsSearchPage.html"), - Status = System.Net.HttpStatusCode.OK - }; - }); - - var indexer = TestUtil.Container.ResolveNamed(BakaBT.GetIndexerID(typeof(BakaBT))) as BakaBT; - - indexer.DisplayName.Should().Be("BakaBT"); - indexer.DisplayDescription.Should().Be("Anime Community"); - indexer.ID.Should().Be("bakabt"); - - indexer.LoginUrl.Should().Be("http://bakabt.me/login.php"); - - var token = JObject.Parse("{\"username\":\"user\",\"password\":\"pwd\"}"); - await indexer.ApplyConfiguration(token); - indexer.IsConfigured.Should().Be(true); - - ((string)TestUtil.IndexManager.LastSavedConfig["cookies"]).Should().Be("bbtid=c"); - } - - [Test] - public async void should_return_be_able_to_login_unsuccessfully() - { - // Do Login - TestUtil.RegisterStringCall(new WebRequest() - { - Url = "http://bakabt.me/login.php", - Cookies = "bbtid=b", - Type = RequestType.POST, - Referer = "http://bakabt.me/", - PostData = new Dictionary() - { - {"username", "user" }, - {"password", "pwd" }, - {"returnto", "/index.php" } - } - }, (req) => { - return new WebClientStringResult() - { - Status = System.Net.HttpStatusCode.OK, - Cookies = "bbtid=c", - Content = TestUtil.GetResource("Indexers/BakaBTTestsLoginError.html"), - }; - }); - - // Get login form - TestUtil.RegisterStringCall(new WebRequest() - { - Url = "http://bakabt.me/login.php", - Type = RequestType.GET - }, (req) => { - return new WebClientStringResult() - { - Cookies = "bbtid=b", - Status = System.Net.HttpStatusCode.Found - }; - }); - - var indexer = TestUtil.Container.ResolveNamed(BakaBT.GetIndexerID(typeof(BakaBT))) as BakaBT; - - var token = JObject.Parse("{\"username\":\"user\",\"password\":\"pwd\"}"); - try { - await indexer.ApplyConfiguration(token); - } - catch(ExceptionWithConfigData e) - { - e.Message.Should().Be("Username or password is incorrect"); - } - - indexer.IsConfigured.Should().Be(false); - } - - [Test] - public async void should_return_be_able_to_scrape_the_search_page() - { - // Do Search - TestUtil.RegisterStringCall(new WebRequest() - { - Url = "http://bakabt.me/browse.php?only=0&hentai=1&incomplete=1&lossless=1&hd=1&multiaudio=1&bonus=1&c1=1&reorder=1&q=Series", - Cookies = "bbtid=c", - Type = RequestType.GET - }, (req) => { - return new WebClientStringResult() - { - Status = System.Net.HttpStatusCode.OK, - Cookies = "bbtid=c", - Content = TestUtil.GetResource("Indexers/BakaBTTestsSearchPage.html"), - }; - }); - - var indexer = TestUtil.Container.ResolveNamed(BakaBT.GetIndexerID(typeof(BakaBT))) as BakaBT; - - indexer.LoadFromSavedConfiguration(JObject.Parse("{\"cookies\":\"bbtid=c\"}")); - var results = await indexer.PerformQuery(new Jackett.Models.TorznabQuery() { SearchTerm = "Series S1", Season = 1 }); - - results.Count().Should().Be(44); - results.First().Title.Should().Be("Golden Time Season 1 (BD 720p) [FFF]"); - results.First().Guid.Should().Be("http://bakabt.me/torrent/180302/golden-time-bd-720p-fff"); - results.First().Comments.Should().Be("http://bakabt.me/torrent/180302/golden-time-bd-720p-fff"); - results.First().Size.Should().Be(10307921920); - results.First().Description.Should().Be("Golden Time Season 1 (BD 720p) [FFF]"); - results.First().Link.Should().Be("http://bakabt.me/torrent/180302/golden-time-bd-720p-fff"); - results.First().Peers.Should().Be(161); - results.First().Seeders.Should().Be(151); - results.First().MinimumRatio.Should().Be(1); - - results.ElementAt(1).Title.Should().Be("Yowamushi Pedal Season 1 (BD 720p) [Commie]"); - results.ElementAt(4).Title.Should().Be("Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth Season 1 (480p) [HorribleSubs]"); - results.ElementAt(5).Title.Should().Be("Is It Wrong to Try to Pick Up Girls in a Dungeon? Season 1 (480p) [HorribleSubs]"); - } - } -} diff --git a/src/Jackett.Test/Indexers/BakaBTTestsLoginError.html b/src/Jackett.Test/Indexers/BakaBTTestsLoginError.html deleted file mode 100644 index e3f20d4ba..000000000 --- a/src/Jackett.Test/Indexers/BakaBTTestsLoginError.html +++ /dev/null @@ -1,59 +0,0 @@ - - - - Login - BakaBT - - - - - - - - - - -
- -
- -
-
-
- - - - -
- - - - \ No newline at end of file diff --git a/src/Jackett.Test/Indexers/BakaBTTestsSearchPage.html b/src/Jackett.Test/Indexers/BakaBTTestsSearchPage.html deleted file mode 100644 index 8b61d013a..000000000 --- a/src/Jackett.Test/Indexers/BakaBTTestsSearchPage.html +++ /dev/null @@ -1,1312 +0,0 @@ - - - - - - Browse - BakaBT - - - - - - - -
-
-
- -
- -
-
-
-
-
    -
  • - Tags - -
      -
    • - - -
    • -
    • - - -
    • -
    • - - -
    • -
    • - - -
    • -
    • - - -
    • -
    • - - -
    • -
    -
  • -
  • - Category: - -
  • - -
  • -
    - Searchcloud: - 1080p akira anal berserk bleach borderline hentai comedy dragon ball ecchi evangelion fairy tail fakku fantasy fate futanari Gender Bender Ghibli ghost in the shell Gigantic Breasts gintama gundam Harem horror hunter x hunter incest jojo kill la kill large breasts Lolicon macross mecha monogatari monster naruto no game no life ntr nudity one piece pokemon psycho pass rape romance Sci-Fi Seinen sword art online to love-ru tokyo ghoul uncensored yaoi yuri -
    -
  • -
-
-
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Category - - Name - - Added - - Size - - DSL -
-
- -
-
-
- Golden Time (BD 720p) [FFF] College, Comedy, Coming of Age, Slice of Life, Love Polygon, Romance, FFF, Hi10P, 720p, J C STAFF - - - 22 Jul '15 - 9.60 GB - 323 / 151 / 10 -
Alternative versions:
- Golden Time (480p) [HorribleSubs] Comedy, Coming of Age, College, Daily Life, Love Polygon, Romance, Seinen, HorribleSubs, J C STAFF - - 28 Ma '14 - 3.44 GB - 3984 / 49 / 1 -
-
- -
-
-
- Yowamushi Pedal (BD 720p) [Commie] Comedy, Drama, School, Shounen, Sports, 720p, Commie, BluRay - - - 8 Jul '15 - 22.6 GB - 318 / 73 / 9 -
Alternative versions:
- Yowamushi Pedal (480p) [HorribleSubs] Comedy, Drama, School, Shounen, Sports, HorribleSubs - - 31 Oct '14 - 5.49 GB - 1219 / 41 / 1 -
-
- -
-
-
- Etotama (480p) [HorribleSubs] Action, Comedy, Fantasy, HorribleSubs, Catgirls - - - 8 Jul '15 - 1.73 GB - 741 / 112 / 4 -
-
- -
-
-
- Grisaia no Kajitsu (480p) [HorribleSubs] Drama, Romance, School, Harem, Psychological, Visual Novel, 8bit (Production co.), HorribleSubs - - - 8 Jul '15 - 1.86 GB - 775 / 131 / 2 -
-
- -
-
-
- Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth | Is It Wrong to Try to Pick Up Girls in a Dungeon? | DanMachi (480p) [HorribleSubs] Action, Adventure, Fantasy, Ecchi, Harem, Romance, Supernatural, HorribleSubs, J C STAFF - - - 5 Jul '15 - 1.86 GB - 1823 / 276 / 7 -
-
- -
-
-
- Yahari Ore no Seishun Lovecome wa Machigatte Iru. Zoku | My Teen Romantic Comedy: SNAFU Too! | Oregairu 2 (480p) [HorribleSubs] Romance, High School, School Life, Schoolgirls, Seinen, Feel, HorribleSubs - - - 5 Jul '15 - 1.90 GB - 830 / 107 / 7 -
-
- -
-
-
- Yamada-kun to 7-nin no Majo | Yamada-kun and the Seven Witches (480p) [HorribleSubs] Romance, Harem, School Life, Schoolgirls, Shounen, HorribleSubs - - - 5 Jul '15 - 1.79 GB - 850 / 125 / 3 -
-
- -
-
-
- Kyoshin Gorg | Giant Gorg (480p) [TSHS, mSubs, BBT-RMX] Action, Adventure, Mecha, Sci-Fi, Sunrise, TSHS, mSubs, Remux - - - 26 Jun '15 - 7.36 GB - 429 / 44 / 4 -
-
- -
-
-
- Inuyasha [RUELL-Next] Action, Adventure, Comedy, Contemporary Fantasy, Demons, Fantasy, Love Polygon, Magic, Martial Arts, Romance, Shounen, Super Power, Sunrise, Time Travel - - - 26 Jun '15 - 39.8 GB - 457 / 103 / 16 -
Alternative versions:
- Inuyasha [Anime-Supreme] Action, Adventure, Fantasy, Demons, Shounen, Super Power, Swordplay, Time Travel, Sunrise, a-S, TAKAHASHI Rumiko - - 1 Jan '11 - 33.4 GB - 15k / 124 / 21 -
- Inuyasha Season 4 [Ani-Kraze] Action, Adventure, Comedy, Contemporary Fantasy, Demons, Fantasy, Love Polygon, Magic, Martial Arts, Romance, Shounen, Super Power, Ani-Kraze, Sunrise - - 12 Ma '10 - 5.34 GB - 316 / 3 / 0 -
- Inuyasha Season 5 [Ani-Kraze] Action, Adventure, Comedy, Contemporary Fantasy, Demons, Fantasy, Love Polygon, Magic, Martial Arts, Romance, Shounen, Super Power, Swordplay, Ani-Kraze, Sunrise - - 10 Ma '10 - 5.22 GB - 394 / 4 / 0 -
- Inuyasha Season 6 [Ani-Kraze] Action, Adventure, Comedy, Contemporary Fantasy, Demons, Fantasy, Magic, Martial Arts, Romance, Shounen, Slapstick, Super Power, Time Travel, Ani-Kraze, Sunrise - - 9 Nov '04 - 5.31 GB - 518 / 4 / 0 -
-
- -
-
-
- Hello!! Kin'iro Mosaic | Kinmosa 2 (480p) [HorribleSubs] Comedy, Seinen, Daily Life, School Life, Schoolgirls, Studio Gokumi, HorribleSubs - - - 26 Jun '15 - 1.71 GB - 360 / 52 / 0 -
-
- -
-
-
- Cybersix (480p) [Bakayaros] (Eng Dub) Action, Adventure, Comedy, Cyborgs, Human Enhancement, Romance, School Life, Sci-Fi, Seinen, Shounen, Super Power, Thriller, Violence, TMS, Bakayaros - - - 14 Jun '15 - 3.93 GB - 523 / 36 / 0 -
-
- -
-
-
- Triage X (480p) [HorribleSubs] Action, Harem, School Life, Schoolgirls, Large Breasts, Shounen, Romance, Ecchi, XEBEC, HorribleSubs, SATOU Shouji - - - 13 Jun '15 - 1.42 GB - 1729 / 156 / 2 -
-
- -
-
-
- Yami Shibai 2 | Yamishibai: Japanese Ghost Stories 2 (720p) [WhyNot-Migoto] Horror, Short Episodes, WhyNot, Migoto, Supernatural, Hi10P, 720p - - - 9 Jun '15 - 1.68 GB - 431 / 51 / 1 -
-
- -
-
-
- Shigatsu wa Kimi no Uso | Your Lie in April (480p) [HorribleSubs] Drama, Music, Sports, Shounen, HorribleSubs, Psychological, Romance, Tragedy - - - 4 Jun '15 - 3.05 GB - 1273 / 111 / 4 -
-
- -
-
-
- Ojamajo Doremi | Magical DoReMi (480p) [Doremi] Mahou Shoujo, Comedy, School Life, Fantasy, Magic, Doremi, Elementary School, Shoujo - - - 2 Jun '15 - 10.9 GB - 164 / 16 / 1 -
-
- -
-
-
- Diamond no Ace | Ace of the Diamond (720p) [Commie] Baseball, Sports, Commie, Comedy, School, Shounen, MADHOUSE - - - 30 May '15 - 23.6 GB - 454 / 44 / 5 -
Alternative versions:
- Diamond no Ace | Ace of the Diamond (480p) [HorribleSubs] Baseball, Comedy, School, Shounen, Sports, MADHOUSE, Production IG, HorribleSubs - - 29 Ma '15 - 10.9 GB - 648 / 26 / 2 -
-
- -
-
-
- Deltora Quest (480p) [E-D] (Eng Dub) Action, Adventure, Comedy, Drama, Fantasy, Shounen, Swordplay, OLM, E-D - - - 30 May '15 - 14.1 GB - 645 / 60 / 2 -
-
- -
-
-
- Kakumeiki Valvrave | Valvrave the Liberator (BD 720p) [FFF] Action, Angst, Love Polygon, Mecha, Piloted Robots, School Life, Sci-Fi, Space, Robots, Tragedy, Violence, Sunrise, BluRay, Hi10P, 720p - - - 25 May '15 - 17.6 GB - 1098 / 136 / 10 -
Alternative versions:
- Kakumeiki Valvrave | Valvrave The Liberator (480p) [HorribleSubs] Mecha, HorribleSubs, Robots, Piloted Robots, Angst, Action, Sci-Fi, Sunrise, Space, Love Polygon, School Life, Violence, Tragedy - - 6 Jan '14 - 3.56 GB - 2103 / 32 / 1 -
-
- -
-
-
- Jigoku Shoujo | Hell Girl (DVD 480p) [E-D] Angst, Contemporary Fantasy, Demons, Drama, Horror, Seinen, Tragedy, Violence, Aniplex, Studio DEEN, E-D - - - 25 May '15 - 8.62 GB - 724 / 73 / 3 -
-
- -
-
-
- Majin Bone (480p) [HorribleSubs] Action, Game, Battles, Sci-Fi, Shounen, HorribleSubs, Toei Animation, Bandai Visual, Crunchyroll - - - 17 May '15 - 6.93 GB - 256 / 28 / 0 -
-
- -
-
-
- Xenosaga The Animation (DVD 480p) [ColdFusion] Action, Airforce, Aliens, Androids, Gunfights, Humanoid, Mecha, Military, Parasites, Piloted Robots, Sci-Fi, Space Travel, Hi10P, Namco Bandai, Toei Animation - - - 16 May '15 - 2.68 GB - 1169 / 87 / 1 -
-
- -
-
-
- 009-1 (DVD 480p) [E-D] Action, Conspiracy, Cyborgs, Ecchi, Sci-Fi, Tragedy, Spy, E-D - - - 16 May '15 - 4.32 GB - 1656 / 121 / 2 -
-
- -
-
-
- HappinessCharge Precure! (Pretty Cure) [Doremi] Toei Animation, Shoujo, Mahou Shoujo, Magic, Super Power, Contemporary Fantasy, School Life, Love Polygon, 720p, Doremi - - - 9 May '15 - 17.4 GB - 165 / 20 / 0 -
-
- -
-
-
- D.C.III ~Da Capo III~ (BD 1080p) [- -`] Harem, High School, Female Students, Clubs, Magic, Romance, School Life, Visual Novel, 1080p, Circus, Drama, Ecchi, Boing, Hi10P, BluRay - - - 2 May '15 - 12.3 GB - 472 / 56 / 4 -
Alternative versions:
- D.C.III ~Da Capo III~ (720p) [ASF-Oyatsu] Harem, High School, Female Students, Clubs, Magic, Romance, School Life, Visual Novel, 720p, Circus, Drama, Ecchi, Boing - - 16 Apr '15 - 3.71 GB - 457 / 22 / 0 -
- D.C.III ~Da Capo III~ (480p) [HorribleSubs] Boing, Clubs, Comedy, Female Students, Harem, High School, Magic, Romance, School Life, Circus, HorribleSubs - - 14 Ma '14 - 1.86 GB - 1231 / 18 / 1 -
-
- -
-
-
- PriPara - Season 1 (720p) [naisho] Idols, Music, Kids, Shoujo, Slice of Life, Tatsunoko Prod., naisho, 720p, Hi10P - - - 2 May '15 - 21.4 GB - 164 / 21 / 0 -
-
- -
-
-
- Fushigi na Melmo | Marvelous Melmo [DivX5, 480p][Saiei&Viki] Fantasy, Magic, Mahou Shoujo, Educational, Action, Violence, Comedy, Coming of Age, Ecchi, Nudity, Shoujo, Viki, Tezuka Productions, TEZUKA Osamu - - - 28 Apr '15 - 4.74 GB - 430 / 17 / 0 -
-
- -
-
-
- HeartCatch Precure! (Pretty Cure) [BSS-Commie] Toei Animation, Shoujo, Mahou Shoujo, Super Power, Magic, School Life, Clubs, Action, Contemporary Fantasy, Hi10P, 720p, Commie - - - 27 Apr '15 - 30.7 GB - 219 / 31 / 5 -
Alternative versions:
- Heartcatch Precure! (Pretty Cure) (xvid) [Doremi] Toei Animation, Mahou Shoujo, Magic, School Life, Doremi - - 2 Feb '11 - 8.39 GB - 816 / 3 / 0 -
-
- -
-
-
- Hunter x Hunter (2011) (BD 1080p) [Coalgirls] Action, Adventure, Fantasy, Super Power, Tragedy, Shounen, Violence, MADHOUSE, 1080p, Hi10P, Coalgirls - - - 25 Apr '15 - 158 GB - 505 / 102 / 13 -
Alternative versions:
- Hunter x Hunter (2011) (BD 720p) [Coalgirls] Action, Adventure, Fantasy, Super Power, Tragedy, Shounen, Violence, MADHOUSE, 720p, Hi10P, Coalgirls - - 9 Ma '15 - 78.1 GB - 1038 / 88 / 19 -
- Hunter x Hunter (2011) (480p) [HorribleSubs] Action, Adventure, Comedy, Drama, Fantasy, Tournament, Shounen, Super Power, Tragedy, Violence, HorribleSubs, MADHOUSE - - 27 Sept '14 - 21.1 GB - 1107 / 30 / 3 -
-
- -
-
-
- Log Horizon (BD 1080p) [Zurako] Action, Magic, Fantasy, Comedy, Virtual Reality, Shounen, Zurako, 1080p, BluRay, Hi10P - - - 21 Apr '15 - 40.4 GB - 763 / 93 / 1 -
Alternative versions:
- Log Horizon (BD 1080p) [deanzel] Action, Magic, Fantasy, Comedy, Virtual Reality, Shounen, BluRay, Hi10P, 1080p, Commie, NHK, Satelight - - 26 Apr '15 - 24.7 GB - 542 / 52 / 3 -
- Log Horizon (BD 720p) [SallySubs] Action, Comedy, Fantasy, Magic, Virtual Reality, Shounen, 720p, Hi10P - - 21 Apr '15 - 9.27 GB - 626 / 41 / 2 -
- Log Horizon (BD 720p) [deanzel] Action, Magic, Fantasy, Comedy, Virtual Reality, Shounen, BluRay, Hi10P, 720p, Commie, NHK, Satelight - - 26 Apr '15 - 10.3 GB - 439 / 27 / 2 -
- Log Horizon (480p) [HorribleSubs] Action, Adventure, Comedy, Fantasy, Magic, Shounen, Sci-Fi, Virtual Reality, Satelight, NHK, HorribleSubs - - 24 Ma '14 - 3.71 GB - 5250 / 60 / 0 -
-
- -
-
-
- Rail Wars! (BD 1080p) [FFF] Harem, Large Breasts, Special Squads, Law and Order, BluRay, FFF, 1080p, Hi10P - - - 21 Apr '15 - 16.2 GB - 1239 / 114 / 4 -
Alternative versions:
- Rail Wars! (BD 720p) [FFF] Harem, Large Breasts, Special Squads, Law and Order, BluRay, Hi10P, 720p, FFF - - 21 Apr '15 - 6.61 GB - 1072 / 72 / 0 -
- Rail Wars! (480p) [HorribleSubs] Harem, Large Breasts, Special Squads, Law and Order, Romance, HorribleSubs - - 9 Nov '14 - 1.75 GB - 2389 / 58 / 1 -
-
- -
-
-
- - -
- - - - - \ No newline at end of file diff --git a/src/Jackett.Test/Jackett.Test.csproj b/src/Jackett.Test/Jackett.Test.csproj index 0ee3e344b..cf5bac2f9 100644 --- a/src/Jackett.Test/Jackett.Test.csproj +++ b/src/Jackett.Test/Jackett.Test.csproj @@ -158,7 +158,6 @@ - @@ -180,10 +179,7 @@ - - - - +