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 #366

Merged
merged 1 commit into from
Jul 20, 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
8 changes: 4 additions & 4 deletions data/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ i18n.merge_file(
)

i18n.merge_file(
input: 'tasks.appdata.xml.in',
output: meson.project_name() + '.appdata.xml',
po_dir: join_paths(meson.source_root(), 'po', 'extra'),
input: 'tasks.metainfo.xml.in',
output: meson.project_name() + '.metainfo.xml',
po_dir: meson.source_root() / 'po' / 'extra',
type: 'xml',
install: true,
install_dir: join_paths(get_option('datadir'), 'metainfo'),
install_dir: get_option('datadir') / 'metainfo',
)
158 changes: 0 additions & 158 deletions data/tasks.appdata.xml.in

This file was deleted.

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

<name>Tasks</name>
<summary>Synced tasks and reminders</summary>
<description>
<p>Designed and built to help manage all of your tasks and reminders. Create and complete tasks, manage lists and sync them across your machines using CalDAV.</p>
</description>

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

<branding>
<color type="primary">#de3e80</color>
</branding>
<custom>
<value key="x-appcenter-color-primary">#de3e80</value>
</custom>

<content_rating type="oars-1.1" />

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

<recommends>
<display_length compare="ge">500</display_length>
</recommends>
<supports>
<control>pointing</control>
<control>keyboard</control>
<control>touch</control>
</supports>

<url type="homepage">https://elementary.io/</url>
<url type="bugtracker">https://github.com/elementary/tasks/issues</url>
<url type="donation">https://elementary.io/get-involved#funding</url>
<url type="help">https://github.com/elementary/tasks/discussions/categories/q-a</url>
<url type="translate">https://l10n.elementary.io/engage/tasks</url>

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

<releases>
<release version="6.3.1" date="2022-11-15" urgency="medium">
<description>
<p>Improvements:</p>
<ul>
<li>New app icon</li>
<li>Updated translations</li>
</ul>
</description>
<issues>
<issue url="https://github.com/elementary/tasks/issues/338">Extra space around new task lists in some locales</issue>
</issues>
</release>

<release version="6.3.0" date="2022-06-14" urgency="medium">
<description>
<p>Features:</p>
<ul>
<li>Add offline support for newly created task lists in case its configured for the account</li>
<li>Automatically synchronize a task list whenever it is selected or the network becomes available again</li>
</ul>
</description>
</release>

<release version="6.2.0" date="2022-01-22" urgency="medium">
<description>
<p>Features:</p>
<ul>
<li>Send a notification when a task is due</li>
</ul>
</description>
</release>

<release version="6.1.0" date="2021-12-13" urgency="medium">
<description>
<p>Features:</p>
<ul>
<li>Drag and drop tasks between lists</li>
<li>Follow email and web links in the task description with Control + Click</li>
</ul>
<p>Improvements:</p>
<ul>
<li>Improved time zone handling</li>
<li>Performance improvements</li>
<li>Updated translations</li>
</ul>
</description>
</release>

<release version="6.0.4" date="2021-09-27" urgency="medium">
<description>
<p>Fixes:</p>
<ul>
<li>Prevent account name headers from being displayed multiple times in the sidebar</li>
<li>Long descriptions are truncated at the end instead of the beginning</li>
<li>Removing descriptions is now saved</li>
<li>Placing the cursor in descriptions works consistently</li>
</ul>
<p>Improvements:</p>
<ul>
<li>Replace the Delete shortcut key with Ctrl + Backspace</li>
<li>Add a confirmation dialog when deleting a task list</li>
<li>Improve performance in lists with lots of completed tasks</li>
<li>Updated translations</li>
</ul>
</description>
</release>

<release version="6.0.3" date="2021-08-26" />
<release version="6.0.2" date="2021-08-09" />
<release version="6.0.1" date="2021-07-28" />
<release version="6.0.0" date="2021-07-19" />
</releases>
</component>
2 changes: 1 addition & 1 deletion po/extra/POTFILES
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
data/tasks.appdata.xml.in
data/tasks.metainfo.xml.in
data/tasks.desktop.in