summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
AgeCommit message (Collapse)Author
2022-10-22Release 19.0.0-beta119.0.0-beta1Benjamin Brahmer
Changed - Drop support for Nextcloud 22, NC 22 has reached it's end of life. - Add support for Nextcloud 25 Fixed - Corrected article compact title bar position in NC25 (#1944) - Fixed "Mark read through scrolling" in NC25 and NC24 (#1944) Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-10-22Fix mark read throughscrolling in NC24Rhys Tyers
Signed-off-by: Rhys Tyers <mail@rhy.si>
2022-10-21Release 18.3.018.3.0Benjamin Brahmer
Fixed - Remove setting for minimum purge interval since it is not used. Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-10-12Remove setting for minimum purge interval settingBenjamin Brahmer
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-10-11Release 18.3.0-beta118.3.0-beta1Benjamin Brahmer
Changed - New administrator setting for deleting unread items automatically (#1931) Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-10-08New administrator setting for deleting unread items automaticallyBenjamin Brahmer
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-09-28Release 18.2.018.2.0Benjamin Brahmer
Fixed - Fix the highlighted item when reverse ordering is selected (#1838) Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-09-20Fix the highlighted item in reversed orderMichael Chang
Signed-off-by: Michael Chang <github@micbase.com>
2022-09-08Release 18.2.0-beta218.2.0-beta2Benjamin Brahmer
Fix for the read all function and spelling fixes. Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-08-30Release 18.2.0-beta118.2.0-beta1Benjamin Brahmer
Changed - Ported the admin settings to vue (#2353) Fixed - Fix PHP 8.1 deprecations (#1861) - Document api item types (#1861) - Fix deprecation warnings from Nextcloud server (#1869) - Fix when marking all items as read, all items of the user are used in the sql query (#1873) - Fix adding feed via the web-ui that was just deleted causing an error (#1872) Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-08-30Port admin settings to vue (#1880)Carl Schwan
* Port admin settings to vue Co-authored-by: anoy. <anoymouserver@users.noreply.github.com> Co-authored-by: Benjamin Brahmer <info@b-brahmer.de> Signed-off-by: Carl Schwan <carl@carlschwan.eu>
2022-08-25Fix adding feed that was just deleted is causing an errorBenjamin Brahmer
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-08-21update changelogBenjamin Brahmer
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-08-19Fix deprecation warnings from Nextcloud. (#1869)Benjamin Brahmer
* don't use private class anymore * execute is deprecated * fix migration execute statement * fix unittest Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-08-19add changelogBenjamin Brahmer
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-08-12Release 18.1.118.1.1Benjamin Brahmer
Changed - Change autodiscover to only run after fetching the given url has failed (#1860) Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-08-08Change Autodiscover behaviour (#1860)Benjamin Brahmer
* change autodiscover behaviour to only run if the provided url is not already a feed * Execute feed check after the final url is found Signed-off-by: Benjamin Brahmer <info@b-brahmer.de> Co-authored-by: Sean Molenaar <SMillerDev@users.noreply.github.com>
2022-07-04Release 18.1.1-beta118.1.1-beta1Benjamin Brahmer
- Fix export of unread and starred articles failing due to postgres error (#1839, #1249) - Fix broken API v1.3 (#1841) Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-07-03fix duplicated api routesanoy
Signed-off-by: anoy <anoymouserver+github@mailbox.org>
2022-06-28fix type always string for findAllFromUserBenjamin Brahmer
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-06-15Release 18.1.018.1.0Benjamin Brahmer
Due to #1766 some Feeds might now have items that have `null` set as author instead of `""` clients need to handle this. Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-05-31Release 18.1.0-beta218.1.0-beta2Benjamin Brahmer
Changed - If items of feed do not provide an author fallback to feed author (#1803) Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-05-31If items of feed do not provide an author fallback to feed author (#1803)Benjamin Brahmer
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-05-29Release 18.1.0-beta118.1.0-beta1Benjamin Brahmer
Changed - Add API v1.3 adding routes for starring/unstarring items by id and general fixes (#1727) https://nextcloud.github.io/news/api/api-v1-3/ - Improve styling of tables in articles (#1779) - Allow fetching feeds that omit guid by using link as stand-in (#1785) Fixed - Fix updated api not returning any item after marking item as read (#1713) - Fix deprecation warning for strip_tags() on a null value (#1766) - Fix selected item being set incorrectly when using default ordering or newest first ordering (#1324) - Fix doubling the height of the content area (#1796) Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-05-28Fix doubling the height of the content areachylex
Signed-off-by: chylex <contact@chylex.com>
2022-05-24Use Feed Link as GUID when Feed omits Guid. (#1785)Accalia Elementia
* Use Feed Link as GUID when Feed omits Guid. As noted in nextcloud/news#1702 some feeds omit the GUID and are therefore not a valid RSS feed. nextcloud/news#1738 resolved the issue to allow valid feeds to update correctly when an invalid feed is present. This commit allows parsing of the invalid feed as well by assuming that the item link of the feed is unique to the feed and using it in place of the GUID when the feed omits the GUID. This will allow NextCloud News to accept and behave like many other popular feed aggregators when presented with such an invalid feed. Signed-off-by: Accalia <Accalia@Elementia.me> * Add basic Logging when using fallback guid Signed-off-by: Accalia <Accalia@Elementia.me> * Add basic Logging when using fallback guid - Fix Fatfinger Typo Signed-off-by: Accalia <Accalia@Elementia.me> * Add basic Logging when using fallback guid - Update tests to account for additional logging Signed-off-by: Accalia <Accalia@Elementia.me>
2022-05-24update ContentController to fix nextcloud#1324Accalia
Signed-off-by: Accalia <Accalia@Elementia.me>
2022-05-13Improve styling of tables in articleschylex
Signed-off-by: chylex <contact@chylex.com>
2022-05-04check if variable is null before striping tagsBenjamin Brahmer
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de> Co-authored-by: Sean Molenaar <SMillerDev@users.noreply.github.com>
2022-05-02update last_modified when marking an item as readBenjamin Brahmer
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de> this way it works Signed-off-by: Benjamin Brahmer <info@b-brahmer.de> add changelog entry Signed-off-by: Benjamin Brahmer <info@b-brahmer.de> Partly fix test Signed-off-by: Benjamin Brahmer <info@b-brahmer.de> test passing Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-04-30document new starring api methods in changelogPaul Tirk
Signed-off-by: Paul Tirk <paultirk@paultirk.com>
2022-04-24Release 18.0.118.0.1Benjamin Brahmer
No major changes since the beta versions. Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-04-18Release 18.0.1-beta318.0.1-beta3Benjamin Brahmer
Fixed - Fix import of items when feed does not exist (1742) - Fix malformed feeds (without GUIDs) stopping the update process (#1738) Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-04-18Fix malformed feeds (without GUIDs) stopping the update process (fixes #1738)nextcloud486153
Signed-off-by: nextcloud486153 <78801830+nextcloud486153@users.noreply.github.com>
2022-04-18fix import of items when feed does not existBenjamin Brahmer
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-03-22Release 18.0.1-beta218.0.1-beta2Benjamin Brahmer
Fixed - Fix no item marked as read by Folder API due to mismatch in parameter name (#1703) Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-03-18rename maxItemId to newestItemId to match docsBenjamin Brahmer
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-03-09Release 18.0.1-beta118.0.1-beta1Benjamin Brahmer
Fixed - Fix only one item marked as read by Feed API (#1687) Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-03-08add changelog entryBenjamin Brahmer
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-02-28Release 18.0.018.0.0Benjamin Brahmer
Changed - Change shortcut descriptions. (#1669) Fixed - Fix spaces in passwords getting replaced with "+" (#1678) Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-02-27add changelog entryBenjamin Brahmer
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-02-21Update shortcutsDennis Müller
Shortcut "q" is not supported anymore as stated in https://github.com/nextcloud/news/issues/1613#issuecomment-991891468 Shortcuts "c" and "v" seemed to have swapped descriptions. Signed-off-by: Dennis Müller <dennis.mueller@bib.uni-mannheim.de>
2022-02-16Release 18.0.0-beta118.0.0-beta1Benjamin Brahmer
Changed - Drop support for Nextcloud 21 Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2022-02-14chore: deprecate nc 21Sean Molenaar
Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
2021-12-09Release 17.0.117.0.1Benjamin Brahmer
Fixed - Fix catching network errors while fetching feed logos. (#1601) Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2021-11-30Fix catching connect exceptions while fetching feed logos #1570Michael Hamann
Display the message instead of the response when catching an exception during feed logo fetching. As there is no response and thus no method `getResponse()` in `ConnectException`, this fixes a "call to undefined method"-error that prevented feeds from fetching if fetching the logo resulted in a `ConnectException`. Signed-off-by: Michael Hamann <michael@content-space.de>
2021-11-29Release 17.0.017.0.0Benjamin Brahmer
Fixed - fix link-icon-overlap in mobile-view (#1579) Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2021-11-28fix link-icon-overlap in mobile-viewMatthias
Signed-off-by: Matthias <matthias.baier@mabaart.de>
2021-11-18Release 17.0.0-beta117.0.0-beta1Benjamin Brahmer
Changed - Drop support for Nextcloud 20 (#1514) - Use better sql commands, that were not possible with Nextcloud 20 (#1514) - Add support for Nextcloud 23 (#1585) Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
2021-11-18Update changelog for 17.x.xBenjamin Brahmer
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>