diff options
-rw-r--r-- | NEWS | 15 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/grl-media-source.c | 9 | ||||
-rw-r--r-- | src/grl-metadata-source.c | 8 | ||||
-rw-r--r-- | src/grl-plugin-registry.c | 2 |
5 files changed, 32 insertions, 4 deletions
@@ -1,3 +1,18 @@ +NEW in 0.1.14 +============= + + * Several fixes, including: + * BGO#628898 - Grilo could do with a function to load a plugin by ID + * BGO#644383 - [feature-request] Metadata request are not cancellable + * Re-worked "content-changed" signal: several elements can be sent in just one + signal + * Operations in GrlMetadataSource are now cancellable too. + + * Contributors to this release: + Juan A. Suarez Romero <jasuarez@igalia.com> + Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com> + + NEW in 0.1.13 ============= diff --git a/configure.ac b/configure.ac index 17f2157..04083f3 100644 --- a/configure.ac +++ b/configure.ac @@ -9,7 +9,7 @@ m4_define([prj_name], [grilo]) m4_define([prj_gir_name], [Grilo]) m4_define([grl_major_version], [0]) m4_define([grl_minor_version], [1]) -m4_define([grl_micro_version], [13]) +m4_define([grl_micro_version], [14]) m4_define([prj_version], grl_major_version.grl_minor_version.grl_micro_version) AC_INIT([prj_name], [prj_version]) diff --git a/src/grl-media-source.c b/src/grl-media-source.c index 8af3784..fd1a9ea 100644 --- a/src/grl-media-source.c +++ b/src/grl-media-source.c @@ -2130,6 +2130,7 @@ grl_media_source_supported_operations (GrlMetadataSource *metadata_source) * taken for that operation after the said callback with error has been called. * * Since: 0.1.1 + * Deprecated: 0.1.14: Use grl_metadata_source_cancel() instead */ void grl_media_source_cancel (GrlMediaSource *source, guint operation_id) @@ -2153,6 +2154,7 @@ grl_media_source_cancel (GrlMediaSource *source, guint operation_id) * Attach a pointer to the specific operation. * * Since: 0.1.1 + * Deprecated: 0.1.14: Use grl_metadata_source_set_operation_data() instead */ void grl_media_source_set_operation_data (GrlMediaSource *source, @@ -2181,6 +2183,7 @@ grl_media_source_set_operation_data (GrlMediaSource *source, * Returns: (transfer none): The previously attached data. * * Since: 0.1.1 + * Deprecated: 0.1.14: Use grl_metadata_source_get_operation_data() instead */ gpointer grl_media_source_get_operation_data (GrlMediaSource *source, @@ -2490,7 +2493,7 @@ grl_media_source_test_media_from_uri (GrlMediaSource *source, * * Returns: the operation identifier * - * Since: 0.1.7 + * Since: 0.1.14 */ guint grl_media_source_get_media_from_uri (GrlMediaSource *source, @@ -2689,7 +2692,7 @@ grl_media_source_notify_change_stop (GrlMediaSource *source, * </para> * </note> * - * Since: 0.1.9 + * Since: 0.1.14 */ void grl_media_source_notify_change_list (GrlMediaSource *source, GPtrArray *changed_medias, @@ -2737,6 +2740,8 @@ void grl_media_source_notify_change_list (GrlMediaSource *source, * This function is intended to be used only by plugins. * </para> * </note> + * + * Since: 0.1.9 */ void grl_media_source_notify_change (GrlMediaSource *source, GrlMedia *media, diff --git a/src/grl-metadata-source.c b/src/grl-metadata-source.c index 568f7e5..c7a73e7 100644 --- a/src/grl-metadata-source.c +++ b/src/grl-metadata-source.c @@ -914,7 +914,7 @@ grl_metadata_source_may_resolve (GrlMetadataSource *source, * * Returns: the operation identifier * - * Since: 0.1.4 + * Since: 0.1.14 */ guint grl_metadata_source_resolve (GrlMetadataSource *source, @@ -1444,6 +1444,8 @@ grl_metadata_source_set_metadata_sync (GrlMetadataSource *source, * corresponding callback will be called with the * @GRL_CORE_ERROR_OPERATION_CANCELLED error set, and no more action will be * taken for that operation after the said callback with error has been called. + * + * Since: 0.1.14 */ void grl_metadata_source_cancel (GrlMetadataSource *source, guint operation_id) @@ -1516,6 +1518,8 @@ grl_metadata_source_supported_operations_impl (GrlMetadataSource *source) * @data: the data to attach * * Attach a pointer to the specific operation. + * + * Since: 0.1.14 */ void grl_metadata_source_set_operation_data (GrlMetadataSource *source, @@ -1545,6 +1549,8 @@ grl_metadata_source_set_operation_data (GrlMetadataSource *source, * Obtains the previously attached data * * Returns: (transfer none): The previously attached data. + * + * Since: 0.1.14 */ gpointer grl_metadata_source_get_operation_data (GrlMetadataSource *source, diff --git a/src/grl-plugin-registry.c b/src/grl-plugin-registry.c index 730b89c..dc7dc5f 100644 --- a/src/grl-plugin-registry.c +++ b/src/grl-plugin-registry.c @@ -685,6 +685,8 @@ grl_plugin_registry_load_all (GrlPluginRegistry *registry, GError **error) * actual module file. * * Returns: %TRUE if the plugin is loaded correctly + * + * Since: 0.1.14 **/ gboolean grl_plugin_registry_load_by_id (GrlPluginRegistry *registry, |