mirror of
https://github.com/serrebidev/BlindRSS.git
synced 2026-08-13 10:59:27 -07:00
Add a setting to customize how article links are opened in a browser #32
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#32
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, the context menu for an article in the feed list contains two items: “Open Article” and “Open in Browser”. In practice, both options behave identically — they open the article link in the system’s default browser. This makes the distinction between the two menu items redundant and confusing for users.
Additionally, there is no way to customize how the article is opened. For example, a user might want to:
--incognitofor private browsing);This lack of flexibility limits how users can integrate BlindRSS into their workflows. For instance, they may need to open some articles with logged‑in sessions in their main browser (to post comments, etc.), while preferring an isolated or incognito session for general reading.
Desired behavior
Provide a configurable way to define how articles are opened, while keeping the option to fall back to the system’s default browser behavior when needed.
Proposed solution
UI changes
Update the context menu to clearly differentiate the two options:
Enterwhen an article is focused.Settings changes
Add a new setting in BlindRSS preferences: “Article Opening Method” (default: “Default Browser”).
The setting should allow two modes:
chrome --incognito %1"C:\Program Files\Mozilla Firefox\firefox.exe" --private-window %1Where
%1is a placeholder that will be replaced with the actual article URL at runtime.The settings UI should:
%1placeholder.Acceptance criteria
Enteron a selected article behaves the same as clicking “Open Article”.%1placeholder to inject the article URL.Implemented in v1.71.0.
UI
Settings
chrome --incognito %1"C:\Program Files\Mozilla Firefox\firefox.exe" --private-window %1%1and a Test button that launches the command with a sample URL.Keyboard navigation and accessibility are preserved for all the new controls.
Thanks! The issue is resolved and I’m closing it now.