erengy / taiga

A lightweight anime tracker for Windows
https://taiga.moe
GNU General Public License v3.0
2.11k stars 228 forks source link

Enable filters for torrents view #968

Closed nayots closed 3 years ago

nayots commented 3 years ago

There is no valid way to make a filter that only shows torrents that have a Video quality of 1080p with the current application.

There should be an option to filter each column by regex. image

erengy commented 3 years ago

make a filter that only shows torrents that have a Video quality of 1080p

Conditions: Episode video resolution | is not | 1080p

Action: Discard matched items

Discard type: Hide discarded items


If all you need is 1080p, you can specify it at your RSS feed URL rather than creating a filter. This will give you more results.

nayots commented 3 years ago

This is not a solution since the q query param is used by the title placeholder and adding 1080p does not return only 1080p quality.

&q=%title%
paulo27ms commented 3 years ago

The feed with that is the one you use for searching. Just add 1080p to your search or change your filter so non-1080p torrents are hidden by default.

nayots commented 3 years ago

It just does not work image

nayots commented 3 years ago

A simple regex filter for a column would be a simple but effective fix.

paulo27ms commented 3 years ago

It is working perfectly fine for me.

image

image

FYI: If you're having issues with "is not 1080p", consider "does not contain 1080". But your issue is 100% certain to be caused by another filter that you have that does discards but does not hide those torrents. Taiga doesn't discard torrents twice.

If I add this filter on top I have the same issue as you:

image

image

Basically to fix your issue all you have to do is move that filter to the top of the list instead of at the bottom.

Works: image

Doesn't work: image

nayots commented 3 years ago

Moving the filter to the top has yielded the desired result. Thanks @paulo27ms