diff options
| author | Victor Kareh <[email protected]> | 2019-02-22 10:19:33 -0500 | 
|---|---|---|
| committer | ZenWalker <[email protected]> | 2019-03-06 02:31:28 +0100 | 
| commit | c8665be751fed52d22d263e3b1a02cec4ac1aa34 (patch) | |
| tree | eaf33067922438db03d9c06208398a55082273ef /caja | |
| parent | 0672e308b62165dc688a60449f6f2205af634303 (diff) | |
| download | engrampa-c8665be751fed52d22d263e3b1a02cec4ac1aa34.tar.bz2 engrampa-c8665be751fed52d22d263e3b1a02cec4ac1aa34.tar.xz  | |
Support .udeb package format
This enables support for udeb (micro-deb) files, which are a package format used during bootstrapping a Debian installation. They have the same mimetype as regular deb files.
Diffstat (limited to 'caja')
| -rw-r--r-- | caja/caja-engrampa.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/caja/caja-engrampa.c b/caja/caja-engrampa.c index 3c49ad6..21c022b 100644 --- a/caja/caja-engrampa.c +++ b/caja/caja-engrampa.c @@ -153,6 +153,7 @@ static struct {  	char     *mime_type;  	gboolean  is_compressed;  } archive_mime_types[] = { +		{ "application/vnd.debian.binary-package", TRUE },  		{ "application/vnd.ms-cab-compressed", TRUE },  		{ "application/x-7z-compressed", TRUE },  		{ "application/x-7z-compressed-tar", TRUE }, @@ -172,7 +173,6 @@ static struct {  		{ "application/x-compress", TRUE },  		{ "application/x-compressed-tar", TRUE },  		{ "application/x-cpio", TRUE }, -		{ "application/x-deb", TRUE },  		{ "application/x-ear", TRUE },  		{ "application/x-gtar", FALSE },  		{ "application/x-gzip", TRUE },  | 
