diff options
author | suve <[email protected]> | 2018-10-11 23:24:53 +0200 |
---|---|---|
committer | monsta <[email protected]> | 2018-12-20 11:03:20 +0300 |
commit | 540e33ffe06e7608ea539e7db79170d6cc8cb041 (patch) | |
tree | 9f47fd75d5c9f7a8ba9c512f23c595040eb0acac | |
parent | cfdbd1fd17e8b994a1940478cdb5b0c9c27efe3c (diff) | |
download | eom-540e33ffe06e7608ea539e7db79170d6cc8cb041.tar.bz2 eom-540e33ffe06e7608ea539e7db79170d6cc8cb041.tar.xz |
Update the appdata XML file
- Fix appdata XML root node tag
- Change <id type="desktop"> to <id> in appdata XML
- Change <id type="desktop"> to <id> in appdata XML
-rw-r--r-- | data/Makefile.am | 2 | ||||
-rw-r--r-- | data/eom.appdata.xml.in | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/data/Makefile.am b/data/Makefile.am index 979bd15..0c376ae 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -9,7 +9,7 @@ desktopdir = $(datadir)/applications desktop_DATA = $(DESKTOP_FILES) @INTLTOOL_XML_RULE@ -appdatadir = $(datadir)/appdata +appdatadir = $(datadir)/metainfo appdata_in_files = eom.appdata.xml.in appdata_DATA = $(appdata_in_files:.xml.in=.xml) diff --git a/data/eom.appdata.xml.in b/data/eom.appdata.xml.in index c70fafd..68678f2 100644 --- a/data/eom.appdata.xml.in +++ b/data/eom.appdata.xml.in @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2014 Ryan Lerch <[email protected]> --> -<application> - <id type="desktop">eom.desktop</id> +<component type="desktop"> + <id>eom.desktop</id> <metadata_license>CC0-1.0</metadata_license> <_name>Eye of MATE</_name> <_summary>Simple image viewer</_summary> @@ -16,4 +16,4 @@ <screenshots> <screenshot type="default">http://mate-desktop.org/gallery/1.8/eom.png</screenshot> </screenshots> -</application> +</component> |