diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-07-29 18:21:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-29 18:21:13 +0200 |
commit | 8ee7adac1e285b47bd16d7420365fc5976a88a78 (patch) | |
tree | fd6ab0bd7cfaafc0f678738a654b3a58ad3c9c4a /misc/dist | |
parent | a202947003b6b43728d8dd27358e3577f411f395 (diff) | |
parent | 0218616747387b5c63bece8a64c87323d1bd704f (diff) |
Merge pull request #51019 from YeldhamDev/mime_tweaks
Make some small tweaks to the MIME info
Diffstat (limited to 'misc/dist')
-rw-r--r-- | misc/dist/linux/org.godotengine.Godot.xml | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/misc/dist/linux/org.godotengine.Godot.xml b/misc/dist/linux/org.godotengine.Godot.xml index e51179cd61..989db6afaa 100644 --- a/misc/dist/linux/org.godotengine.Godot.xml +++ b/misc/dist/linux/org.godotengine.Godot.xml @@ -2,20 +2,20 @@ <mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info"> <mime-type type="application/x-godot-project"> <comment>Godot Engine project</comment> - <icon name="x-godot-project" /> - <glob pattern="*.godot"/> + <icon name="x-godot-project"/> + <glob pattern="project.godot"/> </mime-type> <mime-type type="application/x-godot-resource"> <comment>Godot Engine resource</comment> - <icon name="x-godot-resource" /> + <icon name="x-godot-resource"/> <glob pattern="*.res"/> <glob pattern="*.tres"/> </mime-type> <mime-type type="application/x-godot-scene"> <comment>Godot Engine scene</comment> - <icon name="x-godot-scene" /> + <icon name="x-godot-scene"/> <glob pattern="*.scn"/> <glob pattern="*.tscn"/> <glob pattern="*.escn"/> @@ -23,13 +23,15 @@ <mime-type type="application/x-godot-shader"> <comment>Godot Engine shader</comment> - <icon name="x-godot-shader" /> + <sub-class-of type="text/plain"/> + <icon name="x-godot-shader"/> <glob pattern="*.gdshader"/> </mime-type> <mime-type type="application/x-gdscript"> <comment>GDScript script</comment> - <icon name="x-gdscript" /> + <sub-class-of type="text/plain"/> + <icon name="x-gdscript"/> <glob pattern="*.gd"/> </mime-type> </mime-info> |