| #define | AS_TYPE_RELEASE |
| struct | AsReleaseClass |
| enum | AsReleaseKind |
| enum | AsUrgencyKind |
| enum | AsReleaseUrlKind |
| AsRelease |
This object represents a single upstream release, typically a minor update. Releases can contain a localized description of paragraph and list elements and also have a version number and timestamp.
Releases can be automatically generated by parsing upstream ChangeLogs or .spec files, or can be populated using MetaInfo files.
See also: AsComponent
const gchar *
as_release_kind_to_string (AsReleaseKind kind);
Converts the enumerated value to an text representation.
Since: 0.12.0
AsReleaseKind
as_release_kind_from_string (const gchar *kind_str);
Converts the text representation to an enumerated value.
Since: 0.12.0
const gchar *
as_urgency_kind_to_string (AsUrgencyKind urgency_kind);
Converts the enumerated value to an text representation.
Since: 0.6.5
AsUrgencyKind
as_urgency_kind_from_string (const gchar *urgency_kind);
Converts the text representation to an enumerated value.
Since: 0.6.5
const gchar *
as_release_url_kind_to_string (AsReleaseUrlKind kind);
Converts the enumerated value to an text representation.
Since: 0.12.5
AsReleaseUrlKind
as_release_url_kind_from_string (const gchar *kind_str);
Converts the text representation to an enumerated value.
Since: 0.12.5
AsContext *
as_release_get_context (AsRelease *release);
the AsContext associated with this release.
This function may return NULL if no context is set.
[transfer none][nullable]
Since: 0.11.2
void as_release_set_context (AsRelease *release,AsContext *context);
Sets the document context this release is associated with.
Since: 0.11.2
AsReleaseKind
as_release_get_kind (AsRelease *release);
Gets the type of the release. (development or stable release)
Since: 0.12.0
void as_release_set_kind (AsRelease *release,AsReleaseKind kind);
Sets the release kind to distinguish between end-user ready stable releases and development prereleases..
Since: 0.12.0
const gchar *
as_release_get_version (AsRelease *release);
Gets the release version.
void as_release_set_version (AsRelease *release,const gchar *version);
Sets the release version.
gint as_release_vercmp (AsRelease *rel1,AsRelease *rel2);
Compare the version numbers of two releases.
const gchar *
as_release_get_date (AsRelease *release);
Gets the release date.
Since: 0.12.5
void as_release_set_date (AsRelease *release,const gchar *date);
Sets the release date.
Since: 0.12.5
guint64
as_release_get_timestamp (AsRelease *release);
Gets the release timestamp.
void as_release_set_timestamp (AsRelease *release,guint64 timestamp);
Sets the release timestamp.
const gchar *
as_release_get_date_eol (AsRelease *release);
Gets the end-of-life date for this release.
Since: 0.12.5
void as_release_set_date_eol (AsRelease *release,const gchar *date);
Sets the end-of-life date for this release.
Since: 0.12.5
guint64
as_release_get_timestamp_eol (AsRelease *release);
Gets the UNIX timestamp for the date when this release is out of support (end-of-life).
Since: 0.12.5
void as_release_set_timestamp_eol (AsRelease *release,guint64 timestamp);
Sets the UNIX timestamp for the date when this release is out of support (end-of-life).
Since: 0.12.5
const gchar *
as_release_get_description (AsRelease *release);
Gets the release description markup for a given locale.
void as_release_set_description (AsRelease *release,const gchar *description,const gchar *locale);
Sets the description release markup.
AsUrgencyKind
as_release_get_urgency (AsRelease *release);
Gets the urgency of the release (showing how important it is to update to a more recent release)
Since: 0.6.5
void as_release_set_urgency (AsRelease *release,AsUrgencyKind urgency);
Sets the release urgency.
release |
a AsRelease instance. |
|
urgency |
the urgency of this release/update (as AsUrgencyKind) |
Since: 0.6.5
GPtrArray *
as_release_get_issues (AsRelease *release);
Get a list of all issues resolved by this release.
Since: 0.12.9
void as_release_add_issue (AsRelease *release,AsIssue *issue);
Add information about a (resolved) issue to this release.
Since: 0.12.9
GPtrArray *
as_release_get_artifacts (AsRelease *release);
Get a list of all downloadable artifacts that are associated with this release.
Since: 0.12.6
void as_release_add_artifact (AsRelease *release,AsArtifact *artifact);
Add an artifact (binary / source download) for this release.
Since: 0.12.6
const gchar * as_release_get_url (AsRelease *release,AsReleaseUrlKind url_kind);
Gets an URL.
Since: 0.12.5
void as_release_set_url (AsRelease *release,AsReleaseUrlKind url_kind,const gchar *url);
Sets an URL for this release.
release |
a AsRelease instance. |
|
url_kind |
the URL kind, e.g. |
|
url |
the full URL. |
Since: 0.12.5