Removal of ILT (dead) and addition of GimmePeers (#988)

* Create gimmepeers.cs

Copied settings over from old ILoveTorrents config. As ILT is now defunct, GP is the official replacement, as announced back in fall 2016.

* Remove ILT and add GimmePeers

Removing defunct ILT and adding its replacement GP

* Rename gimmepeers.cs to GimmePeers.cs

* Update Jackett.csproj

Remove ILT and add GP

* Delete ILoveTorrents.cs

Removing ILT support as site is dead
This commit is contained in:
jamesb2147 2017-01-27 01:33:38 -06:00 committed by kaso17
parent c3b3dd5499
commit 79bed349d9
3 changed files with 188 additions and 188 deletions

View File

@ -63,6 +63,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
* FunkyTorrents * FunkyTorrents
* Fuzer * Fuzer
* Ghost City * Ghost City
* GimmePeers
* GODS * GODS
* Gormogon * Gormogon
* Hardbay * Hardbay
@ -77,7 +78,6 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
* House-of-Torrents * House-of-Torrents
* Hyperay * Hyperay
* ICE Torrent * ICE Torrent
* ILoveTorrents
* Immortalseed * Immortalseed
* Infinity-T * Infinity-T
* IPTorrents * IPTorrents
@ -87,7 +87,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
* LinkoManija * LinkoManija
* M-Team - TP * M-Team - TP
* Magico * Magico
* Mononoké-BT * Mononoké-BT
* MoreThanTV * MoreThanTV
* MyAnonamouse * MyAnonamouse
* myAmity * myAmity

View File

@ -1,4 +1,4 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Collections.Specialized; using System.Collections.Specialized;
using System.Globalization; using System.Globalization;
@ -18,10 +18,10 @@ using NLog;
namespace Jackett.Indexers namespace Jackett.Indexers
{ {
// ReSharper disable once InconsistentNaming // ReSharper disable once InconsistentNaming
public class ILoveTorrents : BaseIndexer, IIndexer public class GimmePeers : BaseIndexer, IIndexer
{ {
private string BrowseUrl => SiteLink + "browse.php"; private string BrowseUrl => SiteLink + "browse.php";
private string LoginUrl => SiteLink + "takelogin.php"; private string LoginUrl => SiteLink + "login.php";
new ConfigurationDataBasicLogin configData new ConfigurationDataBasicLogin configData
{ {
@ -29,10 +29,10 @@ namespace Jackett.Indexers
set { base.configData = value; } set { base.configData = value; }
} }
public ILoveTorrents(IIndexerManagerService i, IWebClient wc, Logger l, IProtectionService ps) public GimmePeers(IIndexerManagerService i, IWebClient wc, Logger l, IProtectionService ps)
: base(name: "ILoveTorrents", : base(name: "GimmePeers",
description: "ILT", description: "Formerly ILT",
link: "https://www.ilovetorrents.me/", link: "https://www.gimmepeers.com/",
caps: new TorznabCapabilities(), caps: new TorznabCapabilities(),
manager: i, manager: i,
client: wc, client: wc,

View File

@ -228,7 +228,7 @@
<Compile Include="Indexers\Abnormal.cs" /> <Compile Include="Indexers\Abnormal.cs" />
<Compile Include="Indexers\Fuzer.cs" /> <Compile Include="Indexers\Fuzer.cs" />
<Compile Include="Indexers\GFTracker.cs" /> <Compile Include="Indexers\GFTracker.cs" />
<Compile Include="Indexers\ILoveTorrents.cs" /> <Compile Include="Indexers\GimmePeers.cs" />
<Compile Include="Indexers\RevolutionTT.cs" /> <Compile Include="Indexers\RevolutionTT.cs" />
<Compile Include="Indexers\TehConnection.cs" /> <Compile Include="Indexers\TehConnection.cs" />
<Compile Include="Indexers\Hounddawgs.cs" /> <Compile Include="Indexers\Hounddawgs.cs" />