diff options
author | Alexander Batischev <eual.jp@gmail.com> | 2024-09-22 13:36:38 +0300 |
---|---|---|
committer | Alexander Batischev <eual.jp@gmail.com> | 2024-09-22 17:30:43 +0300 |
commit | ba8978a34e92b5d630378b3cbf9c45d196d2554b (patch) | |
tree | 2c8ada03d635ccddcf91dc77c3bb1de0f46c711a | |
parent | e5da56b07387d230a97b3ce39f36d39bc3363712 (diff) |
Release 2.36.1r2.36.1
-rw-r--r-- | CHANGELOG.md | 10 | ||||
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | README.md | 20 | ||||
-rw-r--r-- | rust/libnewsboat-ffi/Cargo.toml | 2 | ||||
-rw-r--r-- | rust/libnewsboat/Cargo.toml | 2 |
5 files changed, 24 insertions, 14 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 13332eb5..bf01c144 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changes for Newsboat +## 2.36.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.36 - 2024-06-22 ### Changed @@ -334,7 +334,7 @@ checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" [[package]] name = "libnewsboat" -version = "2.36.0" +version = "2.36.1" dependencies = [ "backtrace", "chrono", @@ -359,7 +359,7 @@ dependencies = [ [[package]] name = "libnewsboat-ffi" -version = "2.36.0" +version = "2.36.1" dependencies = [ "cxx", "cxx-build", @@ -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.36/docs/newsboat.html#_bookmarking) -* [Filter articles out](https://newsboat.org/releases/2.36/docs/newsboat.html#_killfiles) + scripts](https://newsboat.org/releases/2.36.1/docs/newsboat.html#_bookmarking) +* [Filter articles out](https://newsboat.org/releases/2.36.1/docs/newsboat.html#_killfiles) based on title, author, contents etc. -* [Aggregate articles](https://newsboat.org/releases/2.36/docs/newsboat.html#_query_feeds) +* [Aggregate articles](https://newsboat.org/releases/2.36.1/docs/newsboat.html#_query_feeds) into meta-feeds by arbitrary criteria -* [Apply transformations](https://newsboat.org/releases/2.36/docs/newsboat.html#_scripts_and_filters_snownews_extensions) +* [Apply transformations](https://newsboat.org/releases/2.36.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.36/docs/newsboat.html#_newsboat_as_a_client_for_newsreading_services) -* [Macros](https://newsboat.org/releases/2.36/docs/newsboat.html#_macro_support) + and [many more](https://newsboat.org/releases/2.36.1/docs/newsboat.html#_newsboat_as_a_client_for_newsreading_services) +* [Macros](https://newsboat.org/releases/2.36.1/docs/newsboat.html#_macro_support) to execute sequences of actions with just two keystrokes -* Rudimentary [podcast support](https://newsboat.org/releases/2.36/docs/newsboat.html#_podcast_support) +* Rudimentary [podcast support](https://newsboat.org/releases/2.36.1/docs/newsboat.html#_podcast_support) Downloading ----------- @@ -115,7 +115,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.36/docs/faq.html#_with_snap_i_cant_start_browserbookmarking_scriptexecfilterrun_program_from_macro + [snap-browser]: https://newsboat.org/releases/2.36.1/docs/faq.html#_with_snap_i_cant_start_browserbookmarking_scriptexecfilterrun_program_from_macro - [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 @@ -154,8 +154,8 @@ Support ------- * Check out our - [documentation](https://newsboat.org/releases/2.36/docs/newsboat.html) and - [FAQ](https://newsboat.org/releases/2.36/docs/faq.html) + [documentation](https://newsboat.org/releases/2.36.1/docs/newsboat.html) and + [FAQ](https://newsboat.org/releases/2.36.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/rust/libnewsboat-ffi/Cargo.toml b/rust/libnewsboat-ffi/Cargo.toml index 28b2adcb..f3bebfda 100644 --- a/rust/libnewsboat-ffi/Cargo.toml +++ b/rust/libnewsboat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libnewsboat-ffi" -version = "2.36.0" +version = "2.36.1" authors = ["Alexander Batischev <eual.jp@gmail.com>"] edition = "2021" diff --git a/rust/libnewsboat/Cargo.toml b/rust/libnewsboat/Cargo.toml index a750eb87..72c29750 100644 --- a/rust/libnewsboat/Cargo.toml +++ b/rust/libnewsboat/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libnewsboat" -version = "2.36.0" +version = "2.36.1" authors = ["Alexander Batischev <eual.jp@gmail.com>"] edition = "2021" |