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

Metainfo Improvements #663

Merged
merged 1 commit into from
Jun 19, 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
164 changes: 0 additions & 164 deletions data/greeter.appdata.xml.in

This file was deleted.

108 changes: 108 additions & 0 deletions data/greeter.metainfo.xml.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2019-2023 elementary, Inc. <contact@elementary.io> -->
<component>
<id>io.elementary.greeter</id>
<translation type="gettext">io.elementary.greeter</translation>
<metadata_license>CC0-1.0</metadata_license>
<project_license>GPL-3.0+</project_license>

<name>Login &amp; Lock Screen</name>
<summary>Unlock or log in to your device</summary>
<description>
<p></p>
</description>

<content_rating type="oars-1.1" />

<screenshots>
<screenshot type="default">
<image>https://raw.githubusercontent.com/elementary/greeter/master/data/screenshot.png</image>
</screenshot>
</screenshots>

<provides>
<binary>io.elementary.greeter</binary>
</provides>

<url type="bugtracker">https://github.com/elementary/greeter/issues</url>
<url type="donation">https://elementary.io/get-involved#funding</url>
<url type="help">https://github.com/elementary/greeter/discussions</url>
<url type="homepage">https://elementary.io</url>
<url type="translate">https://l10n.elementary.io/projects/desktop</url>

<developer_name>elementary, Inc.</developer_name>
<project_group>elementary</project_group>
<update_contact>contact_at_elementary.io</update_contact>

<releases>
<release version="6.1.1" date="2022-11-15" urgency="medium">
<description>
<p>Minor updates:</p>
<ul>
<li>Updated translations</li>
</ul>
</description>
<issues>
<issue url="https://github.com/elementary/greeter/issues/551">Login input blocked after pressing enter</issue>
</issues>
</release>

<release version="6.1.0" date="2022-05-09" urgency="medium">
<description>
<p>New Features:</p>
<ul>
<li>Provide panel background color interface</li>
</ul>
<p>Minor updates:</p>
<ul>
<li>Updated translations</li>
</ul>
</description>
</release>

<release version="6.0.2" date="2022-02-28" urgency="medium">
<description>
<p>Improvements:</p>
<ul>
<li>Fix a random issue where Greeter does not load correctly on boot</li>
</ul>
<p>Minor updates:</p>
<ul>
<li>Updated translations</li>
</ul>
</description>
</release>

<release version="6.0.1" date="2021-09-22" urgency="medium">
<description>
<p>Improvements:</p>
<ul>
<li>Hide clock during initial setup</li>
<li>Use selected accent color for logged in checkmark</li>
</ul>
<p>Minor updates:</p>
<ul>
<li>Updated translations</li>
</ul>
</description>
</release>

<release version="6.0.0" date="2021-07-14" urgency="medium">
<description>
<ul>
<li>Add multitouch finger tracking</li>
<li>Add keyboard layout support</li>
<li>New colorful avatar fallbacks</li>
<li>Fix clock when resuming from sleep</li>
<li>Updated translations</li>
</ul>
</description>
</release>

<release version="5.0.4" date="2020-05-28" urgency="medium" />
<release version="5.0.3" date="2020-04-05" urgency="medium" />
<release version="5.0.2" date="2020-02-25" urgency="medium" />
<release version="5.0.1" date="2019-10-31" urgency="medium" />
<release version="5.0.0" date="2019-08-26" urgency="medium" />
</releases>
</component>
8 changes: 4 additions & 4 deletions data/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ i18n.merge_file (
)

i18n.merge_file(
input: 'greeter.appdata.xml.in',
output: meson.project_name() + '.appdata.xml',
po_dir: join_paths(meson.project_source_root(), 'po', 'extra'),
input: 'greeter.metainfo.xml.in',
output: meson.project_name() + '.metainfo.xml',
po_dir: meson.project_source_root() / 'po' / 'extra',
type: 'xml',
install: true,
install_dir: join_paths(get_option('datadir'), 'metainfo'),
install_dir: get_option('datadir') / 'metainfo',
)

install_data(
Expand Down
2 changes: 1 addition & 1 deletion po/extra/POTFILES
Original file line number Diff line number Diff line change
@@ -1 +1 @@
data/greeter.appdata.xml.in
data/greeter.metainfo.xml.in