diff options
-rw-r--r-- | CHANGELOG.md | 10 | ||||
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | LICENSE | 4 | ||||
-rw-r--r-- | README.md | 20 | ||||
-rw-r--r-- | doc/newsboat.asciidoc | 4 | ||||
-rw-r--r-- | newsboat.cpp | 4 | ||||
-rw-r--r-- | rust/libnewsboat-ffi/Cargo.toml | 2 | ||||
-rw-r--r-- | rust/libnewsboat/Cargo.toml | 2 |
8 files changed, 30 insertions, 20 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index be5b9744..5465530c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changes for Newsboat +## 2.26.1 - 2024-09-22 + +### Fixed + +- Newsboat spamming sites with requests when `download-retries` is changed from + its default of 1 and the site returns HTTP code 304 Not Modified (#2732) + (Dennis van der Schagt) + + + ## 2.26 - 2021-12-27 Lists below only mention user-visible changes, but the full list of contributors @@ -295,7 +295,7 @@ checksum = "1b03d17f364a3a042d5e5d46b053bbbf82c92c9430c592dd4c064dc6ee997125" [[package]] name = "libnewsboat" -version = "2.26.0" +version = "2.26.1" dependencies = [ "backtrace", "chrono", @@ -321,7 +321,7 @@ dependencies = [ [[package]] name = "libnewsboat-ffi" -version = "2.26.0" +version = "2.26.1" dependencies = [ "cxx", "cxx-build", @@ -1,9 +1,9 @@ MIT License Copyright 2006-2015 Andreas Krennmair <ak@newsbeuter.org> -Copyright 2015-2021 Alexander Batischev <eual.jp@gmail.com> +Copyright 2015-2024 Alexander Batischev <eual.jp@gmail.com> Copyright 2006-2017 Newsbeuter contributors -Copyright 2017-2021 Newsboat contributors +Copyright 2017-2024 Newsboat contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), @@ -31,18 +31,18 @@ Notable features * Powerful built-in HTML renderer — no need to start the web browser to view text-only entries * Send links and whole articles to third-party services using [bookmarking - scripts](https://newsboat.org/releases/2.26/docs/newsboat.html#_bookmarking) -* [Filter articles out](https://newsboat.org/releases/2.26/docs/newsboat.html#_killfiles) + scripts](https://newsboat.org/releases/2.26.1/docs/newsboat.html#_bookmarking) +* [Filter articles out](https://newsboat.org/releases/2.26.1/docs/newsboat.html#_killfiles) based on title, author, contents etc. -* [Aggregate articles](https://newsboat.org/releases/2.26/docs/newsboat.html#_query_feeds) +* [Aggregate articles](https://newsboat.org/releases/2.26.1/docs/newsboat.html#_query_feeds) into meta-feeds by arbitrary criteria -* [Apply transformations](https://newsboat.org/releases/2.26/docs/newsboat.html#_scripts_and_filters_snownews_extensions) +* [Apply transformations](https://newsboat.org/releases/2.26.1/docs/newsboat.html#_scripts_and_filters_snownews_extensions) to feeds before passing them into Newsboat * Integrates with services like The Old Reader, NewsBlur, FeedHQ - and [many more](https://newsboat.org/releases/2.26/docs/newsboat.html#_newsboat_as_a_client_for_newsreading_services) -* [Macros](https://newsboat.org/releases/2.26/docs/newsboat.html#_macro_support) + and [many more](https://newsboat.org/releases/2.26.1/docs/newsboat.html#_newsboat_as_a_client_for_newsreading_services) +* [Macros](https://newsboat.org/releases/2.26.1/docs/newsboat.html#_macro_support) to execute sequences of actions with just two keystrokes -* Rudimentary [podcast support](https://newsboat.org/releases/2.26/docs/newsboat.html#_podcast_support) +* Rudimentary [podcast support](https://newsboat.org/releases/2.26.1/docs/newsboat.html#_podcast_support) Downloading ----------- @@ -112,7 +112,7 @@ There are numerous ways: strict confinement; if we disabled it, the snap would be no better than a distribution's package; - [snap-browser]: https://newsboat.org/releases/2.26/docs/faq.html#_regarding_newsboat_snap_installations + [snap-browser]: https://newsboat.org/releases/2.26.1/docs/faq.html#_regarding_newsboat_snap_installations - [build from source with Docker](doc/docker.md). Note that the resulting binary might not run outside of that same Docker container if your system doesn't @@ -151,8 +151,8 @@ Support ------- * Check out our - [documentation](https://newsboat.org/releases/2.26/docs/newsboat.html) and - [FAQ](https://newsboat.org/releases/2.26/docs/faq.html) + [documentation](https://newsboat.org/releases/2.26.1/docs/newsboat.html) and + [FAQ](https://newsboat.org/releases/2.26.1/docs/faq.html) * Report security vulnerabilities to security@newsboat.org. Please encrypt your emails to [PGP key 4ED6CD61932B9EBE](https://newsboat.org/newsboat.pgp) if you can. * Report bugs and ask questions on diff --git a/doc/newsboat.asciidoc b/doc/newsboat.asciidoc index dcc56aea..8e35bf94 100644 --- a/doc/newsboat.asciidoc +++ b/doc/newsboat.asciidoc @@ -1717,9 +1717,9 @@ Operation:Default key:Description MIT License Copyright 2006-2015 Andreas Krennmair <ak@newsbeuter.org> + -Copyright 2015-2021 Alexander Batischev <eual.jp@gmail.com> + +Copyright 2015-2024 Alexander Batischev <eual.jp@gmail.com> + Copyright 2006-2017 Newsbeuter contributors + -Copyright 2017-2021 Newsboat contributors +Copyright 2017-2024 Newsboat contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/newsboat.cpp b/newsboat.cpp index fc3de23f..d88048db 100644 --- a/newsboat.cpp +++ b/newsboat.cpp @@ -160,11 +160,11 @@ void print_version(const std::string& argv0, unsigned int level) << PROGRAM_URL << std::endl; ss << "Copyright (C) 2006-2015 Andreas Krennmair" << std::endl; - ss << "Copyright (C) 2015-2021 Alexander Batischev" + ss << "Copyright (C) 2015-2024 Alexander Batischev" << std::endl; ss << "Copyright (C) 2006-2017 Newsbeuter contributors" << std::endl; - ss << "Copyright (C) 2017-2021 Newsboat contributors" + ss << "Copyright (C) 2017-2024 Newsboat contributors" << std::endl; ss << std::endl; diff --git a/rust/libnewsboat-ffi/Cargo.toml b/rust/libnewsboat-ffi/Cargo.toml index 2da8ce71..cfed65fd 100644 --- a/rust/libnewsboat-ffi/Cargo.toml +++ b/rust/libnewsboat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libnewsboat-ffi" -version = "2.26.0" +version = "2.26.1" authors = ["Alexander Batischev <eual.jp@gmail.com>"] edition = "2018" diff --git a/rust/libnewsboat/Cargo.toml b/rust/libnewsboat/Cargo.toml index a3ce4214..f6a9de34 100644 --- a/rust/libnewsboat/Cargo.toml +++ b/rust/libnewsboat/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libnewsboat" -version = "2.26.0" +version = "2.26.1" authors = ["Alexander Batischev <eual.jp@gmail.com>"] edition = "2018" |