Changes:
1.0
---
* Makefile: switch to use CPPFLAGS -D_DEFAULT_SOURCE preventing warning
messages on some systems.
* sfeed_curses:
* Fix (false-positive) compiler warnings with gcc 10.2+ and -Wall -O2.
* Check if capname is NULL for tparm(), noticed on netbsd-curses.
* Add [ and ] keybind to open the next visible feed in the pane while
keeping the current pane selection, thanks to adc for the feature
suggestion.
* Exit early on read errors and show a clear error message in these cases.
* Improve consistency of line counting (on an invalid file).
* Theme: add a version of the mono theme (mono_highlight) which highlights
the active panel.
* minicurses.h: fix parameter type for tparm() (long not int).
* sfeed_content:
* Content view optimizations.
* Show any other content-type than "html" as plain-text (because Atom
allows base64-encoded embedded content).
* Allow multiple file parameters as arguments.
* sfeed_markread:
* Make sure to use proper permissions when copying the merged temporary
file.
* For the unread items: create the file if it does not exist.
* Allow to set the url as a parameter or as an env variable.
* Use "-" instead of /dev/stdin which is slightly more portable.
* Code-style improvements.
* Documentation improvements: add examples, fix typos, etc.
Changes:
0.9.10
------
* Fix a possible memory leak when used with ncurses and when resizing the
window. The terminal was reinitalized using setupterm() which would leak memory
and it is also very inefficient to do so, because it rereads the terminfo
entries.
* Fix a possible memory leak when used with ncurses and when exiting from an
interactive program and restoring the terminal for sfeed_curses.
* Fix an issue when the sidebar would be > 256 columns long the text on the row
would not be displayed. Especially noticable in the monocle and horizontal
layout in fullscreen on bigger screens.
* Fix a silent truncation which would make searching on titles with > 1024
bytes not work on these truncated bytes.
* Fix right-click plumb not respecting the environment variable
$SFEED_PLUMB_INTERACTIVE flag (but the keybinds did).
* Fix drawing/updating of the initial items scrollbar when switching to the
monocle layout.
* Fix to restore the terminal state more gracefully when it could not be
correctly initialized (for example with an invalid $TERM set).
* Fix for correctly decoding mouse buttons 6 and 7 (tilt scroll) using xterm
X10 decoding. These buttons were not used, but still :)
* Fix: when the pane items or scrollbar are outside the window to not draw them.
* Do not clearscreen() when the window is dirty.
This makes sure there is less flickering in xterm and urxvt, like on a window
resize or when adjusting the sidebar.
* Add the keybinds J (shift-j) and K (shift-k) to go one item up or down and
also open it for faster navigating and checking new items.
Feedback idea from Hadrien Lacour, thanks!
* Also allow scrolling when the position is exactly on the pane its scrollbar
and fix mouse button actions that don't depend on a position in a pane.
* Implement extended SGR mouse-decoding and also improve X10 mouse decoding:
* When the terminal emulator supports SGR mouse-encoding then it can
encode x, y values beyond 224 columns and rows. This is useful for big screens.
* Map the side-buttons (back, forward) to switch panes. Useful in the monocle
layout.
* Implement keymasks (shift, meta/alt, ctrl) and pass them to the function
mousereport().
* Improve resizing the sidebar:
* Avoid unnecessary redraws in some (rare) cases.
* Clamp the minimal and maximum value when adjusting the sidebar size
depending on the layout. This also fixes an issue in horizontal layout mode
when the sidebar is 1 column high. It would require 2 keypresses (instead of 1)
to increase the sidebar. This was an injustice to the fingers.
* After toggling showing new feeds or when reloading feeds try to select the
same feed again.
* Code-style improvements, typofixes and minor documentation improvements.
Changes:
0.9.9
-----
- mark as read: use the ID if the link is empty
- sfeed_content: fix unescaping function
- Add feature to process a sequence of keys automatically on startup via
$SFEED_AUTOCMD environment variable
- Add horizontal and monocle layout
- Misc bugfixes and improvements
Changes
0.9.6
-----
- Add keybinds < (decrease), > (increase) and = (reset to automatic
size) to resize feed sidebar pane for small terminals
- Make lazyload a run-time configuration option via SFEED_LAZYLOAD
environment variable
Changes:
0.9.4
-----
- Add configurable interactive modes for executed programs (executed
program interactive in the same terminal)
- Add support for new categories field
- Misc bug fixes and improvements
Changes:
0.9.2
-----
- Fix scrolling issues on some terminals
- Fix a file descriptior leak on startup when stdin is not a tty
- Improve cursor visibility and behaviour on some terminals
- Misc fixes and improvements
0.9.1
-----
- Add pledge support for OpenBSD
- Add support to SFEED_YANKER to yank the URL/enclosure to a program (by
default `xclip -r')
- Fix a crash with small window width and garbage data if utf8pad fails
Changes:
0.9
---
- Add sfeed_content
- Misc bug fixes and improvements
0.8.2
-----
- Reread urls if using an url list for mark read and loading a feed
- Rework updatesidebar drawing and width calculation
0.8.1
-----
- Misc bug fixes (cursor problem with urxvt and reloadall and handling of the
current open feed)
sfeed_curses is a curses UI front-end for sfeed.
It shows the TAB-separated feed items in a graphical command-line UI.
The interface has a look inspired by the mutt mail client. It has a
sidebar panel for the feeds, a panel with a listing of the items and a
small statusbar for the selected item/url. Some functions like
searching and scrolling are integrated in the interface itself.