mirror of
https://github.com/Jackett/Jackett
synced 2024-12-27 02:09:24 +00:00
add HD-Forever indexer
This commit is contained in:
parent
c8a2482fc1
commit
213f8114ba
3 changed files with 30 additions and 1 deletions
|
@ -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" />
|
||||||
|
|
Loading…
Reference in a new issue