[grilo/debian: 27/29] Bump to version 0.1.9



commit 253a03c2950c36ff44e99c08e648c38d008290d3
Author: Juan A. Suarez Romero <jasuarez igalia com>
Date:   Thu Feb 10 16:38:38 2011 +0100

    Bump to version 0.1.9
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez igalia com>

 AUTHORS                |    1 +
 NEWS                   |   19 +++++++++++++++++++
 configure.ac           |    2 +-
 src/data/grl-config.c  |    4 ++++
 src/data/grl-media.c   |    4 ++++
 src/grl-media-source.c |    8 ++++++++
 6 files changed, 37 insertions(+), 1 deletions(-)
---
diff --git a/AUTHORS b/AUTHORS
index 3d21e0f..e59bbfe 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,4 +1,5 @@
 Damien Lespiau <damien lespiau intel com>
+Guillaume Emont <gemont igalia com>
 Iago Toral Quiroga <itoral igalia com>
 Joaquim Rocha <jrocha igalia com>
 Juan A. Suarez Romero <jasuarez igalia com>
diff --git a/NEWS b/NEWS
index 4103ec4..d98aef5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,22 @@
+NEW in 0.1.9
+============
+
+  * Several fixes
+  * Added support for content-changed notifications
+  * Added support for NULL-text search (aka search all)
+  * Added support for cancelled operations notification
+  * Added support for binary data in GrlConfig and GrlData
+  * Added new configuration key: api-key-blob
+  * Added new metadata key: thumbnail-binary
+
+  * Contributors to this release:
+    Fabien Lebaillif - Delamare <fabien developers arq-media com>
+    Guillaume Emont <gemont 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.8
 ============
 
diff --git a/configure.ac b/configure.ac
index d66976e..9999282 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], [8])
+m4_define([grl_micro_version], [9])
 m4_define([prj_version], grl_major_version.grl_minor_version.grl_micro_version)
 
 AC_INIT([prj_name], [prj_version])
diff --git a/src/data/grl-config.c b/src/data/grl-config.c
index 740fc84..f800765 100644
--- a/src/data/grl-config.c
+++ b/src/data/grl-config.c
@@ -300,6 +300,8 @@ grl_config_set_api_key (GrlConfig *config, const gchar *key)
  * @key: the binary API key
  *
  * Set the binary API key in the configuration
+ *
+ * Since: 0.1.9
  */
 void
 grl_config_set_api_key_blob (GrlConfig *config, const guint8 *blob, gsize size)
@@ -411,6 +413,8 @@ grl_config_get_api_key (GrlConfig *config)
  * @size: pointer to size of data
  *
  * Returns: the binary API key, size will reflect the size of the buffer
+ *
+ * Since: 0.1.9
  */
 guint8 *
 grl_config_get_api_key_blob (GrlConfig *config, gsize *size)
diff --git a/src/data/grl-media.c b/src/data/grl-media.c
index 0a41bb9..d37bed3 100644
--- a/src/data/grl-media.c
+++ b/src/data/grl-media.c
@@ -499,6 +499,8 @@ grl_media_set_thumbnail (GrlMedia *data, const gchar *thumbnail)
  * @size: thumbnail buffer size
  *
  * Set the media's binary thumbnail
+ *
+ * Since: 0.1.9
  */
 void
 grl_media_set_thumbnail_binary (GrlMedia *data, const guint8 *thumbnail, gsize size)
@@ -815,6 +817,8 @@ grl_media_get_thumbnail (GrlMedia *data)
  * @size: pointer to storing the thumbnail buffer size
  *
  * Returns: the media's thumbnail data and set size to the thumbnail buffer size
+ *
+ * Since: 0.1.9
  */
 const guint8 *
 grl_media_get_thumbnail_binary (GrlMedia *data, gsize *size)
diff --git a/src/grl-media-source.c b/src/grl-media-source.c
index 7e6a057..314eaa6 100644
--- a/src/grl-media-source.c
+++ b/src/grl-media-source.c
@@ -241,6 +241,8 @@ grl_media_source_class_init (GrlMediaSourceClass *media_source_class)
    * For the cases where the source can only signal that a change happened, but
    * not where, it would use the root box (@NULL id) and set location_unknown as
    * to @TRUE.
+   *
+   * Since: 0.1.9
    */
   registry_signals[SIG_CONTENT_CHANGED] =
     g_signal_new("content-changed",
@@ -2647,6 +2649,8 @@ grl_media_source_get_media_from_uri_sync (GrlMediaSource *source,
  * of changes in the content.
  *
  * Returns: @TRUE if initialization has succeed.
+ *
+ * Since: 0.1.9
  */
 gboolean
 grl_media_source_notify_change_start (GrlMediaSource *source,
@@ -2670,6 +2674,8 @@ grl_media_source_notify_change_start (GrlMediaSource *source,
  * the content.
  *
  * Returns: @TRUE if stop has succeed.
+ *
+ * Since: 0.1.9
  */
 gboolean
 grl_media_source_notify_change_stop (GrlMediaSource *source,
@@ -2700,6 +2706,8 @@ grl_media_source_notify_change_stop (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,



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]