From 7ac160a481e8cd185f6623cde1362dd3011ea028 Mon Sep 17 00:00:00 2001 From: Thomas Piccirello Date: Tue, 10 Jun 2025 12:48:08 -0700 Subject: [PATCH] Bump WebAPI version --- WebAPI_Changelog.md | 9 +++++++++ src/webui/webapplication.h | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) 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;