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

Appstream related patches #98

Merged
merged 2 commits into from Nov 4, 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
22 changes: 20 additions & 2 deletions data/com.github.finefindus.eyedropper.metainfo.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@
<content_rating type="oars-1.1" />
<releases>
<release version="1.0.0" date="2023-09-27">
<p>A new release with exciting new features and many improvements.</p>\n<ul><li>Allow entering any format</li><li>Display color in overview search</li><li>Export palettes to LibreOffice</li><li>A visual differentiation between color and background</li><li>Improved color conversion</li><li>Visual refinements to match the state of the art of GNOME apps</li><li>Internal code improvements and bug fixes</li></ul>
<description translatable="no">
<p>A new release with exciting new features and many improvements.</p>\n<ul><li>Allow entering any format</li><li>Display color in overview search</li><li>Export palettes to LibreOffice</li><li>A visual differentiation between color and background</li><li>Improved color conversion</li><li>Visual refinements to match the state of the art of GNOME apps</li><li>Internal code improvements and bug fixes</li></ul>
</description>
</release>
<release version="0.6.0" date="2023-02-24">
<description translatable="no">
Expand Down Expand Up @@ -179,7 +181,23 @@
<kudo>ModernToolkit</kudo>
<kudo>HiDpiIcon</kudo>
</kudos>
<developer_name>FineFindus</developer_name>
<categories>
<category>GNOME</category>
<category>GTK</category>
<category>Development</category>
<category>Graphics</category>
<category>Utility</category>
<category>WebDevelopment</category>
</categories>
<keywords>
<keyword>Gnome</keyword>
<keyword>GTK</keyword>
<keyword>Color</keyword>
<keyword>Color Picker</keyword>
<keyword>Picker</keyword>
<keyword>Palette</keyword>
</keywords>
<developer_name translatable="no">FineFindus</developer_name>
<update_contact>[email protected]</update_contact>
<translation type="gettext">@gettext-package@</translation>
<launchable type="desktop-id">@[email protected]</launchable>
Expand Down
6 changes: 3 additions & 3 deletions data/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ appdata_file = i18n.merge_file(
install_dir: datadir / 'metainfo'
)
# Validate Appdata
if appstream_util.found()
if appstreamcli.found()
test(
'validate-appdata', appstream_util,
'validate-appdata', appstreamcli,
args: [
'validate', '--nonet', appdata_file.full_path()
'validate', '--no-net', appdata_file.full_path()
],
depends: appdata_file,
)
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependency('gtk4', version: '>= 4.0.0')
glib_compile_resources = find_program('glib-compile-resources', required: true)
glib_compile_schemas = find_program('glib-compile-schemas', required: true)
desktop_file_validate = find_program('desktop-file-validate', required: false)
appstream_util = find_program('appstream-util', required: false)
appstreamcli = find_program('appstreamcli', required: false)
cargo = find_program('cargo', required: true)

version = meson.project_version()
Expand Down
Loading