Compare commits

...

5 Commits

Author SHA1 Message Date
a0c3fb9d5d Fix arguments in add_trackers method 2022-11-03 15:18:15 +01:00
bors[bot]
f72732e2f1
Merge #64
64: Create release 0.6.4 r=jowax a=jowax

bors r+

Co-authored-by: jowax <jowax@users.noreply.github.com>
2022-08-13 19:27:32 +00:00
jowax
0ca880eea3 Create release 0.6.4 2022-08-13 19:20:07 +00:00
bors[bot]
4d9f32720e
Merge #63
63: Remove lock file r=jowax a=jowax



Co-authored-by: Joel Wachsler <jowax@users.noreply.github.com>
2022-08-13 18:40:15 +00:00
Joel Wachsler
ad18971291 And remove it for real 2022-08-13 18:32:24 +00:00
5 changed files with 12 additions and 1252 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
target
.env
/Cargo.lock

1249
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
[package]
name = "qbittorrent-web-api"
version = "0.6.3"
version = "0.6.4"
edition = "2021"
license = "MIT"
keywords = ["qbittorrent"]
@ -10,7 +10,7 @@ description = "Generated web api for qBittorrent"
[dependencies]
reqwest = { version = "0.11", features = ["json", "multipart"] }
tokio = { version = "1.19", features = ["full"] }
qbittorrent-web-api-gen = { path = "./qbittorrent-web-api-gen", version = "0.6.3" }
qbittorrent-web-api-gen = { path = "./qbittorrent-web-api-gen", version = "0.6.4" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_repr = "0.1"

View File

@ -1,6 +1,6 @@
[package]
name = "qbittorrent-web-api-gen"
version = "0.6.3"
version = "0.6.4"
edition = "2021"
license = "MIT"
keywords = ["qbittorrent"]

View File

@ -1982,6 +1982,14 @@ Requires knowing the torrent hash. You can get it from [torrent list](#get-torre
Name: `addTrackers`
**Parameters:**
Property | Type | Description
--------------------------------|---------|------------
`hash` | string | Torrent file to add trackers to
`urls` | string | URLs separated with newlines
```http
POST /api/v2/torrents/addTrackers HTTP/1.1
User-Agent: Fiddler