diff options
author | rbuj <[email protected]> | 2020-10-05 15:58:40 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-10-17 17:55:40 +0200 |
commit | 84fb5cfe96263f79e50b68a5a6996e40c514cf74 (patch) | |
tree | 83fd1f200a490996a556b77f5c77d4b3f112e3a1 /src/fr-command-7z.c | |
parent | 6408a9a684e3fca9a9cae893759f1a8a807df5b2 (diff) | |
download | engrampa-84fb5cfe96263f79e50b68a5a6996e40c514cf74.tar.bz2 engrampa-84fb5cfe96263f79e50b68a5a6996e40c514cf74.tar.xz |
Add Electronic Publication (EPUB) support
$ file -b --mime-type don-quijoti-epub3.epub
application/epub+zip
Diffstat (limited to 'src/fr-command-7z.c')
-rw-r--r-- | src/fr-command-7z.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/fr-command-7z.c b/src/fr-command-7z.c index bd8406b..796e03a 100644 --- a/src/fr-command-7z.c +++ b/src/fr-command-7z.c @@ -578,7 +578,8 @@ fr_command_7z_handle_error (FrCommand *comm, } -const char *sevenz_mime_types[] = { "application/x-7z-compressed", +const char *sevenz_mime_types[] = { "application/epub+zip", + "application/x-7z-compressed", "application/x-arj", "application/vnd.ms-cab-compressed", "application/x-cd-image", @@ -641,7 +642,8 @@ fr_command_7z_get_capabilities (FrCommand *comm, else capabilities |= FR_COMMAND_CAN_READ; - if (is_mime_type (mime_type, "application/x-cbz") + if (is_mime_type (mime_type, "application/epub+zip") + || is_mime_type (mime_type, "application/x-cbz") || is_mime_type (mime_type, "application/x-ms-dos-executable") || is_mime_type (mime_type, "application/zip")) { |