summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2016-08-18 16:24:42 +0100
committerRichard Hughes <richard@hughsie.com>2016-08-18 16:24:42 +0100
commit32e6ce936a7704689342d97bfca9e37a2954dab5 (patch)
tree6e533a739e2acd2273b4e7ff47240bc965e9d1cf
parent64029dfe02b85afe611a279380a84fca51208d4c (diff)
downloadappstream-glib-32e6ce936a7704689342d97bfca9e37a2954dab5.tar.gz
trivial: Add another quirk for firmware
-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 7a20c55..01fa789 100644
--- a/libappstream-glib/as-app.h
+++ b/libappstream-glib/as-app.h
@@ -326,6 +326,7 @@ typedef enum {
* @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)
+ * @AS_APP_QUIRK_NEEDS_USER_ACTION: The component requires some kind of user action
*
* The component attributes.
**/
@@ -339,6 +340,7 @@ typedef enum {
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 */
+ AS_APP_QUIRK_NEEDS_USER_ACTION = 1 << 8, /* Since: 0.6.2 */
/*< private >*/
AS_APP_QUIRK_LAST
} AsAppQuirk;