From 6e700c23a25afe7c2df557165a2caf27b5eece4a Mon Sep 17 00:00:00 2001 From: Armin Date: Fri, 10 Apr 2015 16:14:48 +0200 Subject: showing plugins nicer in settings -> "xxx (Addon)" instead "xxx_addon" Note: required re-create of plugin.conf (by simple deleting of plugin.conf) --- pyload/config/Parser.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'pyload/config/Parser.py') diff --git a/pyload/config/Parser.py b/pyload/config/Parser.py index 4c462946e..4c5ee6742 100644 --- a/pyload/config/Parser.py +++ b/pyload/config/Parser.py @@ -309,7 +309,13 @@ class ConfigParser(object): def addPluginConfig(self, name, config, outline=""): """adds config options with tuples (name, type, desc, default)""" if name not in self.plugin: - conf = {"desc": name, + for search, repl in ( ('_account', ' (Account)'), ('_addon', ' (Addon)'), ('_container', ''), ('_crypter', ' (Crypter)'), ('_extractor', ''), ('_hook', ' (Hook)'), ('_hoster', ' (Hoster)')): + if name.endswith(search): + desc = name.replace(search, repl) + break + else: + desc = name + conf = {"desc": desc, "outline": outline} self.plugin[name] = conf else: -- cgit v1.2.3