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

draft: Appstream related patches #320

Closed
wants to merge 2 commits into from
Closed
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
22 changes: 18 additions & 4 deletions data/com.rafaelmardojai.Blanket.metainfo.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -37,22 +37,36 @@
<url type="bugtracker">https://github.com/rafaelmardojai/blanket/issues</url>
<url type="translate">https://hosted.weblate.org/engage/blanket/</url>
<url type="donation">https://rafaelmardojai.com/donate/</url>
<developer_name>Rafael Mardojai CM</developer_name>
<url type="vcs-browser">https://github.com/rafaelmardojai/blanket</url>
<developer_name translatable="no">Rafael Mardojai CM</developer_name>
<update_contact>email_AT_rafaelmardojai.com</update_contact>
<content_rating type="oars-1.1" />

<launchable type="desktop-id">com.rafaelmardojai.Blanket.desktop</launchable>
<translation type="gettext">blanket</translation>

<categories>
<category>AudioVideo</category>
<category>Audio</category>
<category>GTK</category>
</categories>
<keywords>
<keyword>Concentrate</keyword>
<keyword>Focus</keyword>
<keyword>Noise</keyword>
<keyword>Productivity</keyword>
<keyword>Sleep</keyword>
</keywords>

<screenshots>
<screenshot type="default">
<image>https://raw.githubusercontent.com/rafaelmardojai/blanket/master/brand/screenshot-1.png</image>
<image type="source">https://raw.githubusercontent.com/rafaelmardojai/blanket/master/brand/screenshot-1.png</image>
</screenshot>
<screenshot>
<image xml:lang="ru">https://raw.githubusercontent.com/rafaelmardojai/blanket/master/brand/screenshots/ru/screenshot-1-ru.z.png</image>
<image type="source" xml:lang="ru">https://raw.githubusercontent.com/rafaelmardojai/blanket/master/brand/screenshots/ru/screenshot-1-ru.z.png</image>
</screenshot>
<screenshot>
<image xml:lang="ru">https://raw.githubusercontent.com/rafaelmardojai/blanket/master/brand/screenshots/ru/screenshot-2-ru.z.png</image>
<image type="source" xml:lang="ru">https://raw.githubusercontent.com/rafaelmardojai/blanket/master/brand/screenshots/ru/screenshot-2-ru.z.png</image>
</screenshot>
</screenshots>

Expand Down
8 changes: 4 additions & 4 deletions data/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ 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-relax', appstream_file]
appstreamcli = find_program('appstreamcli', required: false)
if appstreamcli.found()
test('Validate appstream file', appstreamcli,
args: ['validate', '--no-net', appstream_file]
)
endif

Expand Down
Loading