diff options
author | Sergey Ponomarev <[email protected]> | 2018-10-30 13:17:55 +0200 |
---|---|---|
committer | sponomarev <[email protected]> | 2018-10-30 13:17:55 +0200 |
commit | f06c2164fbc7b0e890fd2efdb05c0516f5ad3142 (patch) | |
tree | 50c92733149f79e493a6b21b33d1ec38386fa690 /src/fr-init.c | |
parent | 8ef808ee4063e8d3915d6d3a0d540bb945005368 (diff) | |
download | engrampa-f06c2164fbc7b0e890fd2efdb05c0516f5ad3142.tar.bz2 engrampa-f06c2164fbc7b0e890fd2efdb05c0516f5ad3142.tar.xz |
Add brotli 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 751cdcd..2927458 100644 --- a/src/fr-init.c +++ b/src/fr-init.c @@ -65,6 +65,7 @@ FrMimeTypeDescription mime_type_desc[] = { { "application/x-ar", ".a", N_("Ar (.a)"), 0 }, { "application/x-ar", ".ar", N_("Ar (.ar)"), 0 }, { "application/x-arj", ".arj", N_("Arj (.arj)"), 0 }, + { "application/x-brotli", ".br", N_("brotli (.br)"), 0 }, { "application/x-bzip", ".bz2", NULL, 0 }, { "application/x-bzip-compressed-tar", ".tar.bz2", N_("Tar compressed with bzip2 (.tar.bz2)"), 0 }, { "application/x-bzip1", ".bz", NULL, 0 }, @@ -119,6 +120,7 @@ FrExtensionType file_ext_type[] = { { ".ar", "application/x-ar" }, { ".arj", "application/x-arj" }, { ".bin", "application/x-stuffit" }, + { ".br", "application/x-brotli" }, { ".bz", "application/x-bzip" }, { ".bz2", "application/x-bzip" }, { ".cab", "application/vnd.ms-cab-compressed" }, |