From 830d2c207b3829aab06ae6a18b9d097b8be52ec8 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Sat, 29 Mar 2025 20:47:53 +0800 Subject: [PATCH] WebAPI: bump version Related: https://github.com/qbittorrent/qBittorrent/pull/22460#issuecomment-2748821812 And add initial version of WebAPI changelog. PR #22481. --- WebAPI_Changelog.md | 5 +++++ src/webui/webapplication.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 WebAPI_Changelog.md diff --git a/WebAPI_Changelog.md b/WebAPI_Changelog.md new file mode 100644 index 000000000..d05d66524 --- /dev/null +++ b/WebAPI_Changelog.md @@ -0,0 +1,5 @@ +# 2.11.6 +* https://github.com/qbittorrent/qBittorrent/pull/22460 + * `app/setPreferences` allows only one of `max_ratio_enabled`, `max_ratio` to be present + * `app/setPreferences` allows only one of `max_seeding_time_enabled`, `max_seeding_time` to be present + * `app/setPreferences` allows only one of `max_inactive_seeding_time_enabled`, `max_inactive_seeding_time` to be present diff --git a/src/webui/webapplication.h b/src/webui/webapplication.h index 026394ee2..b5f015449 100644 --- a/src/webui/webapplication.h +++ b/src/webui/webapplication.h @@ -53,7 +53,7 @@ #include "base/utils/version.h" #include "api/isessionmanager.h" -inline const Utils::Version<3, 2> API_VERSION {2, 11, 5}; +inline const Utils::Version<3, 2> API_VERSION {2, 11, 6}; class APIController; class AuthController;