diff options
author | Juan A. Suarez Romero <jasuarez@igalia.com> | 2011-07-01 11:44:44 +0000 |
---|---|---|
committer | Juan A. Suarez Romero <jasuarez@igalia.com> | 2011-07-01 15:58:04 +0000 |
commit | 476ca572d53c87f5aba5970921d4fa7bc1d4a052 (patch) | |
tree | 5499d7730576f3d6fa9855ed385cb853932db955 | |
parent | 50e4e2b0682bf7fb20f86a86133cbdc86399a9e9 (diff) |
Bump to 0.1.16grilo-0.1.16
Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>
-rw-r--r-- | NEWS | 20 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/grl-metadata-source.c | 3 | ||||
-rw-r--r-- | src/grl-multiple.c | 1 | ||||
-rw-r--r-- | src/grl-operation.c | 6 |
5 files changed, 31 insertions, 1 deletions
@@ -1,3 +1,23 @@ +NEW in 0.1.16 +============= + + * Several fixes + * Minor improvements in build system + * Make Test UI compliant with Gtk+ 3.0 + * Test UI no more long needs GConf + * Lots of updates in documentation + * Added manpage for grl-inspect tool + * Added new API to handle operation cancellation + + * Contributors to this release: + Alberto Garcia <agarcia@igalia.com> + Guillaume Emont <guijemont@igalia.com> + Iago Toral Quiroga <itoral@igalia.com> + Juan A. Suarez Romero <jasuarez@igalia.com> + Lionel Landwerlin <lionel.g.landwerlin@linux.intel.com> + Víctor Manuel Jáquez Leal <vjaquez@igalia.com> + + NEW in 0.1.15 ============= diff --git a/configure.ac b/configure.ac index 7e34264..b7b25ac 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], [15]) +m4_define([grl_micro_version], [16]) m4_define([prj_version], grl_major_version.grl_minor_version.grl_micro_version) AC_INIT([prj_name], [prj_version]) diff --git a/src/grl-metadata-source.c b/src/grl-metadata-source.c index 4d8d278..d5b92c5 100644 --- a/src/grl-metadata-source.c +++ b/src/grl-metadata-source.c @@ -1457,6 +1457,7 @@ grl_metadata_source_set_metadata_sync (GrlMetadataSource *source, * taken for that operation after the said callback with error has been called. * * Since: 0.1.14 + * Deprecated: 0.1.16: use grl_operation_cancel() instead. */ void grl_metadata_source_cancel (GrlMetadataSource *source, guint operation_id) @@ -1514,6 +1515,7 @@ grl_metadata_source_supported_operations_impl (GrlMetadataSource *source) * Attach a pointer to the specific operation. * * Since: 0.1.14 + * Deprecated: 0.1.16: use grl_operation_set_data() instead. */ void grl_metadata_source_set_operation_data (GrlMetadataSource *source, @@ -1540,6 +1542,7 @@ grl_metadata_source_set_operation_data (GrlMetadataSource *source, * Returns: (transfer none): The previously attached data. * * Since: 0.1.14 + * Deprecated: 0.1.16: use grl_operation_get_data() instead. */ gpointer grl_metadata_source_get_operation_data (GrlMetadataSource *source, diff --git a/src/grl-multiple.c b/src/grl-multiple.c index ff8a185..f14ca08 100644 --- a/src/grl-multiple.c +++ b/src/grl-multiple.c @@ -589,6 +589,7 @@ multiple_search_cancel_cb (struct MultipleSearchData *msd) * source involved involved in the operation. * * Since: 0.1.6 + * Deprecated: 0.1.16: use grl_operation_cancel() instead. */ void grl_multiple_cancel (guint search_id) diff --git a/src/grl-operation.c b/src/grl-operation.c index afff469..a16869f 100644 --- a/src/grl-operation.c +++ b/src/grl-operation.c @@ -110,6 +110,8 @@ grl_operation_remove (guint operation_id) * @operation_id: the identifier of a running operation * * Cancel an operation. + * + * Since: 0.1.16 */ void grl_operation_cancel (guint operation_id) @@ -131,6 +133,8 @@ grl_operation_cancel (guint operation_id) * Obtains the previously attached data * * Returns: (transfer none): The previously attached data. + * + * Since: 0.1.16 */ gpointer grl_operation_get_data (guint operation_id) @@ -149,6 +153,8 @@ grl_operation_get_data (guint operation_id) * @user_data: the data to attach * * Attach a pointer to the specific operation. + * + * Since: 0.1.16 */ void grl_operation_set_data (guint operation_id, gpointer user_data) |