[grilo/0.1.x] Bump to 0.1.16
- From: Juan A. Suarez Romero <jasuarez src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [grilo/0.1.x] Bump to 0.1.16
- Date: Fri, 1 Jul 2011 16:38:12 +0000 (UTC)
commit 476ca572d53c87f5aba5970921d4fa7bc1d4a052
Author: Juan A. Suarez Romero <jasuarez igalia com>
Date: Fri Jul 1 11:44:44 2011 +0000
Bump to 0.1.16
Signed-off-by: Juan A. Suarez Romero <jasuarez igalia com>
NEWS | 20 ++++++++++++++++++++
configure.ac | 2 +-
src/grl-metadata-source.c | 3 +++
src/grl-multiple.c | 1 +
src/grl-operation.c | 6 ++++++
5 files changed, 31 insertions(+), 1 deletions(-)
---
diff --git a/NEWS b/NEWS
index 3654f02..a94500d 100644
--- a/NEWS
+++ b/NEWS
@@ -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)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]