diff options
Diffstat (limited to 'module/plugins/crypter/FourChanOrg.py')
-rw-r--r-- | module/plugins/crypter/FourChanOrg.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/module/plugins/crypter/FourChanOrg.py b/module/plugins/crypter/FourChanOrg.py index a2fdb99d1..519fb75c4 100644 --- a/module/plugins/crypter/FourChanOrg.py +++ b/module/plugins/crypter/FourChanOrg.py @@ -9,13 +9,14 @@ from module.plugins.internal.Crypter import Crypter class FourChanOrg(Crypter): - __name = "4chan" + __name__ = "FourChanOrg" __type__ = "crypter" - __version__ = "0.33" + __version__ = "0.34" __status__ = "testing" __pattern__ = r'http://(?:www\.)?boards\.4chan\.org/\w+/res/(\d+)' - __config__ = [("use_subfolder" , "bool", "Save package to subfolder" , True), + __config__ = [("activated", "bool", "Activated", True), + ("use_subfolder" , "bool", "Save package to subfolder" , True), ("subfolder_per_pack", "bool", "Create a subfolder for each package", True)] __description__ = """4chan.org folder decrypter plugin""" |