selfoss
selfoss copied to clipboard
new lastread filter
Introduces a new filter: last read items, that is items ordered by the last time they were read, excluding the items that were skipped using 'Mark Visible Read'.
Do we want filters to change the order of items? And will it not be confusing that marking items individually as read behaves differently from using the green button?
I've found it very useful for me to have some kind of reading history distinguishing between items I opened and items I just marked as read without reading. This makes it possible to quickly find an article the you read a couple hours before, something that is more difficult without this. Also, this opens the door to having stats of how much article you read regarding how much you discard (not implemented here).
One thing I do not like on this is that the skipped
status is a separate column, even though it is mutually exclusive with the unread
flag. Maybe it would make more sense to replace both columns with single status
column that would be of type enum(new, read, dismissed)
.
Or even simpler, we could track readtime
and readtime == null && unread == 0
would mean the item was dismissed (though this is maybe too implicit).