diff options
author | Miro Hrončok <miro@hroncok.cz> | 2013-12-13 14:51:58 (GMT) |
---|---|---|
committer | Miro Hrončok <miro@hroncok.cz> | 2013-12-13 14:51:58 (GMT) |
commit | 585412bed623dc6adc8df5f27131997e6d2541a1 (patch) | |
tree | 06ac73eab1925d5e6494bcb690de08bec86ed10f /icons | |
parent | 3438dbad4d018c88b58f25e7d53e0d1dcac1d4b7 (diff) |
Change invalid Programming category to Development
Programming is not a valid category of .desktop file, it is not listed in either [Main Categories](http://standards.freedesktop.org/menu-spec/latest/apa.html) or [Additional Categories](http://standards.freedesktop.org/menu-spec/latest/apas02.html).
desktop-file-validate returns error:
openscad.desktop: error: value "Graphics;3DGraphics;Engineering;Programming;" for key "Categories" in group "Desktop Entry" contains an unregistered value "Programming"; values extending the format should start with "X-"
This changes it to Development, witch is a valid category listed in Additional Categories. Now desktop-file-validate only gives us a hint:
openscad.desktop: hint: value "Graphics;3DGraphics;Engineering;Development;" for key "Categories" in group "Desktop Entry" contains more than one main category; application might appear more than once in the application menu.
That is fine, as we want it both in Graphics and Development.
This is a valid response to #533
Diffstat (limited to 'icons')
-rw-r--r-- | icons/openscad.desktop | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/icons/openscad.desktop b/icons/openscad.desktop index f0282ac..46150a2 100644 --- a/icons/openscad.desktop +++ b/icons/openscad.desktop @@ -4,4 +4,4 @@ Version=1.0 Name=OpenSCAD Icon=openscad Exec=openscad %f -Categories=Graphics;3DGraphics;Engineering;Programming; +Categories=Graphics;3DGraphics;Engineering;Development; |