diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index c922ca3b..5438dabe 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -11,7 +11,7 @@ _The below instructions have been tested on Ubuntu 20.04_ ```bash sudo apt update sudo apt install \ - appstream-util \ + appstreamcli \ cmake \ gettext \ git \ diff --git a/data/com.github.geigi.cozy.appdata.xml b/data/com.github.geigi.cozy.appdata.xml index d234dcd8..9ac17df1 100644 --- a/data/com.github.geigi.cozy.appdata.xml +++ b/data/com.github.geigi.cozy.appdata.xml @@ -28,6 +28,8 @@ com.github.geigi.cozy + com.github.geigi.cozy.desktop + com.github.geigi.cozy https://raw.githubusercontent.com/geigi/cozy/img/img/screenshot1.png @@ -42,19 +44,17 @@ https://raw.githubusercontent.com/geigi/cozy/img/img/screenshot4.png - Julian Geywitz + Julian Geywitz https://cozy.sh https://github.com/geigi/cozy/issues - https://github.com/geigi/cozy/issues + https://matrix.to/#/#cozy:gnome.org?via=matrix.org&via=gnome.org https://www.patreon.com/geigi + https://github.com/geigi/cozy/ + https://www.transifex.com/geigi/cozy/ cozy@geigi.de - - workstation - mobile - - +
  • Support for GTK style manager (thanks A6GibKm)
  • Use natural sorting for chapter titles
  • @@ -63,7 +63,7 @@ - +

    This release features a redesigned preference window. All settings can now be searched. Good news for mobile users too: the redesign should work a lot better on mobile devices now.

    @@ -78,7 +78,7 @@
    - +

    A small bugfix release which makes Cozy more reliable.

    @@ -91,7 +91,7 @@
    - +

    A small bugfix release which makes Cozy more reliable.

    @@ -107,7 +107,7 @@
    - +

    A small bugfix release which makes Cozy more reliable.

    @@ -123,7 +123,7 @@
    - +

    This release features a redesigned library with responsiveness in mind.

    @@ -140,7 +140,7 @@
    - +

    Performance improvements for the book detail view and some bugfixes.

    @@ -155,7 +155,7 @@
    - +

    A small bugfix release which makes Cozy more reliable.

    @@ -170,7 +170,7 @@
    - +

    A small bugfix release which makes Cozy more reliable.

    @@ -185,7 +185,7 @@
    - +

    This release features chapter support for m4b files.

    @@ -199,7 +199,7 @@
    - +

    This release features chapter support for m4b files.

    diff --git a/data/meson.build b/data/meson.build index a32d61bc..7eb59a61 100644 --- a/data/meson.build +++ b/data/meson.build @@ -38,9 +38,9 @@ appstream_file = i18n.merge_file( install_dir: join_paths(get_option('datadir'), 'metainfo') ) -appstream_util = find_program('appstream-util', required: false) -if appstream_util.found() - test('Validate appstream file', appstream_util, - args: ['validate', appstream_file] +appstreamcli = find_program('appstreamcli', required: false) +if appstreamcli.found() + test('Validate appstream file', appstreamcli, + args: ['validate', '--no-net', appstream_file] ) endif