Add normal prio

This commit is contained in:
Joel Wachsler 2022-08-13 18:16:01 +00:00
parent 6e483c1dc0
commit 4a8c6efbb3
3 changed files with 18 additions and 3 deletions

View File

@ -1667,7 +1667,8 @@ Possible values of `priority`:
Value | Description
-----------|------------
`0` | Do not download
`4` | Normal priority
`1` | Normal priority
`4` | Default Normal priority
`6` | High priority
`7` | Maximal priority

View File

@ -4431,6 +4431,13 @@
"Normal priority",
),
value: "NormalPriority",
original_value: "1",
},
EnumValue {
description: Some(
"Default Normal priority",
),
value: "DefaultNormalPriority",
original_value: "4",
},
EnumValue {

View File

@ -8007,10 +8007,17 @@ TokenTree {
],
},
TableRow {
raw: "`4` | Normal priority",
raw: "`1` | Normal priority",
columns: [
"1",
"Normal priority",
],
},
TableRow {
raw: "`4` | Default Normal priority",
columns: [
"4",
"Normal priority",
"Default Normal priority",
],
},
TableRow {