diff options
author | Olivier <olivier-dev@gmx.com> | 2016-06-11 21:09:29 +0200 |
---|---|---|
committer | Olivier <olivier-dev@gmx.com> | 2016-06-11 21:09:29 +0200 |
commit | 78e1af94a999dc007f80749cf550654c8f625a23 (patch) | |
tree | 213c8b2b38e51ba38e55e2d2e1cd90d5667fc3e1 /module | |
parent | Fix forget archive.items in favor of chunks (diff) | |
download | pyload-78e1af94a999dc007f80749cf550654c8f625a23.tar.xz |
Increment version number
Diffstat (limited to 'module')
-rw-r--r-- | module/plugins/hooks/ExtractArchive.py | 4 | ||||
-rw-r--r-- | module/plugins/internal/Extractor.py | 2 | ||||
-rw-r--r-- | module/plugins/internal/UnRar.py | 2 | ||||
-rw-r--r-- | module/plugins/internal/UnTar.py | 2 | ||||
-rw-r--r-- | module/plugins/internal/UnZip.py | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/module/plugins/hooks/ExtractArchive.py b/module/plugins/hooks/ExtractArchive.py index 690abab25..fed9a62b9 100644 --- a/module/plugins/hooks/ExtractArchive.py +++ b/module/plugins/hooks/ExtractArchive.py @@ -98,8 +98,8 @@ class ArchiveQueue(object): class ExtractArchive(Addon): __name__ = "ExtractArchive" __type__ = "hook" - __version__ = "1.57" - __status__ = "broken" + __version__ = "1.58" + __status__ = "testing" __config__ = [("activated" , "bool" , "Activated" , True ), ("fullpath" , "bool" , "Extract with full paths" , True ), diff --git a/module/plugins/internal/Extractor.py b/module/plugins/internal/Extractor.py index 3c9af376a..a912843a1 100644 --- a/module/plugins/internal/Extractor.py +++ b/module/plugins/internal/Extractor.py @@ -23,7 +23,7 @@ class PasswordError(Exception): class Extractor(Plugin): __name__ = "Extractor" __type__ = "extractor" - __version__ = "0.42" + __version__ = "0.43" __status__ = "stable" __description__ = """Base extractor plugin""" diff --git a/module/plugins/internal/UnRar.py b/module/plugins/internal/UnRar.py index 1d2e79d58..e22120e94 100644 --- a/module/plugins/internal/UnRar.py +++ b/module/plugins/internal/UnRar.py @@ -12,7 +12,7 @@ from module.plugins.internal.misc import decode, encode, fsjoin, renice class UnRar(Extractor): __name__ = "UnRar" __type__ = "extractor" - __version__ = "1.31" + __version__ = "1.32" __status__ = "testing" __description__ = """RAR extractor plugin""" diff --git a/module/plugins/internal/UnTar.py b/module/plugins/internal/UnTar.py index 4e498c223..13a233634 100644 --- a/module/plugins/internal/UnTar.py +++ b/module/plugins/internal/UnTar.py @@ -12,7 +12,7 @@ from module.plugins.internal.misc import encode class UnTar(Extractor): __name__ = "UnTar" __type__ = "extractor" - __version__ = "0.01" + __version__ = "0.02" __status__ = "stable" __description__ = """TAR extractor plugin""" diff --git a/module/plugins/internal/UnZip.py b/module/plugins/internal/UnZip.py index 2870dc4eb..4a05ea155 100644 --- a/module/plugins/internal/UnZip.py +++ b/module/plugins/internal/UnZip.py @@ -12,7 +12,7 @@ from module.plugins.internal.misc import encode class UnZip(Extractor): __name__ = "UnZip" __type__ = "extractor" - __version__ = "1.21" + __version__ = "1.22" __status__ = "stable" __description__ = """ZIP extractor plugin""" |