mirror of
https://github.com/serrebidev/BlindRSS.git
synced 2026-08-13 10:59:27 -07:00
BlindRSS does not display the <description> field for feed items #33
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#33
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, when BlindRSS loads an RSS feed, the article list displays the following information for each item:
By pressing
Tab, the user can navigate to a read-only text field that shows the extracted text from the linked page.However, RSS items often include a
<description>element, which can serve as:This
<description>field frequently holds distinct informational value. Users would like to access its content while retaining the current functionality of viewing the extracted page text.Desired behavior
Provide a way to view the content of the
<description>field without losing the ability to see the extracted page text as implemented now.Possible implementation approaches
<description>text.Note: The description can sometimes be very long, so this may require visual truncation.
<description>field.This would allow users to tailor the behavior per channel depending on which source of text is more useful for that specific feed.
Acceptance criteria
<description>field content for RSS items.Tabflow).Fixed and released in v1.71.1. Changes: feed item descriptions are stored separately from extracted/full content when a feed provides a distinct description or summary; the article list now has a truncated Description column; the article context menu includes View Feed Description... for the full description in a read-only, keyboard-accessible dialog; existing extracted page text behavior remains unchanged. Verification: full test suite passed (929 passed, 7 skipped), build.bat release completed, and GitHub latest points to v1.71.1.
Overall, the implementation is as expected, but please implement closing the modal dialog window with the description display by pressing the Escape key.
Currently, this dialog does not close when pressing Escape key, and you must explicitly click the Close button.
Good catch — fixed. The Feed Description dialog now closes on Escape, same as clicking Close. Will go out in the next release.
Thanks! The issue is resolved and I’m closing it now.