mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-30 19:40:18 -07:00
Some checks failed
CI - File health / Check (push) Has been cancelled
CI - macOS / Build (push) Has been cancelled
CI - Python / Check (push) Has been cancelled
CI - Ubuntu / Build (push) Has been cancelled
CI - WebUI / Check (push) Has been cancelled
CI - Windows / Build (push) Has been cancelled
When a category's download path option is set to "Default", its `downloadPath` is serialized into JSON as `undefined`. This results in the `downloadPath` field being omitted from `torrents/categories` and `torrents/maindata` payloads (as is expected with an `undefined` value). The use of `undefined` here causes an issue in the WebUI. Specifically, when the category previously contained a value for this field (i.e. download path option set to either "Yes" or "No"), the `processMap` logic in `SyncController` does not detect the removal this field. This results in the category's new `downloadPath` not being properly sent to the client. By switching from `undefined` to `null`, we ensure that the `downloadPath` value is always included in the category's payload. This allows `processMap` to properly detect whenever the value changes. This change is backwards compatible with existing categories.json files. Older qBittorrent versions should also be able to parse new categories.json files containing `null`. More context: https://github.com/qbittorrent/qBittorrent/pull/22938/commits/cd3fbfbf9b63a42f1d4d9d48d0c2d20a5c1a4b28#r2173148696 PR #22958.
2.6 KiB
2.6 KiB
WebAPI Changelog
2.11.10
- #22932
torrents/categories
andsync/maindata
now serialize categories'downloadPath
tonull
, rather thanundefined
2.11.9
- #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 viatorrents/fetchMetadata
ortorrents/parseMetadata
torrents/add
allows specifying a torrent's file priorities
- Add
- #22698
torrents/addTrackers
andtorrents/removeTrackers
now accepthash=all
and adds/removes the tracker to/from all torrents- For compatibility,
torrents/removeTrackers
still acceptshash=*
internally we transform it intoall
- For compatibility,
- Allow passing a pipe (
|
) separated list of hashes inhash
fortorrents/addTrackers
andtorrents/removeTrackers
2.11.8
- #21349
- Handle sending
204 No Content
status code when response contains no data- Some endpoints still return
200 OK
to ensure smooth transition
- Some endpoints still return
- Handle sending
- #22750
torrents/info
allows an optional parameterincludeFiles
that defaults tofalse
- Each torrent will contain a new key
files
which will list all files similar to thetorrents/files
endpoint
- Each torrent will contain a new key
- #22813
app/getDirectoryContent
allows an optional parameterwithMetadata
to send file metadata- Fields are
name
,type
,size
,creation_date
,last_access_date
,last_modification_date
- See PR for TypeScript types
- Fields are
2.11.7
- #22166
sync/maindata
returns 3 new torrent fields:has_tracker_warning
,has_tracker_error
,has_other_announce_error
2.11.6
- #22460
app/setPreferences
allows only one ofmax_ratio_enabled
,max_ratio
to be presentapp/setPreferences
allows only one ofmax_seeding_time_enabled
,max_seeding_time
to be presentapp/setPreferences
allows only one ofmax_inactive_seeding_time_enabled
,max_inactive_seeding_time
to be present