From fedafa4978c454f02633ba0f43d8a14f8479effe Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 4 Oct 2023 18:45:49 +0530 Subject: [PATCH] Fix #2038432 [[Enhancement] Support for .cb7 files](https://bugs.launchpad.net/calibre/+bug/2038432) --- src/calibre/gui2/actions/add.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/actions/add.py b/src/calibre/gui2/actions/add.py index 02c6dafb4f..e9b0f84786 100644 --- a/src/calibre/gui2/actions/add.py +++ b/src/calibre/gui2/actions/add.py @@ -40,7 +40,7 @@ def get_filters(): (_('HTML books'), ['htm', 'html', 'xhtm', 'xhtml']), (_('LIT books'), ['lit']), (_('Text books'), ['txt', 'text', 'rtf', 'md', 'markdown', 'textile', 'txtz']), - (_('Comics'), ['cbz', 'cbr', 'cbc']), + (_('Comics'), ['cbz', 'cbr', 'cbc', 'cb7']), (_('Archives'), archives), (_('Wordprocessor files'), ['odt', 'doc', 'docx']), ]