Skip to content

Commit b730fa0

Browse files
sebasticjef-n
authored andcommittedOct 22, 2015
Fix desktop-file-valide issues.
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.
1 parent 7102c52 commit b730fa0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎debian/qbrowser.desktop

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ Exec=/usr/bin/qbrowser %F
5353
Terminal=false
5454
StartupNotify=false
5555
Categories=Qt;Education;Science;Geography;
56-
Keywords=map;globe;postgis;wms;wfs;ogc;osgeo
56+
Keywords=map;globe;postgis;wms;wfs;ogc;osgeo;

‎debian/qgis.desktop

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ Terminal=false
5454
StartupNotify=false
5555
Categories=Qt;Education;Science;Geography;
5656
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;
57-
Keywords=map;globe;postgis;wms;wfs;ogc;osgeo
57+
Keywords=map;globe;postgis;wms;wfs;ogc;osgeo;

0 commit comments

Comments
 (0)
Please sign in to comment.