1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2024-12-26 09:48:37 +00:00

add HD-Forever indexer

This commit is contained in:
kaso17 2017-05-20 17:08:10 +02:00
parent c8a2482fc1
commit 213f8114ba
3 changed files with 30 additions and 1 deletions

View file

@ -108,10 +108,11 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
* Gormogon
* Greek Team
* Hardbay
* HD4Free
* HD-Forever
* HD-Space
* HD-Torrents
* HD-Bits.com
* HD4Free
* HDBits
* HDChina
* HDClub

View file

@ -0,0 +1,27 @@
using Jackett.Models;
using NLog;
using Jackett.Services;
using Jackett.Utils.Clients;
using Jackett.Indexers.Abstract;
namespace Jackett.Indexers
{
public class HDForever : GazelleTracker, IIndexer
{
public HDForever(IIndexerManagerService indexerManager, IWebClient webClient, Logger logger, IProtectionService protectionService)
: base(name: "HD-Forever",
desc: null,
link: "https://hdf.world/",
indexerManager: indexerManager,
logger: logger,
protectionService: protectionService,
webClient: webClient
)
{
Language = "fr-fr";
Type = "private";
AddCategoryMapping(1, TorznabCatType.MoviesHD, "Movies/HD");
}
}
}

View file

@ -186,6 +186,7 @@
<Compile Include="Indexers\Rarbg.cs" />
<Compile Include="Indexers\Psytorrents.cs" />
<Compile Include="Indexers\BrokenStones.cs" />
<Compile Include="Indexers\HDForever.cs" />
<Compile Include="Indexers\ShowRSS.cs" />
<Compile Include="Indexers\Superbits.cs" />
<Compile Include="Indexers\rutracker.cs" />