Skip to content

Commit

Permalink
Fix desktop-file-valide issues.
Browse files Browse the repository at this point in the history
The desktop-file-valide utility reported the following issues:
```
debian/qbrowser.desktop: hint: value "Qt;Education;Science;Geography;" for key "Categories" in group "Desktop Entry" contains more than one main category; application might appear more than once in the application menu
debian/qbrowser.desktop: error: value "map;globe;postgis;wms;wfs;ogc;osgeo" for locale string list key "Keywords" in group "Desktop Entry" does not have a semicolon (';') as trailing character

debian/qgis.desktop: hint: value "Qt;Education;Science;Geography;" for key "Categories" in group "Desktop Entry" contains more than one main category; application might appear more than once in the application menu
debian/qgis.desktop: error: value "map;globe;postgis;wms;wfs;ogc;osgeo" for locale string list key "Keywords" in group "Desktop Entry" does not have a semicolon (';') as trailing character
```

Only the Keywords syntax error is addressed, the Categories hint is left as-is.
  • Loading branch information
sebastic authored and jef-n committed Oct 22, 2015
1 parent 7102c52 commit b730fa0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion debian/qbrowser.desktop
Expand Up @@ -53,4 +53,4 @@ Exec=/usr/bin/qbrowser %F
Terminal=false
StartupNotify=false
Categories=Qt;Education;Science;Geography;
Keywords=map;globe;postgis;wms;wfs;ogc;osgeo
Keywords=map;globe;postgis;wms;wfs;ogc;osgeo;
2 changes: 1 addition & 1 deletion debian/qgis.desktop
Expand Up @@ -54,4 +54,4 @@ Terminal=false
StartupNotify=false
Categories=Qt;Education;Science;Geography;
MimeType=application/x-qgis-project;image/tiff;image/jpeg;image/jp2;application/x-raster-aig;application/x-raster-ecw;application/x-raster-mrsid;application/x-mapinfo-mif;application/x-esri-shape;
Keywords=map;globe;postgis;wms;wfs;ogc;osgeo
Keywords=map;globe;postgis;wms;wfs;ogc;osgeo;

0 comments on commit b730fa0

Please sign in to comment.