1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2025-02-24 23:22:46 +00:00

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

View file

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

View file

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