From ef9353d7af566f60cc2f1f4a015c33e6231df96c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 26 Feb 2025 15:24:27 +0530 Subject: [PATCH] Blacklist the third party kobo plugins whose functionality has become builtin --- src/calibre/customize/ui.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/calibre/customize/ui.py b/src/calibre/customize/ui.py index 9756305608..930bbed72a 100644 --- a/src/calibre/customize/ui.py +++ b/src/calibre/customize/ui.py @@ -39,6 +39,13 @@ builtin_names = frozenset(p.name for p in builtin_plugins) BLACKLISTED_PLUGINS = frozenset({ 'Marvin XD', 'iOS reader applications', + + # Subsumed by builtin functionality + 'KoboTouchExtended', + 'KePub Input', + 'KePub Output', + 'KePub Metadata Reader', + 'KePub Metadata Writer', })