changes:
* Added 64bit library path for Firefox
to start script
* Added fix a timezone parsing problem
* Added a workaround for a problem caused
by installing the gconf schemes from
earlier Liferea version, which caused
a HTML view zoom level of 0.
PKGLOCALEDIR and which install their locale files directly under
${PREFIX}/${PKGLOCALEDIR} and sort the PLIST file entries. From now
on, pkgsrc/mk/plist/plist-locale.awk will automatically handle
transforming the PLIST to refer to the correct locale directory.
developer is officially maintaining the package.
The rationale for changing this from "tech-pkg" to "pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list). Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.
2006-01-17 Lars Lindner
Version 1.0.1
* Fixes a compatibility issue with Firefox 1.5
that might cause crashes when running with both
the Mozilla Suite and Firefox are installed.
(Gentoo bug #118700 reported by Ed Katmur)
* Removes vfolder nodes when exporting the feed list.
(SF #1407742 reported by Duilio J. Protti)
2005-12-23 Lars Lindner
Version 1.0
* Notifications are now always kept on top.
(patch from Scott Harmon)
* HTML view cleared when subscription is removed.
* Added <Del> as accelerator for deleting items.
* Now double clicking an item behaves according
to the open-link-in-Liferea preference.
(SF 1362228, reported by jphendrix)
Bugfixes:
* Fixes crash on "Next Unread" when no feed list
selection is available.
* Fixes a memory corruption caused by a bug in
the Atom 1.0 parsing code. (SF #1366369,
reported by Stephane Bortzmeyer)
* Fixes crash when removing items from the "Unread"
vfolder. (reported by Liberty Young)
* Fixes missing dates for RSS feeds that specify
RFC822 date definitions without seconds.
(reported by Aristotle Pagaltzis)
* Right clicking the enclosure download arrow
now opens the enclosures menu and not the
standard hyperlink context menu.
* Lockfiles are correctly checked for hostnames containing
periods.
Translations:
* Update of Japanese translation (Takeshi AIHANA)
* Update of Bulgarian translation (Vladimir Petkov)
* Update of Italian translation (Dario Coniglario)
* Update of Spanish translation (Calos Fenollosa Bielsa)
* Update of Brazilian Portugese translation
(Fernando Ike de Oliveira)
* Update of Slovakian translation (Tibor Pittich)
* Update of Korean translation (Park Ji-In)
* Update of Swedish translation (Sigge Kotliar)
2005-11-18 Lars Lindner
Version 1.0 RC4
* SF feed removed from all default feed lists.
* Updated some default feed lists to include the
standard vfolders.
* Adds a lot of missing accelerator keys to
the different dialogs.
* An offline FAQ was added to the program.
There is a new FAQ option in the help menu.
* Help contents index extended with links to
online support sites.
Bugfixes:
* Fixes a minor problem when downloading favicons
that were at least once downloaded in the past
and are not available online anymore.
* Fixes a bug that prevented using hotkeys with
Mozilla and hidden menu bar.
* Fixes a bug about using Ctrl-F with GtkHTML2
(SF #1358949, reported by noltec)
* Repaired some broken translation strings.
* Fixes several typos.
Translations:
* Update of Italian translation (Dario Coniglario)
* Update of Bulgarian translation (Vladimir Petkov)
* Update of Swedish translation (Sigge Kotliar)
* Update of French translation (Vincent Levefre)
2005-11-04 Lars Lindner
Version 1.0 RC3
* Display vfolder properties when a vfolder is created.
* New preference to hide all read items when viewing
a folder. (Patch from Bjorn Monnens)
* Improved GNOME HIG compliance, better dialog padding
and spacing. (Patch from Christian Persch)
* Added Ctrl-F hotkey to open the search dialog.
Bugfixes:
* Prevents next unread jumping into a vfolder.
(reported by Sigge Kotliar)
* Prevents deferred item removal in the wrong
feed when changing from a "unread" vfolder
to any other feed.
* Fixes the bug that all items of a feed were
dropped as soon as "disable cache" was enabled.
(SF #1318391 reported by Matt Brubeck)
* Certain favicons are no longer downloaded in an
endless loop.
* Fixes a RFC822 date parsing problem on MacOS.
(Patch from Vincent Lefevre)
Translations:
* Update of Spanish translation (Carlos Fennelosa)
* Update of Japanese translation (Takeshi AIHANA)
file's sole purpose was to provide a dependency on pkg-config and set
some environment variables. Instead, turn pkg-config into a "tool"
in the tools framework, where the pkg-config wrapper automatically
adds PKG_CONFIG_LIBDIR to the environment before invoking the real
pkg-config.
For all package Makefiles that included pkg-config/buildlink3.mk, remove
that inclusion and replace it with USE_TOOLS+=pkg-config.
Several changes are involved since they are all interrelated. These
changes affect about 1000 files.
The first major change is rewriting bsd.builtin.mk as well as all of
the builtin.mk files to follow the new example in bsd.builtin.mk.
The loop to include all of the builtin.mk files needed by the package
is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk
is now included by each of the individual builtin.mk files and provides
some common logic for all of the builtin.mk files. Currently, this
includes the computation for whether the native or pkgsrc version of
the package is preferred. This causes USE_BUILTIN.* to be correctly
set when one builtin.mk file includes another.
The second major change is teach the builtin.mk files to consider
files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most
of the builtin.mk files test for the presence of built-in software by
checking for the existence of certain files, e.g. <pthread.h>, and we
now assume that if that file is under ${LOCALBASE}, then it must be
from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The
exceptions to this new check are the X11 distribution packages, which
are handled specially as noted below.
The third major change is providing builtin.mk and version.mk files
for each of the X11 distribution packages in pkgsrc. The builtin.mk
file can detect whether the native X11 distribution is the same as
the one provided by pkgsrc, and the version.mk file computes the
version of the X11 distribution package, whether it's built-in or not.
The fourth major change is that the buildlink3.mk files for X11 packages
that install parts which are part of X11 distribution packages, e.g.
Xpm, Xcursor, etc., now use imake to query the X11 distribution for
whether the software is already provided by the X11 distribution.
This is more accurate than grepping for a symbol name in the imake
config files. Using imake required sprinkling various builtin-imake.mk
helper files into pkgsrc directories. These files are used as input
to imake since imake can't use stdin for that purpose.
The fifth major change is in how packages note that they use X11.
Instead of setting USE_X11, package Makefiles should now include
x11.buildlink3.mk instead. This causes the X11 package buildlink3
and builtin logic to be executed at the correct place for buildlink3.mk
and builtin.mk files that previously set USE_X11, and fixes packages
that relied on buildlink3.mk files to implicitly note that X11 is
needed. Package buildlink3.mk should also include x11.buildlink3.mk
when linking against the package libraries requires also linking
against the X11 libraries. Where it was obvious, redundant inclusions
of x11.buildlink3.mk have been removed.
Changes:
* Added Polish translation and default feed list.
(Jakub W. Jozwicki)
* Article skimming keybinding is now global.
(Lars Lindner)
* Not matching types for proxy port variable fixed.
This should solve proxy problems on Solaris.
(Lars Lindner)
* Fixes a bug that caused the items of a deleted feed
not to be removed from all vfolders.
(Jakub W. Jozwicki)
* Workaround for unwanted GtkHTML2 default background
color. Liferea now enforces a white background.
(Juha-Mikko Ahonen)
Changes:
* Keyboard focus is adjusted on "Next Unread".
(Lars Lindner)
* 100% CPU usage on HTTP 202 (e.g. Slashdot after
banning) is now fixed. (Oliver Feiler)
* Fixes a possible crash when selecting the condensed
mode view. (Jakub W. Jozwicki)
* Liferea now supports cookies. Contrary to previous
statements the SnowNews code to realize this was included but not used. To
use this feature place a cookies.txt in ~/.liferea. The format of this file
is the format Netscape introduced for cookie files. (Lars Lindner)
* Liferea now enforces umask 0077 when saving the
feed list to ensure your passwords are not group or world accessible. In this
context please check the permissions of your ~/.liferea directory. Older
program versions might have created the directory with unnecessary
priviledges. Current versions (0.6.x) create the directory only with user
priviledges. Thanks to the reporters Nick Rout and Eric Gregory! (Lars
Lindner)
* Bugfix for a crash when double-clicking a "(empty)"
entry in empty folders. Reported by Martin Sarfy. (Lars Lindner)
* If a feed uses HTTP authentication the user and
password isn't displayed in the feed description anymore. (Lars Lindner)
Changes:
* Changed the handling of updated items. Previously the
read status of updated items was set to unread. This
was very inconvenient because of a lot of buggy feeds
with non-unique item ids which caused continuously
unread but unchanged items. Now an update flag is set
and the item is shown in bold dark gray color in the
item list. An updated item does not count in the
unread counter anymore.
I hope this improves usability with broken feeds.
(Lars Lindner)
* Finally made the condensed mode a permanent feed state.
Just select it once and the feed you like to read in
this mode will stay this way until you switch it off.
(Lars Lindner)
* Improvement to the itemlist viewing mode switching.
Now the HTML rendering widget isn't destroyed each
time the mode is switched but reused.
(Lars Lindner)
* IPv6 Support. (Christoph Hohmann)
* Support for broken web-servers and proxies that use
chunked encoding. (Alex Myltsev)
* A feed update now does not reset the item list focus
or selection anymore. (Lars Lindner)
* Applied HIG rule for "..." in menu labels.
(Lars Lindner)
* Changed "New Subscription" menu icon to "+" sign
like it is in the toolbar. (Bram Senders)
* Added a Technorati link like Sage has. (Lars Lindner)
* The feed description of a subscription with a command
as source does not show the command string anymore.
This is to avoid showing sensitive information.
(Lars Lindner)
* Liferea now has a global feed update interval setting.
This setting defines the update behaviour of a feed
for which neither you or the feed provider did define
a feed specific update interval. There is also a new
option in the feed properties to disable automatic
updates of the feed. (Lars Lindner)
* Added a button in the preferences to force an update
of all feed favicons. (Amit D. Chaudhary)
* Liferea now prevents the update of vfolders when you
request the update of all feeds. This bug changed the
vfolder state to unavailable. (Lars Lindner)
* Fix for a HTML layout problem where big images could
misalign the item footer and following items.
(Gee Law)
* Finally corrected the inverted sorting order of
the date column. But this means that you have to
reset the sort order of all your feeds once. Sorry
about that! (Lars Lindner)
* The handling of the default update interval information
of feeds was broken so the properties dialog never
showed the value. This is fixed now. (Lars Lindner)
* Fixed a bug on with non-blocking sockets and Solaris8.
(pkeusem)
Changes since 0.5.3:
* Finally added a menu option to remove a single item.
Sorry that it took so long! (Lars Lindner)
* Item modification times are now correctly converted to the local
timezone. (Nathan Conrad)
* The help feeds are now (almost) normal subscriptions
and can be removed and modified. The only remaining
difference is that the version in the URL is updated
automatically and that old items are dropped. This
also removes the special icon of the help folder.
(Lars Lindner)
* Removed the ugly unavailable icon. Now the GNOME stock
icon for the error dialog is used. (Lars Lindner)
* Added a default feed list that is installed upon the
first program start. Added a Spanish localized version
by Topopardo. (Lars Lindner)
* Added support for reading subscriptions URLs from
a named pipe (~/.liferea/new_subscription) to allow
external programs to add feeds. (Lars Lindner)
* Itemlist sorting order is now saved on a per-feed basis.
(Nathan Conrad)
* Experimental vfolder implementation. When you do a search
you now can save the search result as a vfolder. There
is still a lot to do but just play around and write us
your opinion! (Lars Lindner)
* Fixed a bug that caused a crash when right clicking the
feed list in filtered mode. (Lars Lindner)
* Fixed a problem with the session managment registering
which prevented the usage of the Mozilla browser module.
(Nathan Conrad)
* Iconification state is saved between sessions. (Nathan Conrad)
* URLs are now stripped of leading and trailing
whitespace. (Nathan Conrad)
* Update of the Italian translation (Dario Conigliaro)
* Fixed a big memory leak. (Lars Lindner)
* Some fixes in the RPM spec file (Noa Resare)
* Update of the Czech translation (Juraj Kubelka)
* Updated RPM spec file. (Daniel Resare)
* Update of the French translation (Vincent Lefevre)
* Fixed HTTP authentication problem with case sensitivy
in the HTTP headers. (Nathan Conrad)
* Fixed gaim strings in the configure output reported by
Russell Kaiser. (Nathan Conrad)
* Corrected dependency for libxml2 from 2.0 to 2.4.1 for the
configure script and allow older versions of gconf. (Nathan
Conrad)
* Removed accidental usage of libxml2 2.6 usage. Liferea should
now work with libxml2 2.4.1 or newer. (Nathan Conrad)
* Fixed a mistake in the German translation. (Lars Lindner)
* Fixed a bug that prevented RSS content:encoded tags
to be parsed. (Lars Lindner)
- Sort USE_* section alphabetically.
- Add explicit run dependency on glib2 (because of gmodule).
- Sort other dependencies alphabetically.
- Register liferea.schemas into the GConf2 database (and add them to the
PLIST!).
in the process. (More information on tech-pkg.)
Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and
installing .la files.
Bump PKGREVISION (only) of all packages depending directly on the above
via a buildlink3 include.
All library names listed by *.la files no longer need to be listed
in the PLIST, e.g., instead of:
lib/libfoo.a
lib/libfoo.la
lib/libfoo.so
lib/libfoo.so.0
lib/libfoo.so.0.1
one simply needs:
lib/libfoo.la
and bsd.pkg.mk will automatically ensure that the additional library
names are listed in the installed package +CONTENTS file.
Also make LIBTOOLIZE_PLIST default to "yes".
Changes:
* New File selectors are used when compiled with GTK+ 2.4 or
later. (Nathan Conrad)
* XML parsers now detect namespaces based on their URL. (Nathan
Conrad)
* UTF-16 formatted documents are now supported. Please complain if
you have problems! This may also help other encodings that
contain NULL bytes in their datastreams.
* More favicons are now detected (HTML pages are now searched for
links to the favicons). (Nathan Conrad)
* Authenticated proxies are now supported via the GNOME proxy
settings and http_proxy environment variable. (Nathan Conrad)
* Help feeds are no longer downloaded at every startup.
* Support for photo blog RSS modules. (Lars Lindner)
* There is a new preference option in the "Headline Display"
tab to change the key binding for skimming through the
articles. It now defaults to Ctrl-Space instead of simply
Space. This is to allow using forms with Mozilla. If you
prefer Space please set it explicitly in the preferences.
(Lars Lindner)
* GConf schemas have been added to document the various gconf
keys that Liferea uses and provide control of defaults by
computer administrators. (Nathan Conrad)
* Notification popups now show the favicon of the feeds for
easier recognizing. (Lars Linder)
* Session manager support. This makes the lock file removed when
a user logs out without first cloning Liferea. (Lots of code from
gaim, but integrated into Liferea by Nathan Conrad)
* Fixed bug where some invalid feeds were causing their item lists
to be erased when they were updated. (Nathan Conrad)
* Fixed bug that may crash the program when the libxml2 error
output displayed in the feed description contains invalid
Unicode characters. This was reported by Yanko Kaneti.
(Lars Lindner)
* Fixed bug with incorrect HTML in the condensed mode.
(Jack Lecou)
* Fixed the missing scrolling reset when you display items
with Mozilla (Lars Lindner)
* Fixed a popup menu problems with gtkhtml2, which did not
always show the correct menu reported by hakon_g.
(Lars Lindner)
Changes:
* Update of the Czech translation. (Juraj Kubelka)
* Fixes a bug reported by twentyone that hides the headers
and metadata when the two pane mode (condensed view) is
enabled. (Lars Lindner)
* Favicons downloaded using gzip compression are no longer
corrupted. This might fix some other download problems.
(Nathan Conrad)
* Fixed a parsing bug that treated Atom feed modified/issued
dates as RFC822 instead of ISO6801 dates. (Lars Lindner)
* Fix parsing of atom feeds that do not escape their content.
(Nathan Conrad)
Changes:
* A middle mouse click on the itemlist now toggles
read status or the headline flag depending on the
column you click. (Lars Lindner)
* Now favicons that are older than one month are
automatically updated (Lars Lindner)
* The search result now provides an extra column with
the favicon of the feed the found headline belongs to.
(Lars Lindner)
* The mozilla browser module now respects the configured
proxy settings. (Lars Lindner)
* Feed and item information is now properly localized.
(Lars Lindner and Nathan Conrad)
* Popup menu for the systray icon. (James Bowes)
* Improvements for the favicon handling. favicon.ico files are now
retrieved from the webserver path where the feed is
located. favicon.ico in the webserver root is tried only if this
first attempt fails. favicons are now redownloaded every 30
days. (Lars Lindner & Nathan Conrad)
* Liferea now saves when the mainwindow is maximized.
(Marc Deslauriers)
* The gnomevfs2 dependency from GtkHTML2 was removed.
(Nathan Conrad)
* 0.5.1 did falsely encode HTTP URL hash marks as %23.
This is fixed now. (Lars Lindner)
* When a feed source command is executed a useful return
code is set so it won't be unavailable due to missing
status information. (Christophe Barbe)
Changes:
* Favicons are now processed with gdkpixbuf and saved
to disc in PNG format. Images with 24bit colors and
sizes other than 16x16 are now supported. (Nathan Conrad)
PLEASE NOTE THAT THIS BREAKS FAVICON CACHE
DOWNWARD COMPATIBILITY WITH OLDER RELEASES!
WHEN YOU FALLBACK YOU WILL LOOSE YOUR ICONS.
* Now a short help text is displayed in the HTML view
after startup. (Lars Linder)
* Updated networking code. Many more things, such as
adding a new feed, are processed in the background.
(Nathan Conrad)
* Improved preferences for selecting how to open a link
in an external browser. (Nathan Conrad)
* Popup-window notifications of new items. This
is a first implementation and we are open for your
critics and suggestions! (Karl Soderstrom)
Bugfixes:
* When URLs are passed to an external browser they are
now escaped correctly. (Lars Lindner)
* When a feed could not be downloaded after the
subscription it was missing a cache file. This caused
an error message each time the program starts. This
is fixed now. (Lars Lindner)
* Debian bug #254959 reported by Martin-Eric Racine was
fixed. No Liferea recognizes RSS 1.0 Creative Commons
license information. (Lars Lindner)
* Better favicon detection (more coming in the next release).
* Feed properties (such as titles) are now saved when they
change. (Nathan Conrad)
* Compiles on Solaris, and is hopefully more portable now.
(Nathan Conrad)
* Feed update locking issues were fixed. (Nathan Conrad)
* Several memleaks were fixed.