From 6f824fe7ac7f1151cf09166d564a07b455cf9fb9 Mon Sep 17 00:00:00 2001 From: Pablo Barciela Date: Sun, 3 Jun 2018 21:27:19 +0200 Subject: Add .a (Ar) support Fixes https://github.com/mate-desktop/engrampa/issues/198#issuecomment-394156805 --- src/fr-init.c | 2 ++ 1 file changed, 2 insertions(+) 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" }, -- cgit v1.2.1