mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
Merge branch 'master' of https://github.com/Jackett/Jackett.git
This commit is contained in:
@@ -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<EFBFBD>-BT
|
* Mononoké-BT
|
||||||
* MoreThanTV
|
* MoreThanTV
|
||||||
* MyAnonamouse
|
* MyAnonamouse
|
||||||
* myAmity
|
* myAmity
|
||||||
|
@@ -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,
|
@@ -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" />
|
||||||
|
Reference in New Issue
Block a user