diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2025-01-03 01:08:34 +0300 |
---|---|---|
committer | Kirill Chibisov <contact@kchibisov.com> | 2025-01-04 00:16:11 +0300 |
commit | 9dc367b49c03151d4dc385a30401ea90ad228684 (patch) | |
tree | 3890ef26b11b9a8690456473a176ffbd3dffe9d6 | |
parent | 0a1e735cf6b13da1dbe5d161d17c8aa6c1692204 (diff) | |
download | alacritty-9dc367b49c03151d4dc385a30401ea90ad228684.tar.gz alacritty-9dc367b49c03151d4dc385a30401ea90ad228684.zip |
Rewrite appdata.xml file
This also changes its license to MIT along the way.
-rw-r--r-- | extra/linux/org.alacritty.Alacritty.appdata.xml | 42 |
1 files changed, 28 insertions, 14 deletions
diff --git a/extra/linux/org.alacritty.Alacritty.appdata.xml b/extra/linux/org.alacritty.Alacritty.appdata.xml index 238edc46..e99ab8d4 100644 --- a/extra/linux/org.alacritty.Alacritty.appdata.xml +++ b/extra/linux/org.alacritty.Alacritty.appdata.xml @@ -1,13 +1,19 @@ <?xml version="1.0" encoding="UTF-8"?> -<!-- Copyright 2016-2022 Joe Wilm, The Alacritty Project Contributors --> +<!-- SPDX-License-Identifier: MIT --> <component type="desktop-application"> <id>org.alacritty.Alacritty</id> - <!-- Translators: The application name --> + + <developer_name>Christian Duerr</developer_name> + <developer id="org.alacritty"> + <name>Christian Duerr</name> + </developer> + <name>Alacritty</name> - <project_license>APACHE-2.0</project_license> - <metadata_license>APACHE-2.0</metadata_license> - <!-- Translators: The application's summary / tagline --> - <summary>A fast, cross-platform, OpenGL terminal emulator</summary> + + <project_license>Apache-2.0</project_license> + <metadata_license>MIT</metadata_license> + + <summary>A cross-platform, OpenGL terminal emulator</summary> <description> <p> Alacritty is a modern terminal emulator that comes with sensible defaults, @@ -15,20 +21,28 @@ applications, rather than reimplementing their functionality, it manages to provide a flexible set of features with high performance. </p> + <ul> + <li>Wayland native</li> + <li>X11 native</li> + <li>DE agnostic</li> + </ul> </description> + + <categories> + <category>TerminalEmulator</category> + </categories> + <screenshots> <screenshot type="default"> - <image>https://user-images.githubusercontent.com/8886672/103264352-5ab0d500-49a2-11eb-8961-02f7da66c855.png</image> - <caption>Alacritty - A fast, cross-platform, OpenGL terminal emulator</caption> + <image>https://raw.githubusercontent.com/alacritty/alacritty/0a1e735cf6b13da1dbe5d161d17c8aa6c1692204/extra/promo/alacritty-readme.png</image> + <caption>Alacritty with default theme showing neovim</caption> </screenshot> </screenshots> - <keywords> - <keyword>terminal emulator</keyword> - <keyword>GPU</keyword> - </keywords> + <url type="homepage">https://github.com/alacritty/alacritty</url> <url type="bugtracker">https://github.com/alacritty/alacritty/issues</url> - <update_contact>https://github.com/alacritty/alacritty/blob/master/CONTRIBUTING.md#contact</update_contact> - <developer_name>Christian Duerr</developer_name> + <launchable type="desktop-id">Alacritty.desktop</launchable> + + <content_rating type="oars-1.0" /> </component> |