Added additional priorities supported by SABnzbd.

From shypike:This is the (kind of weird) priority table:

TOP_PRIORITY = 2
HIGH_PRIORITY = 1
NORMAL_PRIORITY = 0
LOW_PRIORITY = -1
DEFAULT_PRIORITY = -100
PAUSED_PRIORITY = -2

-100 won't do a thing, since it means: whatever is default.
This commit is contained in:
markus101 2011-02-11 00:12:44 -08:00
commit e7cbc4cbcf
2 changed files with 5 additions and 2 deletions

View file

@ -2,8 +2,11 @@
{
public enum SabnzbdPriorityType
{
Default = -100,
Paused = -2,
Low = -1,
Normal = 0,
High = 1
High = 1,
Top = 2
}
}