diff --git a/WebAPI_Changelog.md b/WebAPI_Changelog.md index c2164f65a..23272bb5a 100644 --- a/WebAPI_Changelog.md +++ b/WebAPI_Changelog.md @@ -1,5 +1,14 @@ # WebAPI Changelog +## 2.11.9 + +* [#21015](https://github.com/qbittorrent/qBittorrent/pull/21015) + * Add `torrents/fetchMetadata` endpoint for retrieving torrent metadata associated with a URL + * Add `torrents/parseMetadata` endpoint for retrieving torrent metadata associated with a .torrent file + * Add `torrents/saveMetadata` endpoint for saving retrieved torrent metadata to a .torrent file + * `torrents/add` allows adding a torrent with metadata previously retrieved via `torrents/fetchMetadata` or `torrents/parseMetadata` + * `torrents/add` allows specifying a torrent's file priorities + ## 2.11.8 * [#21349](https://github.com/qbittorrent/qBittorrent/pull/21349) diff --git a/src/webui/webapplication.h b/src/webui/webapplication.h index e39140eff..6ceb28593 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, 8}; +inline const Utils::Version<3, 2> API_VERSION {2, 11, 9}; class APIController; class AuthController;