Skip to content

Commit

Permalink
Metainfo changes (#43)
Browse files Browse the repository at this point in the history
`appstreamcli` picked up some errors in the metainfo file, mainly the
format of the screenshots. Each `screenshot` needs to have an `image`
tag, and a caption tag is also recommended. The documentation can be
found here[1].

As clarified in #41, the license is also GPL-3+.

You can run `appstreamcli` by installing it from flathub
(`org.freedesktop.appstream.cli`) and running it as follows:

```sh
flatpak run org.freedesktop.appstream.cli validate --explain --pedantic project.metainfo.xml
```

[1] https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html#tag-screenshots
  • Loading branch information
The-King-of-Toasters authored Dec 28, 2023
1 parent a33ee2c commit 2a6d268
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions Sources/project.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<name>Jazz² Resurrection</name>
<summary>A re-implementation of Jazz Jackrabbit 2</summary>
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-3.0-only</project_license>
<project_license>GPL-3.0+</project_license>
<developer id="deat.tk">
<name>Daniel Rajf</name>
<url>https://deat.tk</url>
Expand Down Expand Up @@ -41,11 +41,20 @@
<url type="homepage">https://deat.tk/jazz2/</url>
<url type="bugtracker">https://github.com/deathkiller/jazz2-native/issues</url>
<url type="faq">https://deat.tk/jazz2/help</url>

<screenshots>
<screenshot type="default">https://raw.githubusercontent.com/deathkiller/jazz2/main/Docs/01.png</screenshot>
<screenshot>https://raw.githubusercontent.com/deathkiller/jazz2/main/Docs/02.png</screenshot>
<screenshot>https://raw.githubusercontent.com/deathkiller/jazz2/main/Docs/03.png</screenshot>
<screenshot type="default">
<image type="source" width="1440" height="810">https://raw.githubusercontent.com/deathkiller/jazz2/main/Docs/01.png</image>
<caption>Screenshot of Spaz in the level "Dungeon Dilemma."</caption>
</screenshot>
<screenshot>
<image type="source" width="1440" height="810">https://raw.githubusercontent.com/deathkiller/jazz2/main/Docs/02.png</image>
<caption>Screenshot of Jazz in the level "Marinated Rabbit."</caption>
</screenshot>
<screenshot>
<image type="source" width="1440" height="810">https://raw.githubusercontent.com/deathkiller/jazz2/main/Docs/03.png</image>
<caption>Screenshot of the story selection menu.</caption>
</screenshot>
</screenshots>

<provides>
Expand Down

0 comments on commit 2a6d268

Please sign in to comment.