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

Add Flatpak metainfo #2413

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
48 changes: 48 additions & 0 deletions flatpak/dev.neovide.Neovide.metainfo.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<?xml version="1.0" encoding="UTF-8"?>
<component type="desktop-application">
<id>dev.neovide.Neovide</id>
<name>Neovide</name>
<summary>Advanced graphical interface for Neovim</summary>
<metadata_license>MIT</metadata_license>
<project_license>MIT</project_license>
<developer id="dev.neovide">
<name>Kaylee Simmons</name>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this have to be an individual person? I think it should probably be Neovide Team or something if possible

</developer>
<description>
<p>Fully-featured Neovim GUI with some visual upgrades:</p>
<ul>
<li>Animated cursor</li>
<li>Smooth scrolling</li>
<li>Animated windows</li>
<li>Blurred floating windows</li>
<li>Emoji support</li>
</ul>
</description>
<categories>
<category>Utility</category>
<category>TextEditor</category>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we could add Development here. Kate for example includes that category.

</categories>
<launchable type="desktop-id">dev.neovide.Neovide.desktop</launchable>
<icon type="stock">dev.neovide.Neovide</icon>
<branding>
<color scheme_preference="light" type="primary">#79b242</color>
<color scheme_preference="dark" type="primary">#4d8a3b</color>
</branding>
<content_rating type="oars-1.1"></content_rating>
<url type="bugtracker">https://github.com/neovide/neovide/issues</url>
<url type="homepage">https://neovide.dev/index.html</url>
<url type="contact">https://discord.gg/SjFpZdQys6</url>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can there be multiple contact urls? Might be worth including the matrix channel as well https://matrix.to/#/#neovide:matrix.org

<url type="faq">https://neovide.dev/faq.html</url>
<url type="vcs-browser">https://github.com/neovide/neovide</url>
<releases>
<release date="2024-01-28" version="0.12.2">
<url type="details">https://github.com/neovide/neovide/releases/tag/0.12.2</url>
</release>
</releases>
<screenshots>
<screenshot type="default">
<image>https://neovide.dev/assets/BasicScreenCap.png</image>
<caption>Screenshot of basic Neovide usage</caption>
</screenshot>
</screenshots>
</component>
1 change: 1 addition & 0 deletions website/docs/maintainer-cookbook.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ Now here's where the order becomes important:
- `Cargo.toml` (do note it contains the version _twice_, one time in the
top, one time at the bottom in the bundling section)
- `snap/snapcraft.yaml`
- `flatpak/dev.neovide.neovide.metainfo.xml`
- `website/docs/*.md` and update `Unreleased yet` to `Available since $tag`
(where `$tag` is the tag name)

Expand Down
Loading