diff options
author | Richard Hughes <richard@hughsie.com> | 2019-01-22 17:24:04 +0000 |
---|---|---|
committer | Richard Hughes <richard@hughsie.com> | 2019-01-22 17:24:23 +0000 |
commit | 6b44c80e6ba941933ac56faece29b28c237d4896 (patch) | |
tree | 36ba06330653c58bd7e0cb1aa4ff2822c24956da /libappstream-glib/as-enums.h | |
parent | 57fc51353f939fa23538066edb4b0ad495e7cbee (diff) | |
download | appstream-glib-6b44c80e6ba941933ac56faece29b28c237d4896.tar.gz |
Add support for SOURCE URLs
These could be specified per-release or per-component as required.
Diffstat (limited to 'libappstream-glib/as-enums.h')
-rw-r--r-- | libappstream-glib/as-enums.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libappstream-glib/as-enums.h b/libappstream-glib/as-enums.h index a760b67..4f82d50 100644 --- a/libappstream-glib/as-enums.h +++ b/libappstream-glib/as-enums.h @@ -73,6 +73,7 @@ typedef enum { * @AS_URL_KIND_MISSING: The package is available, but missing * @AS_URL_KIND_TRANSLATE: Application translation page * @AS_URL_KIND_DETAILS: Release details + * @AS_URL_KIND_SOURCE: Link to source code * * The URL type. **/ @@ -86,6 +87,7 @@ typedef enum { AS_URL_KIND_MISSING, /* Since: 0.2.2 */ AS_URL_KIND_TRANSLATE, /* Since: 0.6.1 */ AS_URL_KIND_DETAILS, /* Since: 0.7.15 */ + AS_URL_KIND_SOURCE, /* Since: 0.7.15 */ /*< private >*/ AS_URL_KIND_LAST } AsUrlKind; |