summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2016-04-26 19:56:06 +0100
committerRichard Hughes <richard@hughsie.com>2016-04-26 19:56:46 +0100
commitba2b79a590cd7202e6289a919f30b991570b8f09 (patch)
tree2518f5762ba333472db521ae0dc3b561c59af08b
parent55714fa11b112ff19b0f7bda22f828099cbb43ce (diff)
downloadappstream-glib-ba2b79a590cd7202e6289a919f30b991570b8f09.tar.gz
Add AS_APP_QUIRK_NOT_LAUNCHABLE
This indicates that an app cannot be launched.
-rw-r--r--libappstream-glib/as-app.h2
1 files changed, 2 insertions, 0 deletions
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;