diff --git a/runtime/nvim.appdata.xml b/runtime/nvim.appdata.xml new file mode 100644 index 0000000000..095e6c6fa8 --- /dev/null +++ b/runtime/nvim.appdata.xml @@ -0,0 +1,37 @@ + + + + nvim + Apache-2.0 + CC0-1.0 + Neovim + Vim-fork focused on extensibility and usability + + +

Neovim is a refactor of the Vim text editor designed to encourage new features, advanced UIs, and powerful extensions.

+
+ + + + Live :substitute feature + https://neovim.io/images/nvim-screenshot-1.png + + + + nvim.desktop + https://neovim.io/ + https://github.com/neovim/neovim/issues + https://github.com/neovim/neovim/wiki/FAQ + https://neovim.io/doc/ + https://neovim.io/#sponsor + https://github.com/neovim/neovim/tree/master/src/nvim/po + + nvim + +
diff --git a/scripts/genappimage.sh b/scripts/genappimage.sh index ed008938f3..c0ef2a8591 100755 --- a/scripts/genappimage.sh +++ b/scripts/genappimage.sh @@ -45,6 +45,8 @@ curl -Lo "$APP_BUILD_DIR"/appimage_functions.sh https://github.com/AppImage/AppI # get_desktop cp "$ROOT_DIR/runtime/nvim.desktop" "$APP_DIR/" cp "$ROOT_DIR/runtime/nvim.png" "$APP_DIR/" +mkdir "$APP_DIR/usr/share/metainfo/" +cp "$ROOT_DIR/runtime/nvim.appdata.xml" "$APP_DIR/usr/share/metainfo/" cd "$APP_DIR"