-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Add Appstream metadata file #5643
Merged
the-mikedavis
merged 6 commits into
helix-editor:master
from
blt-r:appstream_metadata_file
Jan 24, 2023
Merged
Changes from 4 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
993e9a2
Add `Helix.appdata.xml` from flatpak package
blt-r fa77fc7
Modify Helix.appdata.xml
blt-r a6cfda6
Fix the release date in Helix.appdata.xml
blt-r ab1ee03
Add new bullet in docs/releases.md
blt-r 4f43765
Link the AppStream spec in releases.md
blt-r b12ab48
Add links to releases into Helix.appdata.xml
blt-r File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<component type="desktop-application"> | ||
<id>com.helix_editor.Helix</id> | ||
<metadata_license>CC0-1.0</metadata_license> | ||
<project_license>MPL-2.0</project_license> | ||
<name>Helix</name> | ||
<summary>A post-modern text editor</summary> | ||
|
||
<description> | ||
<p> | ||
Helix is a terminal-based text editor inspired by Kakoune / Neovim and written in Rust. | ||
</p> | ||
<ul> | ||
<li>Vim-like modal editing</li> | ||
<li>Multiple selections</li> | ||
<li>Built-in language server support</li> | ||
<li>Smart, incremental syntax highlighting and code editing via tree-sitter</li> | ||
</ul> | ||
</description> | ||
|
||
<launchable type="desktop-id">Helix.desktop</launchable> | ||
|
||
<screenshots> | ||
<screenshot type="default"> | ||
<caption>Helix with default theme</caption> | ||
<image>https://github.com/helix-editor/helix/raw/d4565b4404cabc522bd60822abd374755581d751/screenshot.png</image> | ||
</screenshot> | ||
</screenshots> | ||
|
||
<url type="homepage">https://helix-editor.com/</url> | ||
<url type="donation">https://opencollective.com/helix-editor</url> | ||
<url type="help">https://docs.helix-editor.com/</url> | ||
<url type="vcs-browser">https://github.com/helix-editor/helix</url> | ||
<url type="bugtracker">https://github.com/helix-editor/helix/issues</url> | ||
|
||
<content_rating type="oars-1.1" /> | ||
|
||
<releases> | ||
<release version="22.12" date="2022-12-6" /> | ||
</releases> | ||
|
||
<requires> | ||
<control>keyboard</control> | ||
</requires> | ||
|
||
<categories> | ||
<category>Utility</category> | ||
<category>TextEditor</category> | ||
</categories> | ||
|
||
<keywords> | ||
<keyword>text</keyword> | ||
<keyword>editor</keyword> | ||
<keyword>development</keyword> | ||
<keyword>programming</keyword> | ||
</keywords> | ||
|
||
<provides> | ||
<binary>hx</binary> | ||
<mediatype>text/english</mediatype> | ||
<mediatype>text/plain</mediatype> | ||
<mediatype>text/x-makefile</mediatype> | ||
<mediatype>text/x-c++hdr</mediatype> | ||
<mediatype>text/x-c++src</mediatype> | ||
<mediatype>text/x-chdr</mediatype> | ||
<mediatype>text/x-csrc</mediatype> | ||
<mediatype>text/x-java</mediatype> | ||
<mediatype>text/x-moc</mediatype> | ||
<mediatype>text/x-pascal</mediatype> | ||
<mediatype>text/x-tcl</mediatype> | ||
<mediatype>text/x-tex</mediatype> | ||
<mediatype>application/x-shellscript</mediatype> | ||
<mediatype>text/x-c</mediatype> | ||
<mediatype>text/x-c++</mediatype> | ||
</provides> | ||
</component> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should the whole list of prior releases be included too? Or just starting from 22.12?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We might include every release and link to the blog post. While not necessary, it's probably a good idea
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added the ones that have blog posts