diff options
author | 2013-08-07 19:35:43 +0200 | |
---|---|---|
committer | 2013-08-07 19:35:43 +0200 | |
commit | 681609d8fa13677f3e7756dc50a8483a7e8b72e5 (patch) | |
tree | 9c7b5771a9f1529edd91a6dfa1a0d00a46f91a84 /pyload/plugins/accounts/PremiumizeMe.py | |
parent | Updated translations (diff) | |
download | pyload-681609d8fa13677f3e7756dc50a8483a7e8b72e5.tar.xz |
MultiHosters: moved settings to account plugins
* removed addon plugins
Diffstat (limited to 'pyload/plugins/accounts/PremiumizeMe.py')
-rw-r--r-- | pyload/plugins/accounts/PremiumizeMe.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pyload/plugins/accounts/PremiumizeMe.py b/pyload/plugins/accounts/PremiumizeMe.py index 8b4569f06..af7956627 100644 --- a/pyload/plugins/accounts/PremiumizeMe.py +++ b/pyload/plugins/accounts/PremiumizeMe.py @@ -6,6 +6,11 @@ class PremiumizeMe(MultiHoster): __name__ = "PremiumizeMe" __version__ = "0.11" __type__ = "account" + __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 stanard download if download fails", "False"), + ("interval", "int", "Reload interval in hours (0 to disable)", "24")] __description__ = """Premiumize.Me account plugin""" __author_name__ = ("Florian Franzen") __author_mail__ = ("FlorianFranzen@gmail.com") |