diff --git a/README.md b/README.md index 6dea2f063..70c6c4701 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/ * MovCr * MoviesDVDR * MyPornClub - * Newpct (aka: tvsinpagar, descargas2020, torrentlocura, torrentrapid, tumejortorrent, pctnew, etc) + * NewPCT (aka: tvsinpagar, descargas2020, torrentlocura, torrentrapid, tumejortorrent, pctnew, etc) * Newstudio * Nitro * NNTT @@ -114,7 +114,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/ * shokweb * ShowRSS * SkyTorrentsClone - * SolidTorrents + * Solid Torrents * sosulki * sukebei-Pantsu * sukebei.Nyaa.si @@ -189,7 +189,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/ * Metal Tracker * MuziekFrabriek * NetHD (VietTorrent) - * Pornolab + * PornoLab * PussyTorrents * RiperAM * RockBox @@ -401,7 +401,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/ * NetCosmo * NetLab * New Real World - * Norbits + * NorBits * NordicBits (NB) * NORDiCHD * notwhat.cd @@ -468,7 +468,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/ * SportHD * SportsCult * SpringSunday - * SuperBits (SBS) + * Superbits (SBS) * TEKNO3D * TLFBits * TOrrent-tuRK (TORK) diff --git a/src/Jackett.Common/Indexers/AniDub.cs b/src/Jackett.Common/Indexers/AniDUB.cs similarity index 99% rename from src/Jackett.Common/Indexers/AniDub.cs rename to src/Jackett.Common/Indexers/AniDUB.cs index 517123ac7..ae50eb610 100644 --- a/src/Jackett.Common/Indexers/AniDub.cs +++ b/src/Jackett.Common/Indexers/AniDUB.cs @@ -20,14 +20,14 @@ using NLog; namespace Jackett.Common.Indexers { [ExcludeFromCodeCoverage] - internal class AniDub : BaseWebIndexer + internal class AniDUB : BaseWebIndexer { private static readonly Regex EpisodeInfoRegex = new Regex(@"\[(.*?)(?: \(.*?\))? из (.*?)\]$", RegexOptions.Compiled | RegexOptions.IgnoreCase); private static readonly Regex SeasonInfoQueryRegex = new Regex(@"S(\d+)(?:E\d*)", RegexOptions.Compiled | RegexOptions.IgnoreCase); private static readonly Regex SeasonInfoRegex = new Regex(@"(?:(?:TV-)|(?:ТВ-))(\d+)", RegexOptions.Compiled | RegexOptions.IgnoreCase); private static readonly Lazy StripRussianTitleRegex = new Lazy(() => new Regex(@"^.*?\/\s*", RegexOptions.Compiled)); - public AniDub(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) + public AniDUB(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) : base(id: "anidub", name: "AniDUB", description: "AniDUB Tracker is a semi-private russian tracker and release group for anime", diff --git a/src/Jackett.Common/Indexers/BitHdtv.cs b/src/Jackett.Common/Indexers/BitHDTV.cs similarity index 98% rename from src/Jackett.Common/Indexers/BitHdtv.cs rename to src/Jackett.Common/Indexers/BitHDTV.cs index 9fea85c13..6ef7278bc 100644 --- a/src/Jackett.Common/Indexers/BitHdtv.cs +++ b/src/Jackett.Common/Indexers/BitHDTV.cs @@ -19,7 +19,7 @@ using NLog; namespace Jackett.Common.Indexers { [ExcludeFromCodeCoverage] - public class BitHdtv : BaseWebIndexer + public class BitHDTV : BaseWebIndexer { private string LoginUrl => SiteLink + "login.php"; private string TakeLoginUrl => SiteLink + "takelogin.php"; @@ -27,7 +27,7 @@ namespace Jackett.Common.Indexers private new ConfigurationDataRecaptchaLogin configData => (ConfigurationDataRecaptchaLogin)base.configData; - public BitHdtv(IIndexerConfigurationService configService, WebClient w, Logger l, IProtectionService ps) + public BitHDTV(IIndexerConfigurationService configService, WebClient w, Logger l, IProtectionService ps) : base(id: "bithdtv", name: "BIT-HDTV", description: "BIT-HDTV - Home of High Definition", diff --git a/src/Jackett.Common/Indexers/cgpeers.cs b/src/Jackett.Common/Indexers/CGPeers.cs similarity index 100% rename from src/Jackett.Common/Indexers/cgpeers.cs rename to src/Jackett.Common/Indexers/CGPeers.cs diff --git a/src/Jackett.Common/Indexers/Corsarored.cs b/src/Jackett.Common/Indexers/CorsaroRed.cs similarity index 98% rename from src/Jackett.Common/Indexers/Corsarored.cs rename to src/Jackett.Common/Indexers/CorsaroRed.cs index 0d38f282a..59563a24e 100644 --- a/src/Jackett.Common/Indexers/Corsarored.cs +++ b/src/Jackett.Common/Indexers/CorsaroRed.cs @@ -15,7 +15,7 @@ using NLog; namespace Jackett.Common.Indexers { [ExcludeFromCodeCoverage] - public class Corsarored : BaseWebIndexer + public class CorsaroRed : BaseWebIndexer { private const int MaxSearchPageLimit = 4; private const int MaxResultsPerPage = 25; @@ -45,7 +45,7 @@ namespace Jackett.Common.Indexers ["Content-Type"] = "application/json" }; - public Corsarored(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) + public CorsaroRed(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) : base(id: "corsarored", name: "Corsaro.red", description: "Italian Torrents", diff --git a/src/Jackett.Common/Indexers/digitalcore.cs b/src/Jackett.Common/Indexers/DigitalCore.cs similarity index 98% rename from src/Jackett.Common/Indexers/digitalcore.cs rename to src/Jackett.Common/Indexers/DigitalCore.cs index 37e29bdca..3844fb11c 100644 --- a/src/Jackett.Common/Indexers/digitalcore.cs +++ b/src/Jackett.Common/Indexers/DigitalCore.cs @@ -18,7 +18,7 @@ using NLog; namespace Jackett.Common.Indexers { [ExcludeFromCodeCoverage] - public class Digitalcore : BaseWebIndexer + public class DigitalCore : BaseWebIndexer { private string SearchUrl => SiteLink + "api/v1/torrents"; private string LoginUrl => SiteLink + "api/v1/auth"; @@ -29,7 +29,7 @@ namespace Jackett.Common.Indexers set => base.configData = value; } - public Digitalcore(IIndexerConfigurationService configService, WebClient w, Logger l, IProtectionService ps) + public DigitalCore(IIndexerConfigurationService configService, WebClient w, Logger l, IProtectionService ps) : base(id: "digitalcore", name: "DigitalCore", description: "DigitalCore is a Private Torrent Tracker for MOVIES / TV / GENERAL", diff --git a/src/Jackett.Common/Indexers/myAmity.cs b/src/Jackett.Common/Indexers/MyAmity.cs similarity index 98% rename from src/Jackett.Common/Indexers/myAmity.cs rename to src/Jackett.Common/Indexers/MyAmity.cs index 00c3fc49c..1f2345804 100644 --- a/src/Jackett.Common/Indexers/myAmity.cs +++ b/src/Jackett.Common/Indexers/MyAmity.cs @@ -17,7 +17,7 @@ using NLog; namespace Jackett.Common.Indexers { [ExcludeFromCodeCoverage] - public class myAmity : BaseWebIndexer + public class MyAmity : BaseWebIndexer { private string LoginUrl => SiteLink + "account-login.php"; private string BrowseUrl => SiteLink + "torrents-search.php"; @@ -28,7 +28,7 @@ namespace Jackett.Common.Indexers set => base.configData = value; } - public myAmity(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) + public MyAmity(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) : base(id: "myamity", name: "myAmity", description: "A German general tracker.", diff --git a/src/Jackett.Common/Indexers/MyAnonamouse.cs b/src/Jackett.Common/Indexers/MyAnonamouse.cs index 8b5a4759b..e48116442 100644 --- a/src/Jackett.Common/Indexers/MyAnonamouse.cs +++ b/src/Jackett.Common/Indexers/MyAnonamouse.cs @@ -18,7 +18,7 @@ using NLog; namespace Jackett.Common.Indexers { [ExcludeFromCodeCoverage] - public class Myanonamouse : BaseWebIndexer + public class MyAnonamouse : BaseWebIndexer { private string LoginUrl => SiteLink + "takelogin.php"; private string SearchUrl => SiteLink + "tor/js/loadSearchJSONbasic.php"; @@ -29,7 +29,7 @@ namespace Jackett.Common.Indexers set => base.configData = value; } - public Myanonamouse(IIndexerConfigurationService configService, WebClient c, Logger l, IProtectionService ps) + public MyAnonamouse(IIndexerConfigurationService configService, WebClient c, Logger l, IProtectionService ps) : base(id: "myanonamouse", name: "MyAnonamouse", description: "Friendliness, Warmth and Sharing", diff --git a/src/Jackett.Common/Indexers/TransmitheNet.cs b/src/Jackett.Common/Indexers/Nebulance.cs similarity index 96% rename from src/Jackett.Common/Indexers/TransmitheNet.cs rename to src/Jackett.Common/Indexers/Nebulance.cs index 19b6eddb2..65c62fc57 100644 --- a/src/Jackett.Common/Indexers/TransmitheNet.cs +++ b/src/Jackett.Common/Indexers/Nebulance.cs @@ -17,7 +17,7 @@ using NLog; namespace Jackett.Common.Indexers { [ExcludeFromCodeCoverage] - public class TransmitheNet : BaseWebIndexer + public class Nebulance : BaseWebIndexer { private string LoginUrl => SiteLink + "login.php"; private string SearchUrl => SiteLink + "torrents.php?action=basic&order_by=time&order_way=desc&search_type=0&taglist=&tags_type=0"; @@ -28,10 +28,10 @@ namespace Jackett.Common.Indexers set => base.configData = value; } - public TransmitheNet(IIndexerConfigurationService configService, Utils.Clients.WebClient c, Logger l, IProtectionService ps) + public Nebulance(IIndexerConfigurationService configService, Utils.Clients.WebClient c, Logger l, IProtectionService ps) : base(id: "transmithenet", name: "Nebulance", - description: " At Nebulance we will change the way you think about TV", + description: "At Nebulance we will change the way you think about TV", link: "https://nebulance.io/", caps: TorznabUtil.CreateDefaultTorznabTVCaps(), configService: configService, diff --git a/src/Jackett.Common/Indexers/Newpct.cs b/src/Jackett.Common/Indexers/NewPCT.cs similarity index 99% rename from src/Jackett.Common/Indexers/Newpct.cs rename to src/Jackett.Common/Indexers/NewPCT.cs index a7e6924d3..480881d6a 100644 --- a/src/Jackett.Common/Indexers/Newpct.cs +++ b/src/Jackett.Common/Indexers/NewPCT.cs @@ -18,7 +18,7 @@ using static Jackett.Common.Models.IndexerConfig.ConfigurationData; namespace Jackett.Common.Indexers { [ExcludeFromCodeCoverage] - public class Newpct : BaseCachingWebIndexer + public class NewPCT : BaseCachingWebIndexer { private enum ReleaseType { @@ -115,10 +115,10 @@ namespace Jackett.Common.Indexers "http://pctnew.com/", }; - public Newpct(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) + public NewPCT(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) : base(id: "newpct", - name: "Newpct", - description: "Newpct - Descargar peliculas, series y estrenos torrent gratis", + name: "NewPCT", + description: "NewPCT - Descargar peliculas, series y estrenos torrent gratis", link: "https://descargas2020.org/", caps: new TorznabCapabilities(TorznabCatType.TV, TorznabCatType.TVSD, diff --git a/src/Jackett.Common/Indexers/Norbits.cs b/src/Jackett.Common/Indexers/NorBits.cs similarity index 99% rename from src/Jackett.Common/Indexers/Norbits.cs rename to src/Jackett.Common/Indexers/NorBits.cs index 2e6468cd8..9439d9839 100644 --- a/src/Jackett.Common/Indexers/Norbits.cs +++ b/src/Jackett.Common/Indexers/NorBits.cs @@ -25,7 +25,7 @@ using NLog; namespace Jackett.Common.Indexers { [ExcludeFromCodeCoverage] - public class Norbits : BaseCachingWebIndexer + public class NorBits : BaseCachingWebIndexer { private string LoginUrl => SiteLink + "login.php"; private string LoginCheckUrl => SiteLink + "takelogin.php"; @@ -42,10 +42,10 @@ namespace Jackett.Common.Indexers private ConfigurationDataNorbits ConfigData => (ConfigurationDataNorbits)configData; - public Norbits(IIndexerConfigurationService configService, Utils.Clients.WebClient w, Logger l, IProtectionService ps) + public NorBits(IIndexerConfigurationService configService, Utils.Clients.WebClient w, Logger l, IProtectionService ps) : base(id: "norbits", - name: "Norbits", - description: "Norbits is a Norwegian Private site for MOVIES / TV / GENERAL", + name: "NorBits", + description: "NorBits is a Norwegian Private site for MOVIES / TV / GENERAL", link: "https://norbits.net/", caps: new TorznabCapabilities { diff --git a/src/Jackett.Common/Indexers/Nordicbits.cs b/src/Jackett.Common/Indexers/NordicBits.cs similarity index 99% rename from src/Jackett.Common/Indexers/Nordicbits.cs rename to src/Jackett.Common/Indexers/NordicBits.cs index 56b73b346..ecc4241dd 100644 --- a/src/Jackett.Common/Indexers/Nordicbits.cs +++ b/src/Jackett.Common/Indexers/NordicBits.cs @@ -24,7 +24,7 @@ using NLog; namespace Jackett.Common.Indexers { [ExcludeFromCodeCoverage] - public class Nordicbits : BaseCachingWebIndexer + public class NordicBits : BaseCachingWebIndexer { private string LoginUrl => SiteLink + "login.php"; private string LoginCheckUrl => SiteLink + "takelogin.php"; @@ -41,10 +41,10 @@ namespace Jackett.Common.Indexers private ConfigurationDataNordicbits ConfigData => (ConfigurationDataNordicbits)configData; - public Nordicbits(IIndexerConfigurationService configService, Utils.Clients.WebClient w, Logger l, IProtectionService ps) + public NordicBits(IIndexerConfigurationService configService, Utils.Clients.WebClient w, Logger l, IProtectionService ps) : base(id: "nordicbits", - name: "Nordicbits", - description: "Nordicbits is a Danish Private site for MOVIES / TV / GENERAL", + name: "NordicBits", + description: "NordicBits is a Danish Private site for MOVIES / TV / GENERAL", link: "https://nordicb.org/", caps: new TorznabCapabilities { diff --git a/src/Jackett.Common/Indexers/notwhatcd.cs b/src/Jackett.Common/Indexers/NotWhatCD.cs similarity index 93% rename from src/Jackett.Common/Indexers/notwhatcd.cs rename to src/Jackett.Common/Indexers/NotWhatCD.cs index 3b934a67a..125d52ae6 100644 --- a/src/Jackett.Common/Indexers/notwhatcd.cs +++ b/src/Jackett.Common/Indexers/NotWhatCD.cs @@ -9,9 +9,9 @@ using NLog; namespace Jackett.Common.Indexers { [ExcludeFromCodeCoverage] - public class notwhatcd : GazelleTracker + public class NotWhatCD : GazelleTracker { - public notwhatcd(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) + public NotWhatCD(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) : base(id: "notwhatcd", name: "notwhat.cd", description: "A music tracker", diff --git a/src/Jackett.Common/Indexers/PiXELHD.cs b/src/Jackett.Common/Indexers/PixelHD.cs similarity index 98% rename from src/Jackett.Common/Indexers/PiXELHD.cs rename to src/Jackett.Common/Indexers/PixelHD.cs index b7c7c1f1a..9a70effd0 100644 --- a/src/Jackett.Common/Indexers/PiXELHD.cs +++ b/src/Jackett.Common/Indexers/PixelHD.cs @@ -17,7 +17,7 @@ using NLog; namespace Jackett.Common.Indexers { [ExcludeFromCodeCoverage] - public class PiXELHD : BaseWebIndexer + public class PixelHD : BaseWebIndexer { private string LoginUrl => SiteLink + "login.php"; private string BrowseUrl => SiteLink + "torrents.php"; @@ -32,7 +32,7 @@ namespace Jackett.Common.Indexers private string input_username = null; private string input_password = null; - public PiXELHD(IIndexerConfigurationService configService, WebClient webClient, Logger logger, IProtectionService protectionService) + public PixelHD(IIndexerConfigurationService configService, WebClient webClient, Logger logger, IProtectionService protectionService) : base(id: "pixelhd", name: "PiXELHD", description: "PixelHD (PxHD) is a Private Torrent Tracker for HD .MP4 MOVIES / TV", diff --git a/src/Jackett.Common/Indexers/pornolab.cs b/src/Jackett.Common/Indexers/PornoLab.cs similarity index 99% rename from src/Jackett.Common/Indexers/pornolab.cs rename to src/Jackett.Common/Indexers/PornoLab.cs index 5efb22ffe..80a6cec14 100644 --- a/src/Jackett.Common/Indexers/pornolab.cs +++ b/src/Jackett.Common/Indexers/PornoLab.cs @@ -18,7 +18,7 @@ using NLog; namespace Jackett.Common.Indexers { [ExcludeFromCodeCoverage] - public class Pornolab : BaseWebIndexer + public class PornoLab : BaseWebIndexer { private string LoginUrl => SiteLink + "forum/login.php"; private string SearchUrl => SiteLink + "forum/tracker.php"; @@ -33,10 +33,10 @@ namespace Jackett.Common.Indexers set => base.configData = value; } - public Pornolab(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) + public PornoLab(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) : base(id: "pornolab", - name: "Pornolab", - description: "Pornolab is a Semi-Private Russian site for Adult content", + name: "PornoLab", + description: "PornoLab is a Semi-Private Russian site for Adult content", link: "https://pornolab.net/", caps: new TorznabCapabilities(), configService: configService, diff --git a/src/Jackett.Common/Indexers/Pretome.cs b/src/Jackett.Common/Indexers/PreToMe.cs similarity index 99% rename from src/Jackett.Common/Indexers/Pretome.cs rename to src/Jackett.Common/Indexers/PreToMe.cs index 89c48c23c..89902cba6 100644 --- a/src/Jackett.Common/Indexers/Pretome.cs +++ b/src/Jackett.Common/Indexers/PreToMe.cs @@ -17,13 +17,13 @@ using NLog; namespace Jackett.Common.Indexers { [ExcludeFromCodeCoverage] - public class Pretome : BaseWebIndexer + public class PreToMe : BaseWebIndexer { private string LoginUrl => SiteLink + "takelogin.php"; private string SearchUrl => SiteLink + "browse.php"; private new ConfigurationDataPinNumber configData => (ConfigurationDataPinNumber)base.configData; - public Pretome(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) + public PreToMe(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) : base(id: "pretome", name: "PreToMe", description: "BitTorrent site for High Quality, High Definition (HD) movies and TV Shows", diff --git a/src/Jackett.Common/Indexers/Psytorrents.cs b/src/Jackett.Common/Indexers/PsyTorrents.cs similarity index 91% rename from src/Jackett.Common/Indexers/Psytorrents.cs rename to src/Jackett.Common/Indexers/PsyTorrents.cs index 9236547bd..36df4b691 100644 --- a/src/Jackett.Common/Indexers/Psytorrents.cs +++ b/src/Jackett.Common/Indexers/PsyTorrents.cs @@ -9,9 +9,9 @@ using NLog; namespace Jackett.Common.Indexers { [ExcludeFromCodeCoverage] - public class Psytorrents : GazelleTracker + public class PsyTorrents : GazelleTracker { - public Psytorrents(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) + public PsyTorrents(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) : base(id: "psytorrents", name: "Psytorrents", description: "Psytorrents (PSY) is a Private Torrent Tracker for ELECTRONIC MUSIC", diff --git a/src/Jackett.Common/Indexers/Rarbg.cs b/src/Jackett.Common/Indexers/RarBG.cs similarity index 99% rename from src/Jackett.Common/Indexers/Rarbg.cs rename to src/Jackett.Common/Indexers/RarBG.cs index c0247093e..9e360964f 100644 --- a/src/Jackett.Common/Indexers/Rarbg.cs +++ b/src/Jackett.Common/Indexers/RarBG.cs @@ -18,7 +18,7 @@ using static Jackett.Common.Models.IndexerConfig.ConfigurationData; namespace Jackett.Common.Indexers { [ExcludeFromCodeCoverage] - public class Rarbg : BaseWebIndexer + public class RarBG : BaseWebIndexer { // API doc: https://torrentapi.org/apidocs_v2.txt?app_id=Jackett private const string ApiEndpoint = "https://torrentapi.org/pubapi_v2.php"; @@ -30,7 +30,7 @@ namespace Jackett.Common.Indexers private new ConfigurationData configData => base.configData; - public Rarbg(IIndexerConfigurationService configService, Utils.Clients.WebClient wc, Logger l, IProtectionService ps) + public RarBG(IIndexerConfigurationService configService, Utils.Clients.WebClient wc, Logger l, IProtectionService ps) : base(id: "rarbg", name: "RARBG", description: "RARBG is a Public torrent site for MOVIES / TV / GENERAL", diff --git a/src/Jackett.Common/Indexers/rutracker.cs b/src/Jackett.Common/Indexers/RuTracker.cs similarity index 100% rename from src/Jackett.Common/Indexers/rutracker.cs rename to src/Jackett.Common/Indexers/RuTracker.cs diff --git a/src/Jackett.Common/Indexers/SolidTorrents.cs b/src/Jackett.Common/Indexers/SolidTorrents.cs index 784f4725c..1d466f592 100644 --- a/src/Jackett.Common/Indexers/SolidTorrents.cs +++ b/src/Jackett.Common/Indexers/SolidTorrents.cs @@ -38,7 +38,7 @@ namespace Jackett.Common.Indexers public SolidTorrents(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) : base(id: "solidtorrents", name: "Solid Torrents", - description: "SolidTorrents is a Public torrent meta-search engine", + description: "Solid Torrents is a Public torrent meta-search engine", link: "https://solidtorrents.net/", caps: new TorznabCapabilities(), configService: configService, diff --git a/src/Jackett.Common/Indexers/Superbits.cs b/src/Jackett.Common/Indexers/SuperBits.cs similarity index 98% rename from src/Jackett.Common/Indexers/Superbits.cs rename to src/Jackett.Common/Indexers/SuperBits.cs index 7942294cc..f8608e387 100644 --- a/src/Jackett.Common/Indexers/Superbits.cs +++ b/src/Jackett.Common/Indexers/SuperBits.cs @@ -18,7 +18,7 @@ using NLog; namespace Jackett.Common.Indexers { [ExcludeFromCodeCoverage] - public class Superbits : BaseWebIndexer + public class SuperBits : BaseWebIndexer { private string SearchUrl => SiteLink + "api/v1/torrents"; private string LoginUrl => SiteLink + "api/v1/auth"; @@ -29,10 +29,10 @@ namespace Jackett.Common.Indexers set => base.configData = value; } - public Superbits(IIndexerConfigurationService configService, WebClient w, Logger l, IProtectionService ps) + public SuperBits(IIndexerConfigurationService configService, WebClient w, Logger l, IProtectionService ps) : base(id: "superbits", name: "Superbits", - description: "SuperBits is a SWEDISH Private Torrent Tracker for MOVIES / TV / GENERAL", + description: "Superbits is a SWEDISH Private Torrent Tracker for MOVIES / TV / GENERAL", link: "https://superbits.org/", caps: new TorznabCapabilities { diff --git a/src/Jackett.Common/Indexers/TVstore.cs b/src/Jackett.Common/Indexers/TVStore.cs similarity index 99% rename from src/Jackett.Common/Indexers/TVstore.cs rename to src/Jackett.Common/Indexers/TVStore.cs index 89ad9a3d6..7c301f28a 100644 --- a/src/Jackett.Common/Indexers/TVstore.cs +++ b/src/Jackett.Common/Indexers/TVStore.cs @@ -18,7 +18,7 @@ using NLog; namespace Jackett.Common.Indexers { [ExcludeFromCodeCoverage] - public class TVstore : BaseWebIndexer + public class TVStore : BaseWebIndexer { private readonly Dictionary _imdbLookup = new Dictionary(); // _imdbLookup[internalId] = imdbId @@ -31,7 +31,7 @@ namespace Jackett.Common.Indexers private readonly Regex _seriesInfoSearchRegex = new Regex( @"S(?\d{1,3})(?:E(?\d{1,3}))?$", RegexOptions.IgnoreCase); - public TVstore(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) : + public TVStore(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) : base(id: "tvstore", name: "TV Store", description: "TV Store is a HUNGARIAN Private Torrent Tracker for TV", diff --git a/src/Jackett.Common/Indexers/toloka.cs b/src/Jackett.Common/Indexers/Toloka.cs similarity index 100% rename from src/Jackett.Common/Indexers/toloka.cs rename to src/Jackett.Common/Indexers/Toloka.cs diff --git a/src/Jackett.Common/Indexers/Torrentech.cs b/src/Jackett.Common/Indexers/TorrenTech.cs similarity index 98% rename from src/Jackett.Common/Indexers/Torrentech.cs rename to src/Jackett.Common/Indexers/TorrenTech.cs index d25ff306d..2535743a6 100644 --- a/src/Jackett.Common/Indexers/Torrentech.cs +++ b/src/Jackett.Common/Indexers/TorrenTech.cs @@ -20,7 +20,7 @@ using NLog; namespace Jackett.Common.Indexers { [ExcludeFromCodeCoverage] - public class Torrentech : BaseWebIndexer + public class TorrenTech : BaseWebIndexer { private string LoginUrl => SiteLink + "index.php?act=Login&CODE=01&CookieDate=1"; private string IndexUrl => SiteLink + "index.php"; @@ -31,10 +31,10 @@ namespace Jackett.Common.Indexers set => base.configData = value; } - public Torrentech(IIndexerConfigurationService configService, Utils.Clients.WebClient wc, Logger l, IProtectionService ps) + public TorrenTech(IIndexerConfigurationService configService, Utils.Clients.WebClient wc, Logger l, IProtectionService ps) : base(id: "torrentech", name: "Torrentech", - description: "TorrenTech (TTH) is a Private Torrent Tracker for ELECTRONIC MUSIC", + description: "Torrentech (TTH) is a Private Torrent Tracker for ELECTRONIC MUSIC", link: "https://www.torrentech.org/", caps: TorznabUtil.CreateDefaultTorznabTVCaps(), configService: configService, diff --git a/src/Jackett.Common/Indexers/Torrentseeds.cs b/src/Jackett.Common/Indexers/TorrentSeeds.cs similarity index 100% rename from src/Jackett.Common/Indexers/Torrentseeds.cs rename to src/Jackett.Common/Indexers/TorrentSeeds.cs diff --git a/src/Jackett.Common/Indexers/yts.cs b/src/Jackett.Common/Indexers/YTS.cs similarity index 98% rename from src/Jackett.Common/Indexers/yts.cs rename to src/Jackett.Common/Indexers/YTS.cs index 8e82b40d2..c3b75b884 100644 --- a/src/Jackett.Common/Indexers/yts.cs +++ b/src/Jackett.Common/Indexers/YTS.cs @@ -17,7 +17,7 @@ using NLog; namespace Jackett.Common.Indexers { [ExcludeFromCodeCoverage] - public class Yts : BaseWebIndexer + public class YTS : BaseWebIndexer { public override string[] LegacySiteLinks { get; protected set; } = new string[] { "https://yts.ag/", @@ -33,7 +33,7 @@ namespace Jackett.Common.Indexers set => base.configData = value; } - public Yts(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) + public YTS(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) : base(id: "yts", name: "YTS", description: "YTS is a Public torrent site specialising in HD movies of small size",