All Projects → relikd → baRSS

relikd / baRSS

Licence: MIT License
Menu Bar RSS reader for macOS

Programming Languages

objective c
16641 projects - #2 most used programming language
c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to baRSS

Pluto
pluto gems - planet feed reader and (static) website generator - auto-build web pages from published web feeds
Stars: ✭ 174 (+346.15%)
Mutual labels:  atom, rss, rss-reader, feed
buran
Bidirectional, data-driven RSS/Atom feed consumer, producer and feeds aggregator
Stars: ✭ 27 (-30.77%)
Mutual labels:  atom, rss, rss-reader, feed
Liferea
Liferea (Linux Feed Reader), a news reader for GTK/GNOME
Stars: ✭ 612 (+1469.23%)
Mutual labels:  atom, rss, rss-reader, feed
FeedReader
C# RSS and ATOM Feed reader library. Supports RSS 0.91, 0.92, 1.0, 2.0 and ATOM. Tested with multiple languages and feeds.
Stars: ✭ 221 (+466.67%)
Mutual labels:  atom, rss, rss-reader
meta-extractor
Super simple and fast html page meta data extractor with low memory footprint
Stars: ✭ 38 (-2.56%)
Mutual labels:  atom, rss, feed
Feed Module
Everyone deserves RSS, ATOM and JSON feeds!
Stars: ✭ 182 (+366.67%)
Mutual labels:  atom, rss, feed
Feedparser
feedparser gem - (universal) web feed parser and normalizer (XML w/ Atom or RSS, JSON Feed, HTML w/ Microformats e.g. h-entry/h-feed or Feed.HTML, Feed.TXT w/ YAML, JSON or INI & Markdown, etc.)
Stars: ✭ 156 (+300%)
Mutual labels:  atom, rss, feed
json-feed-viewer
The world's first JSON feed viewer 🥇
Stars: ✭ 40 (+2.56%)
Mutual labels:  atom, rss, rss-reader
Gorss
Go Terminal Feed Reader
Stars: ✭ 191 (+389.74%)
Mutual labels:  atom, rss, rss-reader
webfeed
A dart package for parsing RSS & Atom feed
Stars: ✭ 92 (+135.9%)
Mutual labels:  atom, rss, rss-reader
osmosfeed
Turn GitHub into an RSS reader
Stars: ✭ 839 (+2051.28%)
Mutual labels:  rss, rss-reader, feed
Feedreader
C# RSS and ATOM Feed reader library. Supports RSS 0.91, 0.92, 1.0, 2.0 and ATOM. Tested with multiple languages and feeds.
Stars: ✭ 180 (+361.54%)
Mutual labels:  atom, rss, rss-reader
reader
A Python feed reader library.
Stars: ✭ 290 (+643.59%)
Mutual labels:  rss, rss-reader, feed
RSS-to-Telegram-Bot
A Telegram RSS bot that cares about your reading experience
Stars: ✭ 482 (+1135.9%)
Mutual labels:  rss, rss-reader, feed
awesome-rss-feeds
Awesome RSS feeds - A curated list of RSS feeds (and OPML files) used in Recommended Feeds and local news sections of Plenary - an RSS reader, article downloader and a podcast player app for android
Stars: ✭ 114 (+192.31%)
Mutual labels:  rss, rss-reader, feed
Posidonlauncher
a one-page homescreen with a news feed
Stars: ✭ 163 (+317.95%)
Mutual labels:  atom, rss, feed
Feed Io
A PHP library to read and write feeds in JSONFeed, RSS or Atom format
Stars: ✭ 200 (+412.82%)
Mutual labels:  atom, rss, feed
feed2email
RSS/Atom feed updates in your email
Stars: ✭ 37 (-5.13%)
Mutual labels:  atom, rss, feed
Rss Atom Bundle
RSS and Atom Bundle for Symfony
Stars: ✭ 123 (+215.38%)
Mutual labels:  atom, rss, feed
Gofeed
Parse RSS, Atom and JSON feeds in Go
Stars: ✭ 1,762 (+4417.95%)
Mutual labels:  atom, rss, feed

macOS 10.12+ Current release All downloads GitHub license

baRSS – Menu Bar RSS Reader

screenshot

What is it?

A RSS & Atom feed reader that lives in the system status bar.
Very much inspired by RSS Menu; go ahead and check that out.

baRSS will automatically update feeds for you, and inform you when new content is available. The new articles are just a menu away.

Features

baRSS is unobtrusive, fast, and built from scratch with minimal footprint in mind. The application uses less than 30 Mb memory and has a ridiculous file size of 1 Mb.

Speaking of reducing web traffic. In contrast to other applications, baRSS does not save any cached web sessions or cookies as a matter of fact. But it will reuse ETag and Last-Modified headers to avoid unnecessary transmissions. Further, tuning the update frequently will decrease the traffic even more.

Download & Install

Requires macOS Sierra (10.12) or higher.

Easy way

Go to releases and downloaded the latest version.
Searching for the App Store release? Read this notice.

Build from source

You'll need Xcode and Carthage. The latter is optional, you can build the RSXML2 library from source instead. Carthage just makes it more convenient. Download and unzip this project, navigate to the root folder and run carthage bootstrap --platform macOS.

Next, you need to clone QLOPML in the same folder where this project is. Alternatively, you can simply delete the QLOPML project reference without much harm. QLOPML is a Quick Look plugin for .opml files. It will display the file contents whenever you hit spacebar.

That's it. Open Xcode and build the project. Note, there are some compiler flags that append 'beta' to the development release. If you prefer the optimized release version go to Product > Archive.

Hidden options

This listing contains of options that have no UI that can be configured. Most likely, you wouldn't ever stumble upon these if not reading this chapter. Note: To reset an option run defaults delete de.relikd.baRSS {KEY}, where {KEY} is an option from below.

  1. If you hold down the option key and click on an article item, you can mark a single item (un-)read.

  2. When holding down the option key, the menu will show an item to open only a few unread items at a time. This number can be changed with the following Terminal command (default: 10):

defaults write de.relikd.baRSS openFewLinksLimit -int 10
  1. In preferences you can choose to show 'Short article names'. This will limit the number of displayed characters to 60 (default). With this Terminal command you can customize this limit:
defaults write de.relikd.baRSS shortArticleNamesLimit -int 50
  1. Limit the number of displayed articles per feed menu. Note: displayed unread count may be different than the unread items inside ('Open unread' will open hidden items too).
defaults write de.relikd.baRSS articlesInMenuLimit -int 40
  1. You can change the appearance of colors throughout the application. E.g., The tint color of the menu bar icon and the color of the blue dot of unread articles.
defaults write de.relikd.baRSS colorStatusIconTint -string "#37F"
defaults write de.relikd.baRSS colorUnreadIndicator -string "#FBA33A"
  1. To backup your list of subscribed feeds, here is a one-liner:
open barss:backup && cp "$HOME/Library/Containers/de.relikd.baRSS/Data/Library/Application Support/baRSS/backup/feeds_latest.opml" "$HOME/Desktop/baRSS_backup_$(date "+%Y-%m-%d").opml"

ToDo

The following list is not exhaustive but rather a collection of nice things that will be added eventually. I may postpone some until demand increases …

  • Localizations
  • Feed generator for websites without feeds
  • Automatically choose best update interval (e.g., avg)
  • Sync with online services
  • Feeds with authentication
  • Notification Center
  • Distraction Mode
    • Distract less: Sleep timer. (e.g., disable updates during working hours)
    • Distract more: Automatically open feed items
  • Add support for media types
    • music / video? (open media player)
    • Pure image feed? (show images directly in menu)
  • Per feed / group settings
    • select launch application (e.g., for podcasts)
    • exclude unread count from menu bar (e.g., unimportant feeds)
  • Infinite storage. (load more button)

FAQ / Q&A

App Store Notice

In the last couple of months I prepared baRSS to be released on the App Store. With sandboxing enabled and hardened runtime environment, etc.

But, for the time being, I decided to not publish this app for political reasons. I was not happy about some decisions made in the last weeks. Decisions that were evaluated on monetary aspects and not on ethical considerations. I won't support this conduct with my own money.

If you find this app somewhere on the App Store, you can be sure that it is a counterfeit. As long as you can read this very notice, I am not responsible for the publication. Further, I can't guarantee the App Store version wasn't modified by a malicious actor to spy on you.

Why create something that already existed?

First, open source is awesome! Secondly, RSS Menu made some design decisions I didn't like. For example, the new integrated browser window.

One thing I liked most, was the fact that feeds were opened in the default browser. Not like 99% of the other feed readers on the market that show a separate HTML viewer window. No rendering issues, no broken links, no content that is different from the actual news article.

I know, the whole purpose of RSS is to deliver content without the need of opening a webpage. But for me RSS is more about being informed whenever a blog or news feed has some updated content. E.g, subscribing to video channels without having to have an account.

Why is this project not written in Swift?!

Actually, I started this project with Swift. Even without adding much functionality, the app was exceeding the 10 Mb file size. The working alpha version, written in Objective-C, had only 500 Kb. The reason being that Swift frameworks are always packed into the final application.

Sadly, this was before Swift 5 and ABI stability. Had I only started the project a year later… But on the other hand, now it is macOS 10.12 compatible.

3rd Party Libraries

This project uses a modified version of Brent Simmons' RSXML for feed parsing. RSXML2 is licensed under a MIT license (same as this project).

Trivia
  • Start of project: July 19, 2018
  • Estimated development time: 1965h+
  • First prototype used feedparser python library
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].