summaryrefslogtreecommitdiff
path: root/CHANGELOG
blob: f2318c0823239ac8d0f2057ca848b9a7d1098c57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
v0.9
====

Features:
---------

* sfeed_update: feeds are now by default updated in parallel for an increase
  in performance.
* sfeed_update: Auto-detect XML character set encoding (sfeed_xmlenc).
* Add sfeed_web: find RSS/Atom feeds from web-pages.
* Add sfeed_frames, a formatting program to output feeds as a HTML file with
  frames. It's optimized to look good in older browsers that don't necesarily
  support CSS or modern HTML, like links. See the man page for more details.
* Removed the dependency on libexpat, using a custom XML parser (xml.*),
  this parser is also non-validating, it will not check the XML for errors
  or stop parsing if it contains errors (which is good).
* Changed to mandoc for documentation.

Bug fixes:
----------

* Fix off-by-one in string_append when reallocating buffer.
* Parsing datetime strings containing timezone suffix to UNIX timestamps
  was wrong. UNIX timestamps are in GMT+0 time. For simplicity sake output
  parsed datetime strings in a formatted manner without converting the
  time to the user selected timezone (YYYY-mm-dd HH:mm:ss TZ([-+]offset?).
* Also when determining if an item is new (by comparing the UNIX
  timestamp) don't take into account timezones, because setenv(TZ,...) is
  just ugly and I don't use it.
* Lots of small fixes for compatibility with RSS / Atom feeds.
* Many more improvements, I'll keep a more detailed list in the future.


v0.8
====

No history