mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
add HD-Forever indexer
This commit is contained in:
@@ -108,10 +108,11 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
|
|||||||
* Gormogon
|
* Gormogon
|
||||||
* Greek Team
|
* Greek Team
|
||||||
* Hardbay
|
* Hardbay
|
||||||
* HD4Free
|
* HD-Forever
|
||||||
* HD-Space
|
* HD-Space
|
||||||
* HD-Torrents
|
* HD-Torrents
|
||||||
* HD-Bits.com
|
* HD-Bits.com
|
||||||
|
* HD4Free
|
||||||
* HDBits
|
* HDBits
|
||||||
* HDChina
|
* HDChina
|
||||||
* HDClub
|
* HDClub
|
||||||
|
27
src/Jackett/Indexers/HDForever.cs
Normal file
27
src/Jackett/Indexers/HDForever.cs
Normal 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");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@@ -186,6 +186,7 @@
|
|||||||
<Compile Include="Indexers\Rarbg.cs" />
|
<Compile Include="Indexers\Rarbg.cs" />
|
||||||
<Compile Include="Indexers\Psytorrents.cs" />
|
<Compile Include="Indexers\Psytorrents.cs" />
|
||||||
<Compile Include="Indexers\BrokenStones.cs" />
|
<Compile Include="Indexers\BrokenStones.cs" />
|
||||||
|
<Compile Include="Indexers\HDForever.cs" />
|
||||||
<Compile Include="Indexers\ShowRSS.cs" />
|
<Compile Include="Indexers\ShowRSS.cs" />
|
||||||
<Compile Include="Indexers\Superbits.cs" />
|
<Compile Include="Indexers\Superbits.cs" />
|
||||||
<Compile Include="Indexers\rutracker.cs" />
|
<Compile Include="Indexers\rutracker.cs" />
|
||||||
|
Reference in New Issue
Block a user