diff --git a/README.md b/README.md index 94908766f..aa4d0c765 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/Jackett/Indexers/HDForever.cs b/src/Jackett/Indexers/HDForever.cs new file mode 100644 index 000000000..a2807a5ba --- /dev/null +++ b/src/Jackett/Indexers/HDForever.cs @@ -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"); + } + } +} \ No newline at end of file diff --git a/src/Jackett/Jackett.csproj b/src/Jackett/Jackett.csproj index 6b9ae5091..7d621fb23 100644 --- a/src/Jackett/Jackett.csproj +++ b/src/Jackett/Jackett.csproj @@ -186,6 +186,7 @@ +