diff options
Diffstat (limited to 'module/plugins/container')
-rw-r--r-- | module/plugins/container/CCF.py | 6 | ||||
-rw-r--r-- | module/plugins/container/DLC.py | 6 | ||||
-rw-r--r-- | module/plugins/container/RSDF.py | 6 | ||||
-rw-r--r-- | module/plugins/container/TXT.py | 10 |
4 files changed, 14 insertions, 14 deletions
diff --git a/module/plugins/container/CCF.py b/module/plugins/container/CCF.py index f082e1142..2cafb2977 100644 --- a/module/plugins/container/CCF.py +++ b/module/plugins/container/CCF.py @@ -18,9 +18,9 @@ class CCF(Container): __status__ = "testing" __pattern__ = r'.+\.ccf$' - __config__ = [("activated" , "bool", "Activated" , True), - ("use_subfolder" , "bool", "Save package to subfolder" , True), - ("subfolder_per_package", "bool", "Create a subfolder for each package", True)] + __config__ = [("activated" , "bool" , "Activated" , True ), + ("use_premium" , "bool" , "Use premium account if available", True ), + ("folder_per_package", "Default;Yes;No", "Create folder for each package" , "Default")] __description__ = """CCF container decrypter plugin""" __license__ = "GPLv3" diff --git a/module/plugins/container/DLC.py b/module/plugins/container/DLC.py index 6e8b0cf83..91e421590 100644 --- a/module/plugins/container/DLC.py +++ b/module/plugins/container/DLC.py @@ -18,9 +18,9 @@ class DLC(Container): __status__ = "testing" __pattern__ = r'(.+\.dlc|[\w\+^_]+==[\w\+^_/]+==)$' - __config__ = [("activated" , "bool", "Activated" , True), - ("use_subfolder" , "bool", "Save package to subfolder" , True), - ("subfolder_per_package", "bool", "Create a subfolder for each package", True)] + __config__ = [("activated" , "bool" , "Activated" , True ), + ("use_premium" , "bool" , "Use premium account if available", True ), + ("folder_per_package", "Default;Yes;No", "Create folder for each package" , "Default")] __description__ = """DLC container decrypter plugin""" __license__ = "GPLv3" diff --git a/module/plugins/container/RSDF.py b/module/plugins/container/RSDF.py index f35bc5136..ec9e89171 100644 --- a/module/plugins/container/RSDF.py +++ b/module/plugins/container/RSDF.py @@ -18,9 +18,9 @@ class RSDF(Container): __status__ = "testing" __pattern__ = r'.+\.rsdf$' - __config__ = [("activated" , "bool", "Activated" , True), - ("use_subfolder" , "bool", "Save package to subfolder" , True), - ("subfolder_per_package", "bool", "Create a subfolder for each package", True)] + __config__ = [("activated" , "bool" , "Activated" , True ), + ("use_premium" , "bool" , "Use premium account if available", True ), + ("folder_per_package", "Default;Yes;No", "Create folder for each package" , "Default")] __description__ = """RSDF container decrypter plugin""" __license__ = "GPLv3" diff --git a/module/plugins/container/TXT.py b/module/plugins/container/TXT.py index e607d5150..6ab870d94 100644 --- a/module/plugins/container/TXT.py +++ b/module/plugins/container/TXT.py @@ -13,11 +13,11 @@ class TXT(Container): __status__ = "testing" __pattern__ = r'.+\.(txt|text)$' - __config__ = [("activated" , "bool", "Activated" , True ), - ("use_subfolder" , "bool", "Save package to subfolder" , True ), - ("subfolder_per_package", "bool", "Create a subfolder for each package", True ), - ("flush" , "bool", "Flush list after adding" , False ), - ("encoding" , "str" , "File encoding" , "utf-8")] + __config__ = [("activated" , "bool" , "Activated" , True ), + ("use_premium" , "bool" , "Use premium account if available", True ), + ("folder_per_package", "Default;Yes;No", "Create folder for each package" , "Default"), + ("flush" , "bool" , "Flush list after adding" , False ), + ("encoding" , "str" , "File encoding" , "utf-8" )] __description__ = """Read link lists in plain text formats""" __license__ = "GPLv3" |