diff --git a/src/Jackett.Common/Indexers/iAnon.cs b/src/Jackett.Common/Indexers/iAnon.cs index 266f0fbf9..ed4961db8 100644 --- a/src/Jackett.Common/Indexers/iAnon.cs +++ b/src/Jackett.Common/Indexers/iAnon.cs @@ -32,7 +32,7 @@ namespace Jackett.Common.Indexers cs: cs, supportsFreeleechTokens: true, useApiKey: true, - instructionMessageOptional: "
  1. Go to iAnon's site and open your account settings.
  2. Go to Access Settings tab use the click here to create a new token link.
  3. Give it a name and click Generate.
  4. Finally, copy/paste the token to your Jackett config APIKey input box.
" + instructionMessageOptional: "
  1. Go to iAnon's site and open your account settings.
  2. Go to Access Settings tab use the API Keys: click here to create a new token link.
  3. Give it a name and click Generate.
  4. Finally, copy/paste the token to your Jackett config APIKey input box.
" ) { } @@ -43,19 +43,20 @@ namespace Jackett.Common.Indexers { var caps = new TorznabCapabilities { - BookSearchParams = new List + MusicSearchParams = new List { - BookSearchParam.Q, BookSearchParam.Genre + MusicSearchParam.Q } }; - caps.Categories.AddCategoryMapping(1, TorznabCatType.Audio, "Music"); - caps.Categories.AddCategoryMapping(2, TorznabCatType.PCMac, "Applications"); - caps.Categories.AddCategoryMapping(3, TorznabCatType.BooksEBook, "E-Books"); - caps.Categories.AddCategoryMapping(4, TorznabCatType.AudioAudiobook, "Audiobooks"); - caps.Categories.AddCategoryMapping(5, TorznabCatType.Other, "E-Learning Videos"); - caps.Categories.AddCategoryMapping(6, TorznabCatType.Other, "Comedy"); - caps.Categories.AddCategoryMapping(7, TorznabCatType.BooksComics, "Comics"); + caps.Categories.AddCategoryMapping(1, TorznabCatType.PCMac, "Applications"); + caps.Categories.AddCategoryMapping(2, TorznabCatType.PCGames, "Games"); + caps.Categories.AddCategoryMapping(3, TorznabCatType.PCMobileiOS, "IOS Applications"); + caps.Categories.AddCategoryMapping(4, TorznabCatType.PCMobileiOS, "IOS Games"); + caps.Categories.AddCategoryMapping(5, TorznabCatType.Other, "Graphics"); + caps.Categories.AddCategoryMapping(6, TorznabCatType.Audio, "Audio"); + caps.Categories.AddCategoryMapping(7, TorznabCatType.Other, "Tutorials"); + caps.Categories.AddCategoryMapping(8, TorznabCatType.Other, "Other"); return caps; }