diff options
author | Sergey Ponomarev <[email protected]> | 2018-11-03 22:59:40 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-07-30 10:12:49 +0200 |
commit | e1df6882d62bb1f0c700f3ee2d480c32d988eab5 (patch) | |
tree | 05c0dbfe9c8b82150b5126c7601003f39f19565e /src/fr-init.c | |
parent | 770306b068d930b804cc1a62ce66fc5b87c8c8cd (diff) | |
download | engrampa-e1df6882d62bb1f0c700f3ee2d480c32d988eab5.tar.bz2 engrampa-e1df6882d62bb1f0c700f3ee2d480c32d988eab5.tar.xz |
Add zcompress support
Diffstat (limited to 'src/fr-init.c')
-rw-r--r-- | src/fr-init.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/fr-init.c b/src/fr-init.c index c7c1995..748c79a 100644 --- a/src/fr-init.c +++ b/src/fr-init.c @@ -111,6 +111,7 @@ FrMimeTypeDescription mime_type_desc[] = { { "application/x-xz-compressed-tar", ".tar.xz", N_("Tar compressed with xz (.tar.xz)"), 0 }, { "application/x-zoo", ".zoo", N_("Zoo (.zoo)"), 0 }, { "application/zip", ".zip", N_("Zip (.zip)"), 0 }, + { "application/zstd", ".zst", N_("Zstandard (.zst)"), 0 }, { NULL, NULL, NULL, 0 } }; @@ -180,6 +181,7 @@ FrExtensionType file_ext_type[] = { { ".Z", "application/x-compress" }, { ".zip", "application/zip" }, { ".zoo", "application/x-zoo" }, + { ".zst", "application/zstd" }, { NULL, NULL } }; |