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 4531703f..808db302 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changes for Newsboat +## 2.25.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.25 - 2021-09-20 Lists below only mention user-visible changes, but the full list of contributors @@ -280,7 +280,7 @@ checksum = "a2a5ac8f984bfcf3a823267e5fde638acc3325f6496633a5da6bb6eb2171e103" [[package]] name = "libnewsboat" -version = "2.25.0" +version = "2.25.1" dependencies = [ "backtrace", "chrono", @@ -305,7 +305,7 @@ dependencies = [ [[package]] name = "libnewsboat-ffi" -version = "2.25.0" +version = "2.25.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.25/docs/newsboat.html#_bookmarking) -* [Filter articles out](https://newsboat.org/releases/2.25/docs/newsboat.html#_killfiles) + scripts](https://newsboat.org/releases/2.25.1/docs/newsboat.html#_bookmarking) +* [Filter articles out](https://newsboat.org/releases/2.25.1/docs/newsboat.html#_killfiles) based on title, author, contents etc. -* [Aggregate articles](https://newsboat.org/releases/2.25/docs/newsboat.html#_query_feeds) +* [Aggregate articles](https://newsboat.org/releases/2.25.1/docs/newsboat.html#_query_feeds) into meta-feeds by arbitrary criteria -* [Apply transformations](https://newsboat.org/releases/2.25/docs/newsboat.html#_scripts_and_filters_snownews_extensions) +* [Apply transformations](https://newsboat.org/releases/2.25.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.25/docs/newsboat.html#_newsboat_as_a_client_for_newsreading_services) -* [Macros](https://newsboat.org/releases/2.25/docs/newsboat.html#_macro_support) + and [many more](https://newsboat.org/releases/2.25.1/docs/newsboat.html#_newsboat_as_a_client_for_newsreading_services) +* [Macros](https://newsboat.org/releases/2.25.1/docs/newsboat.html#_macro_support) to execute sequences of actions with just two keystrokes -* Rudimentary [podcast support](https://newsboat.org/releases/2.25/docs/newsboat.html#_podcast_support) +* Rudimentary [podcast support](https://newsboat.org/releases/2.25.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.25/docs/faq.html#_regarding_newsboat_snap_installations + [snap-browser]: https://newsboat.org/releases/2.25.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.25/docs/newsboat.html) and - [FAQ](https://newsboat.org/releases/2.25/docs/faq.html) + [documentation](https://newsboat.org/releases/2.25.1/docs/newsboat.html) and + [FAQ](https://newsboat.org/releases/2.25.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 880b886c..cb116f79 100644 --- a/doc/newsboat.asciidoc +++ b/doc/newsboat.asciidoc @@ -1706,9 +1706,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 94ffb5a2..fefc854f 100644 --- a/rust/libnewsboat-ffi/Cargo.toml +++ b/rust/libnewsboat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libnewsboat-ffi" -version = "2.25.0" +version = "2.25.1" authors = ["Alexander Batischev <eual.jp@gmail.com>"] edition = "2018" diff --git a/rust/libnewsboat/Cargo.toml b/rust/libnewsboat/Cargo.toml index 994eb9d6..6a0ee265 100644 --- a/rust/libnewsboat/Cargo.toml +++ b/rust/libnewsboat/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libnewsboat" -version = "2.25.0" +version = "2.25.1" authors = ["Alexander Batischev <eual.jp@gmail.com>"] edition = "2018" |