Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Appdata related patches #796

Merged
merged 3 commits into from Dec 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ _The below instructions have been tested on Ubuntu 20.04_
```bash
sudo apt update
sudo apt install \
appstream-util \
appstreamcli \
cmake \
gettext \
git \
Expand Down
34 changes: 17 additions & 17 deletions data/com.github.geigi.cozy.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
<provides>
<binary>com.github.geigi.cozy</binary>
</provides>
<launchable type="desktop-id">com.github.geigi.cozy.desktop</launchable>
<translation type="gettext">com.github.geigi.cozy</translation>
<screenshots>
<screenshot type="default">
<image>https://raw.githubusercontent.com/geigi/cozy/img/img/screenshot1.png</image>
Expand All @@ -42,19 +44,17 @@
<image>https://raw.githubusercontent.com/geigi/cozy/img/img/screenshot4.png</image>
</screenshot>
</screenshots>
<developer_name>Julian Geywitz</developer_name>
<developer_name translatable="no">Julian Geywitz</developer_name>
<url type="homepage">https://cozy.sh</url>
<url type="bugtracker">https://github.com/geigi/cozy/issues</url>
<url type="help">https://github.com/geigi/cozy/issues</url>
This conversation was marked as resolved.
Show resolved Hide resolved
<url type="help">https://matrix.to/#/#cozy:gnome.org?via=matrix.org&amp;via=gnome.org</url>
<url type="donation">https://www.patreon.com/geigi</url>
<url type="vcs-browser">https://github.com/geigi/cozy/</url>
<url type="translate">https://www.transifex.com/geigi/cozy/</url>
<update_contact>[email protected]</update_contact>
<custom>
<value key="Purism::form_factor">workstation</value>
<value key="Purism::form_factor">mobile</value>
</custom>
<releases>
<release version="1.2.1" timestamp="1661086733">
<description>
<description translatable="no">
<ul>
<li>Support for GTK style manager (thanks A6GibKm)</li>
<li>Use natural sorting for chapter titles</li>
Expand All @@ -63,7 +63,7 @@
</description>
</release>
<release version="1.2.0" timestamp="1641661352">
<description>
<description translatable="no">
<p>
This release features a redesigned preference window. All settings can now be searched. Good news for mobile users too: the redesign should work a lot better on mobile devices now.
</p>
Expand All @@ -78,7 +78,7 @@
</description>
</release>
<release version="1.1.3" timestamp="1640949259">
<description>
<description translatable="no">
<p>
A small bugfix release which makes Cozy more reliable.
</p>
Expand All @@ -91,7 +91,7 @@
</description>
</release>
<release version="1.1.2" timestamp="1629458444">
<description>
<description translatable="no">
<p>
A small bugfix release which makes Cozy more reliable.
</p>
Expand All @@ -107,7 +107,7 @@
</description>
</release>
<release version="1.1.1" timestamp="1629456144">
<description>
<description translatable="no">
<p>
A small bugfix release which makes Cozy more reliable.
</p>
Expand All @@ -123,7 +123,7 @@
</description>
</release>
<release version="1.1.0" timestamp="1628322225">
<description>
<description translatable="no">
<p>
This release features a redesigned library with responsiveness in mind.
</p>
Expand All @@ -140,7 +140,7 @@
</description>
</release>
<release version="1.0.4" timestamp="1627489551">
<description>
<description translatable="no">
<p>
Performance improvements for the book detail view and some bugfixes.
</p>
Expand All @@ -155,7 +155,7 @@
</description>
</release>
<release version="1.0.3" timestamp="1622826417">
<description>
<description translatable="no">
<p>
A small bugfix release which makes Cozy more reliable.
</p>
Expand All @@ -170,7 +170,7 @@
</description>
</release>
<release version="1.0.2" timestamp="1622490608">
<description>
<description translatable="no">
<p>
A small bugfix release which makes Cozy more reliable.
</p>
Expand All @@ -185,7 +185,7 @@
</description>
</release>
<release version="1.0.1" timestamp="1622363623">
<description>
<description translatable="no">
<p>
This release features chapter support for m4b files.
</p>
Expand All @@ -199,7 +199,7 @@
</description>
</release>
<release version="1.0.0" timestamp="1622358236">
<description>
<description translatable="no">
<p>
This release features chapter support for m4b files.
</p>
Expand Down
8 changes: 4 additions & 4 deletions data/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ appstream_file = i18n.merge_file(
install_dir: join_paths(get_option('datadir'), 'metainfo')
)

appstream_util = find_program('appstream-util', required: false)
if appstream_util.found()
test('Validate appstream file', appstream_util,
args: ['validate', appstream_file]
appstreamcli = find_program('appstreamcli', required: false)
if appstreamcli.found()
test('Validate appstream file', appstreamcli,
args: ['validate', '--no-net', appstream_file]
)
endif
Loading