mirror of
https://github.com/Jackett/Jackett
synced 2025-02-24 23:22:46 +00:00
Merge branch 'master' of https://github.com/Jackett/Jackett.git
This commit is contained in:
commit
e8eb4319df
2 changed files with 13 additions and 1 deletions
|
@ -280,6 +280,18 @@ namespace Jackett.Indexers
|
|||
}
|
||||
|
||||
release.Description = release.Description.Replace(" / Free", ""); // Remove Free Tag
|
||||
|
||||
release.Description = release.Description.Replace("Full HD", "1080p");
|
||||
release.Description = release.Description.Replace("/ HD / ", "/ 720p /");
|
||||
release.Description = release.Description.Replace("4K", "2160p");
|
||||
|
||||
int nBarra = release.Title.IndexOf("[");
|
||||
if (nBarra != -1)
|
||||
{
|
||||
release.Title = release.Title.Substring(nBarra + 1);
|
||||
release.Title = release.Title.Replace("]" , "");
|
||||
}
|
||||
|
||||
release.Title += " " + release.Description; // add year and Description to the release Title to add some meaning to it
|
||||
|
||||
// check for previously stripped search terms
|
||||
|
|
|
@ -52,7 +52,7 @@ namespace Jackett.Indexers
|
|||
AddCategoryMapping(72, TorznabCatType.Movies, "Movies");
|
||||
AddCategoryMapping(87, TorznabCatType.Movies3D, "Movie/3D");
|
||||
AddCategoryMapping(77, TorznabCatType.MoviesSD, "Movie/480p");
|
||||
AddCategoryMapping(89, TorznabCatType.MoviesSD, "Movie/BD-R");
|
||||
AddCategoryMapping(89, TorznabCatType.MoviesHD, "Movie/BD-R");
|
||||
AddCategoryMapping(90, TorznabCatType.MoviesSD, "Movie/BD-Rip");
|
||||
AddCategoryMapping(96, TorznabCatType.MoviesSD, "Movie/Cam");
|
||||
AddCategoryMapping(6, TorznabCatType.MoviesDVD, "Movie/DVD-R");
|
||||
|
|
Loading…
Reference in a new issue