diff options
author | Stefano <l.stickell@yahoo.it> | 2013-06-23 20:19:26 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-06-23 20:19:26 +0200 |
commit | d898872107f8a6a7a4d8b8610ef367a7b07d6a88 (patch) | |
tree | 0dd98b4126db48bc9e223f18ef7346d19121b600 /module/plugins/hooks | |
parent | UnrestrictLi: account plugin revisited (diff) | |
download | pyload-d898872107f8a6a7a4d8b8610ef367a7b07d6a88.tar.xz |
UnrestrictLi: added ability to delete the download history
Diffstat (limited to 'module/plugins/hooks')
-rw-r--r-- | module/plugins/hooks/UnrestrictLi.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/module/plugins/hooks/UnrestrictLi.py b/module/plugins/hooks/UnrestrictLi.py index 793e63e8f..0810a22d5 100644 --- a/module/plugins/hooks/UnrestrictLi.py +++ b/module/plugins/hooks/UnrestrictLi.py @@ -22,13 +22,14 @@ from module.common.json_layer import json_loads class UnrestrictLi(MultiHoster): __name__ = "UnrestrictLi" - __version__ = "0.01" + __version__ = "0.02" __type__ = "hook" __config__ = [("activated", "bool", "Activated", "False"), ("hosterListMode", "all;listed;unlisted", "Use for hosters (if supported)", "all"), ("hosterList", "str", "Hoster list (comma separated)", ""), ("unloadFailing", "bool", "Revert to standard download if download fails", "False"), - ("interval", "int", "Reload interval in hours (0 to disable)", "24")] + ("interval", "int", "Reload interval in hours (0 to disable)", "24"), + ("history", "bool", "Delete History", "False")] __description__ = """Unrestrict.li hook plugin""" __author_name__ = ("stickell") |