diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-12-17 21:53:57 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-12-17 21:53:57 +0100 |
commit | 4e918edba6c3808b095eab1bad137a2a8cab970d (patch) | |
tree | 718dac3c4f048edff7711088f3ad23c7678a2378 /module/plugins/Base.py | |
parent | improve share online (diff) | |
download | pyload-4e918edba6c3808b095eab1bad137a2a8cab970d.tar.xz |
updated plugin api and plugin manager
Diffstat (limited to 'module/plugins/Base.py')
-rw-r--r-- | module/plugins/Base.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/module/plugins/Base.py b/module/plugins/Base.py index 98573ea63..b166ebae8 100644 --- a/module/plugins/Base.py +++ b/module/plugins/Base.py @@ -17,11 +17,16 @@ @author: RaNaN """ +# TODO: config format definition +# more attributes if needed +# get rid of catpcha & container plugins ?! (move to crypter & internals) +# adapt old plugins as needed + class Base(object): """ The Base plugin class with all shared methods and every possible attribute for plugin definition. """ - __version__ = "0.4" + __version__ = "0.1" #: Regexp pattern which will be matched for download plugins __pattern__ = r"" #: Flat config definition |