summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Barciela <[email protected]>2018-06-03 21:27:19 +0200
committerraveit65 <[email protected]>2018-06-12 08:34:01 +0200
commit6f824fe7ac7f1151cf09166d564a07b455cf9fb9 (patch)
tree2211c2ffd8e346c89585f1da3e860a9dd93a0e69
parent3ee4f6ce2324188c27686abc2c4eea2f586bebe8 (diff)
downloadengrampa-6f824fe7ac7f1151cf09166d564a07b455cf9fb9.tar.bz2
engrampa-6f824fe7ac7f1151cf09166d564a07b455cf9fb9.tar.xz
Add .a (Ar) support
Fixes https://github.com/mate-desktop/engrampa/issues/198#issuecomment-394156805
-rw-r--r--src/fr-init.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/fr-init.c b/src/fr-init.c
index 8a81786..6aed80d 100644
--- a/src/fr-init.c
+++ b/src/fr-init.c
@@ -62,6 +62,7 @@ FrMimeTypeDescription mime_type_desc[] = {
{ "application/x-7z-compressed-tar", ".tar.7z", N_("Tar compressed with 7z (.tar.7z)"), 0 },
{ "application/x-ace", ".ace", N_("Ace (.ace)"), 0 },
{ "application/x-alz", ".alz", NULL, 0 },
+ { "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-bzip", ".bz2", NULL, 0 },
@@ -108,6 +109,7 @@ FrExtensionType file_ext_type[] = {
{ ".7z", "application/x-7z-compressed" },
{ ".ace", "application/x-ace" },
{ ".alz", "application/x-alz" },
+ { ".a", "application/x-ar" },
{ ".ar", "application/x-ar" },
{ ".arj", "application/x-arj" },
{ ".bin", "application/x-stuffit" },