1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-05-29 08:29:26 +00:00

appdata.xml: fix a validation error

appstream-util version 0.7.16 complains:

  $ appstream-util validate-relax --nonet ./data/sm.puri.Calls.appdata.xml
  ./data/sm.puri.Calls.appdata.xml: FAILED:
  • tag-missing           : <description> required
  Validation of files failed

What it actually means that the <description> is not well formed because
it should contain a paragraph.
This commit is contained in:
Lubomir Rintel 2019-10-09 11:07:20 +02:00
parent e7ba7d731c
commit 4b4cfa0426

View file

@ -6,7 +6,9 @@
<name>Calls</name>
<summary>A phone dialer and call handler</summary>
<description>Calls is a simple, elegant phone dialer and call handler built using GTK+ 3.</description>
<description>
<p>Calls is a simple, elegant phone dialer and call handler built using GTK+ 3.</p>
</description>
<url type="homepage">https://source.puri.sm/Librem5/calls</url>
<url type="bugtracker">https://source.puri.sm/Librem5/calls/issues</url>