RARBG Advanced Filters

Additional quality of life filters: - Show or hide category icons; - Show or hide torrent thumbnails; - Show or hide movie and tv filters (Removes torrents with KORSUB and 720p); - Show or hide porn; - search for movies and tv shows by genre - Filter based on minimum IMDB rating;

< Feedback on RARBG Advanced Filters

Review: Good - script works

§
Posted: 2020-02-06

Option for hide scene (uploader) release

Hi Kxmode, I made a personal fork to hide the uploader "scene" thus leaving only real scene releases. I post it here in case it would be of use to somebody. I really appreciate your work, good job mate.

KxmodeAuthor
§
Posted: 2020-05-09
Edited: 2020-05-09

Hi. I checked out your script. There are so many formatting changes that it is hard to tell where your update appears. Could you apply your tweaks to the latest version without changing the formatting? I can toss that in my comparison app and review.

§
Posted: 2020-12-22

Hi Kxmode,
I missed you reply btw obviously seems fair, really are just few lines of code basically copycat of you korsub filter with the only logic added in this piece


$.each($(".lista2t tr td:nth-of-type(8)"), function(index, value) {
		var uploader = $(this).text();
		// Logic to hide uploader scene torrents
		if (!showScene) {
			if (parseInt(uploader.indexOf("Scene")) > -1) {
				$(this)
					.parents(".lista2")
					.remove();
			}
		}
	});

KxmodeAuthor
§
Posted: 2021-01-12

Thanks, Silverbell. I'll review your code soon.

My apologies for the delay in response.

Thank you for putting it together. At a glance, it looks promising. 🙂

Post reply

Sign in to post a reply.