mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-17 06:45:05 -05:00
Add "Manage Torrents" button to home screen
This commit is contained in:
parent
2a4f8780e2
commit
e596b7370d
@ -1924,6 +1924,8 @@ def haveXBMC():
|
|||||||
def havePLEX():
|
def havePLEX():
|
||||||
return sickbeard.USE_PLEX and sickbeard.PLEX_UPDATE_LIBRARY
|
return sickbeard.USE_PLEX and sickbeard.PLEX_UPDATE_LIBRARY
|
||||||
|
|
||||||
|
def haveTORRENT():
|
||||||
|
return sickbeard.USE_TORRENTS
|
||||||
|
|
||||||
def HomeMenu():
|
def HomeMenu():
|
||||||
return [
|
return [
|
||||||
@ -1931,6 +1933,7 @@ def HomeMenu():
|
|||||||
{'title': 'Manual Post-Processing', 'path': 'home/postprocess/'},
|
{'title': 'Manual Post-Processing', 'path': 'home/postprocess/'},
|
||||||
{'title': 'Update XBMC', 'path': 'home/updateXBMC/', 'requires': haveXBMC},
|
{'title': 'Update XBMC', 'path': 'home/updateXBMC/', 'requires': haveXBMC},
|
||||||
{'title': 'Update Plex', 'path': 'home/updatePLEX/', 'requires': havePLEX},
|
{'title': 'Update Plex', 'path': 'home/updatePLEX/', 'requires': havePLEX},
|
||||||
|
{'title': 'Manage Torrents', 'path': '/manage/manageTorrents', 'requires': haveTORRENT},
|
||||||
{'title': 'Restart', 'path': 'home/restart/?pid=' + str(sickbeard.PID), 'confirm': True},
|
{'title': 'Restart', 'path': 'home/restart/?pid=' + str(sickbeard.PID), 'confirm': True},
|
||||||
{'title': 'Shutdown', 'path': 'home/shutdown/?pid=' + str(sickbeard.PID), 'confirm': True},
|
{'title': 'Shutdown', 'path': 'home/shutdown/?pid=' + str(sickbeard.PID), 'confirm': True},
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user