mirror of
https://github.com/Jackett/Jackett
synced 2024-12-27 02:09:24 +00:00
notwhat.cd: gone. removed. resolves #818
This commit is contained in:
parent
7dcb351a21
commit
89d02aaeb9
2 changed files with 0 additions and 59 deletions
|
@ -424,7 +424,6 @@ A third-party Golang SDK for Jackett is available from [webtor-io/go-jackett](ht
|
||||||
* NetCosmo
|
* NetCosmo
|
||||||
* NetLab
|
* NetLab
|
||||||
* NorBits
|
* NorBits
|
||||||
* notwhat.cd
|
|
||||||
* oMg[WtF]trackr
|
* oMg[WtF]trackr
|
||||||
* Orpheus
|
* Orpheus
|
||||||
* OshenPT
|
* OshenPT
|
||||||
|
|
|
@ -1,58 +0,0 @@
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Diagnostics.CodeAnalysis;
|
|
||||||
using Jackett.Common.Indexers.Abstract;
|
|
||||||
using Jackett.Common.Models;
|
|
||||||
using Jackett.Common.Services.Interfaces;
|
|
||||||
using Jackett.Common.Utils.Clients;
|
|
||||||
using NLog;
|
|
||||||
|
|
||||||
namespace Jackett.Common.Indexers
|
|
||||||
{
|
|
||||||
[ExcludeFromCodeCoverage]
|
|
||||||
public class NotWhatCD : GazelleTracker
|
|
||||||
{
|
|
||||||
public NotWhatCD(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps,
|
|
||||||
ICacheService cs)
|
|
||||||
: base(id: "notwhatcd",
|
|
||||||
name: "notwhat.cd",
|
|
||||||
description: "A music tracker",
|
|
||||||
link: "https://notwhat.cd/",
|
|
||||||
caps: new TorznabCapabilities
|
|
||||||
{
|
|
||||||
TvSearchParams = new List<TvSearchParam>
|
|
||||||
{
|
|
||||||
TvSearchParam.Q, TvSearchParam.Season, TvSearchParam.Ep
|
|
||||||
},
|
|
||||||
MovieSearchParams = new List<MovieSearchParam>
|
|
||||||
{
|
|
||||||
MovieSearchParam.Q
|
|
||||||
},
|
|
||||||
MusicSearchParams = new List<MusicSearchParam>
|
|
||||||
{
|
|
||||||
MusicSearchParam.Q, MusicSearchParam.Album, MusicSearchParam.Artist, MusicSearchParam.Label, MusicSearchParam.Year
|
|
||||||
},
|
|
||||||
BookSearchParams = new List<BookSearchParam>
|
|
||||||
{
|
|
||||||
BookSearchParam.Q
|
|
||||||
}
|
|
||||||
},
|
|
||||||
configService: configService,
|
|
||||||
client: wc,
|
|
||||||
logger: l,
|
|
||||||
p: ps,
|
|
||||||
cs: cs,
|
|
||||||
supportsFreeleechTokens: true)
|
|
||||||
{
|
|
||||||
Language = "en-us";
|
|
||||||
Type = "private";
|
|
||||||
|
|
||||||
AddCategoryMapping(1, TorznabCatType.Audio, "Music");
|
|
||||||
AddCategoryMapping(2, TorznabCatType.PC, "Applications");
|
|
||||||
AddCategoryMapping(3, TorznabCatType.Books, "E-Books");
|
|
||||||
AddCategoryMapping(4, TorznabCatType.AudioAudiobook, "Audiobooks");
|
|
||||||
AddCategoryMapping(5, TorznabCatType.Movies, "E-Learning Videos");
|
|
||||||
AddCategoryMapping(6, TorznabCatType.TV, "Comedy");
|
|
||||||
AddCategoryMapping(7, TorznabCatType.Books, "Comics");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in a new issue