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;