diff options
author | Frank Dana <ferdnyc@gmail.com> | 2021-10-12 12:28:30 +0000 |
---|---|---|
committer | FeRD (Frank Dana) <ferdnyc@gmail.com> | 2022-02-20 22:18:00 -0500 |
commit | 27023591ef33729adec96f7f976177fbd8de80f2 (patch) | |
tree | 03ceb2bab7ac2fb4ee15c5b39be65d2ee959f135 | |
parent | 46c2abe8fce53f979bcf1dd4724012aba1a05f89 (diff) |
Move '*.blend' to top of Blender glob list
The globs for Blender scene files listed three possible matches,
with "*.blender" first, followed by two variations on "*.blend"
(lowercase and all-caps).
But Blender names its scene files "filename.blend", and always has.
Having "*.blender" listed first is problematic, because some tools
(e.g. GNOME Control Center) show only the first glob when describing
a type. As a result, its interface was claiming that Blender is the
default application for "*.blender" files, when it should be shown
as the default for "*.blend" files.
-rw-r--r-- | data/freedesktop.org.xml.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/freedesktop.org.xml.in b/data/freedesktop.org.xml.in index 49fb604..4f972a5 100644 --- a/data/freedesktop.org.xml.in +++ b/data/freedesktop.org.xml.in @@ -1572,9 +1572,9 @@ command to generate the output files. <mime-type type="application/x-blender"> <comment>Blender scene</comment> <generic-icon name="image-x-generic"/> - <glob pattern="*.blender"/> <glob pattern="*.blend"/> <glob pattern="*.BLEND"/> + <glob pattern="*.blender"/> <magic priority="50"> <match type="string" value="BLENDER" offset="0"/> </magic> |