* Fixed preferred application of the image super type (it's haiku-showimage,

not obos-showimage for quite some time now).
* Removed preferred application from image sub-types - the one in the super
  type is sufficient.
* Added file extension and short description to the PNG image type.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16568 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2006-03-02 13:42:11 +00:00
parent 7ac39b9272
commit e11882b484
4 changed files with 12 additions and 13 deletions
+1 -1
View File
@@ -3,4 +3,4 @@ resource(0, "BEOS:TYPE") #'MIMS' "application/x-vnd.Be-meta-mime";
resource(1, "META:TYPE") "image";
resource(2, "META:PREF_APP") #'MSIG' "application/x-vnd.obos.showimage";
resource(2, "META:PREF_APP") #'MSIG' "application/x-vnd.haiku-showimage";
+2 -5
View File
@@ -3,14 +3,11 @@ resource(0, "BEOS:TYPE") #'MIMS' "application/x-vnd.Be-meta-mime";
resource(1, "META:TYPE") "image/gif";
resource(2, "META:SNIFF_RULE") "0.70 (\"GIF8\")";
resource(2, "META:SNIFF_RULE") "0.70 (\"GIF8\")";
resource(3, "META:S:DESC") #'MSDC' "GIF Image";
resource(4, "META:PREF_APP") #'MSIG' "application/x-vnd.obos.showimage";
resource(5, "META:EXTENS") message(234)
{
resource(4, "META:EXTENS") message(234) {
"extensions" = "gif",
"type" = "image/gif"
};
+2 -5
View File
@@ -3,14 +3,11 @@ resource(0, "BEOS:TYPE") #'MIMS' "application/x-vnd.Be-meta-mime";
resource(1, "META:TYPE") "image/jpeg";
resource(2, "META:SNIFF_RULE") "0.50 (\"\\377\\330\\377\")";
resource(2, "META:SNIFF_RULE") "0.50 (\"\\377\\330\\377\")";
resource(3, "META:S:DESC") #'MSDC' "JPEG Image";
resource(4, "META:PREF_APP") #'MSIG' "application/x-vnd.obos.showimage";
resource(5, "META:EXTENS") message(234)
{
resource(5, "META:EXTENS") message(234) {
"extensions" = "jpeg",
"extensions" = "jpg",
"type" = "image/jpeg"
+7 -2
View File
@@ -3,6 +3,11 @@ resource(0, "BEOS:TYPE") #'MIMS' "application/x-vnd.Be-meta-mime";
resource(1, "META:TYPE") "image/png";
resource(2, "META:SNIFF_RULE") "0.70 (\"\\211PNG\\015\\012\\032\\012\")";
resource(2, "META:SNIFF_RULE") "0.70 (\"\\211PNG\\015\\012\\032\\012\")";
resource(3, "META:PREF_APP") #'MSIG' "application/x-vnd.obos.showimage";
resource(3, "META:S:DESC") #'MSDC' "PNG Image";
resource(4, "META:EXTENS") message(234) {
"extensions" = "png",
"type" = "image/png"
};