diff options
author | 2013-08-23 11:53:53 +0200 | |
---|---|---|
committer | 2013-08-23 11:53:53 +0200 | |
commit | 4bf9040a446e578bbc240ea1ec91551509d32f8e (patch) | |
tree | c0b80c9a0af18530560b69c5d29b1002eec35b3b /pyload/plugins/hoster/FastixRu.py | |
parent | Moved new plugin to pyload addons (diff) | |
download | pyload-4bf9040a446e578bbc240ea1ec91551509d32f8e.tar.xz |
Moving settings from the account to the hoster plugin
Diffstat (limited to 'pyload/plugins/hoster/FastixRu.py')
-rw-r--r-- | pyload/plugins/hoster/FastixRu.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pyload/plugins/hoster/FastixRu.py b/pyload/plugins/hoster/FastixRu.py index c152f2637..db3302579 100644 --- a/pyload/plugins/hoster/FastixRu.py +++ b/pyload/plugins/hoster/FastixRu.py @@ -11,6 +11,10 @@ class FastixRu(Hoster): __name__ = "FastixRu" __version__ = "0.02" __type__ = "hoster" + __config__ = [("activated", "bool", "Activated", "False"), + ("hosterListMode", "all;listed;unlisted", "Use for hosters (if supported)", "all"), + ("unloadFailing", "bool", "Revert to standard download if download fails", "False"), + ("interval", "int", "Reload interval in hours (0 to disable)", "24")] __pattern__ = r"http?://.*fastix.ru\..*" __description__ = """Fastix hoster plugin""" __author_name__ = ("Massimo, Rosamilia") |