mirror of
https://github.com/bryanthaboi/gen1recomp.git
synced 2026-08-28 18:06:09 +02:00
Merge pull request #1877 from 1Jamie/flatpak-lic-fix
update flatpak information that was left as template default
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
<name>gen1recomp</name>
|
<name>gen1recomp</name>
|
||||||
<summary>Pokémon Gen 1/2 recompilation</summary>
|
<summary>Pokémon Gen 1/2 recompilation</summary>
|
||||||
<metadata_license>CC0-1.0</metadata_license>
|
<metadata_license>CC0-1.0</metadata_license>
|
||||||
<project_license>LicenseRef-proprietary</project_license>
|
<project_license>MIT</project_license>
|
||||||
<developer_name>The Bois Club</developer_name>
|
<developer_name>The Bois Club</developer_name>
|
||||||
<description>
|
<description>
|
||||||
<p>
|
<p>
|
||||||
@@ -14,7 +14,8 @@
|
|||||||
</p>
|
</p>
|
||||||
</description>
|
</description>
|
||||||
<launchable type="desktop-id">com.theboisclub.gen1recomp.desktop</launchable>
|
<launchable type="desktop-id">com.theboisclub.gen1recomp.desktop</launchable>
|
||||||
<url type="homepage">https://github.com/bryanthaboi/gen1recomp</url>
|
<url type="homepage">https://gen1re.com/</url>
|
||||||
|
<url type="vcs-browser">https://github.com/bryanthaboi/gen1recomp</url>
|
||||||
<screenshots>
|
<screenshots>
|
||||||
<screenshot type="default">
|
<screenshot type="default">
|
||||||
<caption>Launcher</caption>
|
<caption>Launcher</caption>
|
||||||
|
|||||||
@@ -21,5 +21,13 @@ local xml = meta:read("*a")
|
|||||||
meta:close()
|
meta:close()
|
||||||
check(xml:find("<releases>", 1, true), "AppStream metainfo includes releases")
|
check(xml:find("<releases>", 1, true), "AppStream metainfo includes releases")
|
||||||
check(xml:find("<release ", 1, true), "AppStream metainfo includes a release entry")
|
check(xml:find("<release ", 1, true), "AppStream metainfo includes a release entry")
|
||||||
|
check(xml:find("<project_license>MIT</project_license>", 1, true),
|
||||||
|
"AppStream metainfo declares MIT project license")
|
||||||
|
check(not xml:find("LicenseRef-proprietary", 1, true),
|
||||||
|
"AppStream metainfo must not claim proprietary")
|
||||||
|
check(xml:find('url type="homepage">https://gen1re.com/</url>', 1, true),
|
||||||
|
"AppStream metainfo homepage is gen1re.com")
|
||||||
|
check(xml:find('url type="vcs-browser">https://github.com/bryanthaboi/gen1recomp</url>', 1, true),
|
||||||
|
"AppStream metainfo vcs-browser points at the public repo")
|
||||||
|
|
||||||
print("ok")
|
print("ok")
|
||||||
|
|||||||
Reference in New Issue
Block a user