From 864eb6f1cd921bb9bde35dc5bc84c99d600a7e6c Mon Sep 17 00:00:00 2001 From: Senan Kelly Date: Mon, 12 Nov 2018 14:39:05 +0000 Subject: [PATCH] move from apollo to orpheus (#4149) * move from apollo to orpheus apollo is now https://orpheus.network/ this is not tested, but I imagine the catergories are the same * fix constructor * Update README.md --- README.md | 2 +- src/Jackett.Common/Indexers/{Apollo.cs => Orpheus.cs} | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) rename src/Jackett.Common/Indexers/{Apollo.cs => Orpheus.cs} (81%) diff --git a/README.md b/README.md index a1bc29602..d31d11b4f 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,6 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/ * AnimeTorrents (AnT) * Anthelion (was TehConnection.me) * AOX - * Apollo (XANAX) * ArabaFenice * Arche Torrent * AsianDVDClub @@ -224,6 +223,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/ * NordicBits (NB) * Norbits * notwhat.cd + * Orpheus * Ourbits * Passione Torrent * PassThePopcorn (PTP) diff --git a/src/Jackett.Common/Indexers/Apollo.cs b/src/Jackett.Common/Indexers/Orpheus.cs similarity index 81% rename from src/Jackett.Common/Indexers/Apollo.cs rename to src/Jackett.Common/Indexers/Orpheus.cs index d0ba91169..492a028de 100644 --- a/src/Jackett.Common/Indexers/Apollo.cs +++ b/src/Jackett.Common/Indexers/Orpheus.cs @@ -7,12 +7,12 @@ using NLog; namespace Jackett.Common.Indexers { - public class Apollo : GazelleTracker + public class Orpheus : GazelleTracker { - public Apollo(IIndexerConfigurationService configService, WebClient webClient, Logger logger, IProtectionService protectionService) - : base(name: "Apollo", + public Orpheus(IIndexerConfigurationService configService, WebClient webClient, Logger logger, IProtectionService protectionService) + : base(name: "Orpheus", desc: "A music tracker", - link: "https://apollo.rip/", + link: "https://orpheus.network/", configService: configService, logger: logger, protectionService: protectionService, @@ -33,4 +33,4 @@ namespace Jackett.Common.Indexers AddCategoryMapping(7, TorznabCatType.Books, "Comics"); } } -} \ No newline at end of file +}