diff --git a/ChangeLog b/ChangeLog index 7f820f920..992a6ffd5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,10 +1,21 @@ -To be released +2024-09-26 Lars Windolf Version 1.15.8 + * #1289 Solve some Webkit deprecations + (Lars Windolf) + * Fixes #1359: Prevent passing "" as CLI argument causing a useless subscription. Also checks for duplicates when subscribing from CLI/DBUS. (Lars Windolf) + + * Fixes #1372: Fix feed icon not parsing if the URL doesn't have a file extension bug + (Stomern) + + * Fixes #1382: Doesn't recognize atom:link element with no rel attribute bug + (Lars Windolf, reported by Ed Davies) + + * Update of Turkish translation (emintufan) 2024-06-19 Lars Windolf diff --git a/configure.ac b/configure.ac index 943067202..96fb21af8 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT([liferea],[1.15.7],[liferea-devel@lists.sourceforge.net]) +AC_INIT([liferea],[1.15.8],[liferea-devel@lists.sourceforge.net]) AC_CANONICAL_HOST AC_CONFIG_SRCDIR([src/feedlist.c]) diff --git a/src/subscription_icon.c b/src/subscription_icon.c index e2d8849f8..8cac76fde 100644 --- a/src/subscription_icon.c +++ b/src/subscription_icon.c @@ -152,7 +152,6 @@ subscription_icon_download_next (iconDownloadCtxtPtr ctxt) { gchar *url; UpdateRequest *request; - update_result_cb callback; if (g_slist_length (ctxt->doneUrls) > ICON_DOWNLOAD_MAX_URLS) { debug (DEBUG_UPDATE, "Stopping icon '%s' discovery after trying %d URLs.", ctxt->id, ICON_DOWNLOAD_MAX_URLS);