From 3538fdfaf722e66abcee3e324e3484a1970e1b58 Mon Sep 17 00:00:00 2001 From: kaso17 Date: Fri, 15 Jun 2018 11:58:29 +0200 Subject: [PATCH] Synthesiz3r: removed (dead) --- README.md | 1 - src/Jackett.Common/Indexers/Synthesiz3r.cs | 36 ---------------------- 2 files changed, 37 deletions(-) delete mode 100644 src/Jackett.Common/Indexers/Synthesiz3r.cs diff --git a/README.md b/README.md index d17518584..82d6dae9a 100644 --- a/README.md +++ b/README.md @@ -241,7 +241,6 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/ * SportsCult * SportHD * Superbits - * Synthesiz3r * Tasmanit * TBPlus * TenYardTracker diff --git a/src/Jackett.Common/Indexers/Synthesiz3r.cs b/src/Jackett.Common/Indexers/Synthesiz3r.cs deleted file mode 100644 index d1ee4332f..000000000 --- a/src/Jackett.Common/Indexers/Synthesiz3r.cs +++ /dev/null @@ -1,36 +0,0 @@ -using System.Collections.Generic; -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 -{ - public class Synthesiz3r : GazelleTracker - { - public Synthesiz3r(IIndexerConfigurationService configService, WebClient webClient, Logger logger, IProtectionService protectionService) - : base(name: "Synthesiz3r", - desc: "Synthesiz3r (ST3) is a Private Torrent Tracker for ELECTRONIC MUSIC", - link: "https://synthesiz3r.com/", - configService: configService, - logger: logger, - protectionService: protectionService, - webClient: webClient, - supportsFreeleechTokens: true - ) - { - Language = "en-us"; - Type = "private"; - TorznabCaps.SupportedMusicSearchParamsList = new List() { "q", "album", "artist", "label", "year" }; - - 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"); - } - } -}