diff options
Diffstat (limited to 'libappstream-builder/asb-context.h')
-rw-r--r-- | libappstream-builder/asb-context.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libappstream-builder/asb-context.h b/libappstream-builder/asb-context.h index 29a75e1..0c801d2 100644 --- a/libappstream-builder/asb-context.h +++ b/libappstream-builder/asb-context.h @@ -73,6 +73,7 @@ struct _AsbContextClass * @ASB_CONTEXT_FLAG_IGNORE_OBSOLETE_DEPS: Include apps that use obsolete toolkits * @ASB_CONTEXT_FLAG_IGNORE_LEGACY_ICONS: Include apps that use legacy icon formats * @ASB_CONTEXT_FLAG_IGNORE_SETTINGS: Include apps that are marked as settings + * @ASB_CONTEXT_FLAG_USE_FALLBACKS: Fall back to suboptimal data where required * * The flags to use when processing the context. **/ @@ -90,6 +91,7 @@ typedef enum { ASB_CONTEXT_FLAG_IGNORE_OBSOLETE_DEPS = 1 << 8, /* Since: 0.4.1 */ ASB_CONTEXT_FLAG_IGNORE_LEGACY_ICONS = 1 << 9, /* Since: 0.4.1 */ ASB_CONTEXT_FLAG_IGNORE_SETTINGS = 1 << 10, /* Since: 0.4.1 */ + ASB_CONTEXT_FLAG_USE_FALLBACKS = 1 << 11, /* Since: 0.4.1 */ /*< private >*/ ASB_CONTEXT_FLAG_LAST, } AsbContextFlags; |