From ba2b79a590cd7202e6289a919f30b991570b8f09 Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Tue, 26 Apr 2016 19:56:06 +0100 Subject: Add AS_APP_QUIRK_NOT_LAUNCHABLE This indicates that an app cannot be launched. --- libappstream-glib/as-app.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libappstream-glib/as-app.h b/libappstream-glib/as-app.h index 0211ce3..6ca3cce 100644 --- a/libappstream-glib/as-app.h +++ b/libappstream-glib/as-app.h @@ -220,6 +220,7 @@ typedef enum { * @AS_APP_QUIRK_NEEDS_REBOOT: A reboot is required after the action * @AS_APP_QUIRK_NOT_REVIEWABLE: The app is not reviewable * @AS_APP_QUIRK_HAS_SHORTCUT: The app has a shortcut in the system + * @AS_APP_QUIRK_NOT_LAUNCHABLE: The app is not launchable (run-able) * * The component attributes. **/ @@ -232,6 +233,7 @@ typedef enum { AS_APP_QUIRK_NEEDS_REBOOT = 1 << 4, /* Since: 0.5.14 */ AS_APP_QUIRK_NOT_REVIEWABLE = 1 << 5, /* Since: 0.5.14 */ AS_APP_QUIRK_HAS_SHORTCUT = 1 << 6, /* Since: 0.5.15 */ + AS_APP_QUIRK_NOT_LAUNCHABLE = 1 << 7, /* Since: 0.5.15 */ /*< private >*/ AS_APP_QUIRK_LAST } AsAppQuirk; -- cgit v1.2.1