mirror of
https://github.com/serrebidev/BlindRSS.git
synced 2026-08-13 11:59:26 -07:00
Show total unread articles count in category names #36
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
serrebi/BlindRSS#36
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Currently, BlindRSS displays the number of unread articles at the end of each feed (channel) name.
It is desirable to extend this behavior to categories: the category name should show the sum of unread articles across all feeds within that category. The count must be calculated recursively, including all nested subcategories. This will enable users to quickly see the total number of unread items in a category, regardless of its depth in the hierarchy.
Expected Behavior
total_unread = sum(unread_count of all direct feeds) + sum(total_unread of all child categories)Technology (15)where15is the aggregated unread count.Current Behavior
Only individual feeds show their unread count (e.g.,
Hacker News (3)). Categories do not display any aggregated unread counts.Acceptance Criteria
Additional Notes
Implemented and released in v1.72.0: https://github.com/serrebidev/BlindRSS/releases/tag/v1.72.0
Category names now show the recursive unread total (direct feeds + all nested subcategories), same
(N)style as feeds, and it stays correct after marking articles read/unread, adding/removing feeds, and moving/nesting categories — no need to manually refresh.This release also adds live status bar updates so screen readers can hear what BlindRSS is currently doing (which feed is being checked, which episode is downloading).
Thanks! The issue is resolved and I’m closing it now.