1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-25 01:03:01 +00:00

docs: fix documented type of rpc-version-semver (#3209)

This commit is contained in:
Charles Kerr 2022-06-05 21:17:05 -05:00 committed by GitHub
parent 8d61f07930
commit 6c9c446734
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -535,7 +535,7 @@ Response arguments: `path`, `name`, and `id`, holding the torrent ID integer
| `queue-stalled-minutes` | number | torrents that are idle for N minuets aren't counted toward seed-queue-size or download-queue-size | `queue-stalled-minutes` | number | torrents that are idle for N minuets aren't counted toward seed-queue-size or download-queue-size
| `rename-partial-files` | boolean | true means append `.part` to incomplete files | `rename-partial-files` | boolean | true means append `.part` to incomplete files
| `rpc-version-minimum` | number | the minimum RPC API version supported | `rpc-version-minimum` | number | the minimum RPC API version supported
| `rpc-version-semver` | number | the current RPC API version in a semver-compatible string | `rpc-version-semver` | string | the current RPC API version in a semver-compatible string
| `rpc-version` | number | the current RPC API version | `rpc-version` | number | the current RPC API version
| `script-torrent-added-enabled` | boolean | whether or not to call the `added` script | `script-torrent-added-enabled` | boolean | whether or not to call the `added` script
| `script-torrent-added-filename` | string | filename of the script to run | `script-torrent-added-filename` | string | filename of the script to run
@ -580,9 +580,16 @@ to be common behavior.
#### 4.1.1 Mutators #### 4.1.1 Mutators
Method name: `session-set` Method name: `session-set`
Request arguments: one or more of 4.1's arguments, except: `blocklist-size`, Request arguments: the mutable properties from 4.1's arguments, i.e. all of them
`config-dir`, `rpc-version`, `rpc-version-minimum`, except:
`version`, and `session-id`
* `blocklist-size`
* `config-dir`
* `rpc-version-minimum`,
* `rpc-version-semver`
* `rpc-version`
* `session-id`
* `version`
Response arguments: none Response arguments: none