Bump WebAPI version

This commit is contained in:
Thomas Piccirello 2025-06-10 12:48:08 -07:00
parent 4c190b0d4f
commit 7ac160a481
No known key found for this signature in database
2 changed files with 10 additions and 1 deletions

View file

@ -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)

View file

@ -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;