summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan A. Suarez Romero <jasuarez@igalia.com>2012-11-08 14:59:41 +0000
committerJuan A. Suarez Romero <jasuarez@igalia.com>2012-11-08 14:59:41 +0000
commitd84c8d1ead2e4a363782214106efe388ab955244 (patch)
treec7c6ab96d2e9b2c12552183376797aa59afacba2
parent3a3642b26e59d7f56a6940faa684e4fa6ca70aa0 (diff)
downloadgrilo-d84c8d1ead2e4a363782214106efe388ab955244.tar.gz
Release 0.2.3grilo-0.2.3
-rw-r--r--NEWS41
-rw-r--r--configure.ac4
-rw-r--r--src/data/grl-data.c2
-rw-r--r--src/data/grl-media.h2
-rw-r--r--src/data/grl-related-keys.c6
-rw-r--r--src/grl-source.c2
6 files changed, 55 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index bffcfa1..d77957b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,44 @@
+NEW in 0.2.3
+============
+
+ * Added TMDb plugin in the Test UI program
+ * grl_source_resolve() can be invoked with sources that do not implement it
+ * grl_source_store_metadata() can be invoked with sources that do not
+ implement it
+ * Added support for mocking network answers, for testing purpose
+ * Added support for capturing network content, for testing purpose
+ * Improved (de)serialization: support all metadata key types and multi-valued
+ elements
+ * Added new keys: GRL_METADATA_KEY_FAVOURITE, GRL_METADATA_KEY_REGION,
+ GRL_METADATA_KEY_KEYWORD, GRL_METADATA_KEY_PERFORMER,
+ GRL_METADATA_KEY_PRODUCER, GRL_METADATA_KEY_DIRECTOR,
+ GRL_METADATA_KEY_ORIGINAL_TITLE
+ * Sources can expose the type of media they can handle
+ * Improved documentation
+ * Several fixes, including
+ * BGO#679686 - GRL_METADATA_KEY_CERTIFICATE doesn't consider regional
+ ratings
+ * BGO#685274 - Use GRL_METADATA_KEY_INVALID instead of NULL with
+ grl_metadata_key_list_new()
+ * BGO#685861 - Add GRL_METADATA_KEY_FAVOURITE
+ * BGO#685967 - Support mocking of network answers
+ * BGO#686032 - doc: Fix typo in _grl_log_init_core_domains()
+ * BGO#686033 - core: Don't crash with NULL options in _resolve()
+ * BGO#686206 - Move generic TMDB metadata keys to libgrilo.
+ * BGO#686271 - linking issue on ARM
+ * BGO#687104 - Searching all doesn't finalizes
+
+ * Contributors to this release:
+ * Antía Puentes <apuentes@igalia.com>
+ * Bastien Nocera <hadess@hadess.net>
+ * Dominique Leuenberger <dimstar@opensuse.org>
+ * Jens Georg <jensg@openismus.com>
+ * Juan A. Suarez Romero <jasuarez@igalia.com>
+ * Mathias Hasselmann <mathias@openismus.com>
+ * Murray Cumming <murrayc@murrayc.com>
+ * Murray Cumming <murrayc@openismus.com>
+
+
NEW in 0.2.2
============
diff --git a/configure.ac b/configure.ac
index 1af932d..00c0fd3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -50,8 +50,8 @@ AC_DEFINE_UNQUOTED(GRLNET_VERSION, "$GRLNET_VERSION", [Grilo Net library version
# Libtool library version, not to confuse with API version
# see http://www.gnu.org/software/libtool/manual/html_node/Libtool-versioning.html
-GRL_LT_VERSION=2:0:1
-GRLNET_LT_VERSION=1:0:1
+GRL_LT_VERSION=3:0:2
+GRLNET_LT_VERSION=1:1:1
AC_SUBST([GRL_LT_VERSION])
AC_SUBST([GRLNET_LT_VERSION])
diff --git a/src/data/grl-data.c b/src/data/grl-data.c
index 3ba92f0..3a68438 100644
--- a/src/data/grl-data.c
+++ b/src/data/grl-data.c
@@ -365,6 +365,7 @@ grl_data_get_float (GrlData *data, GrlKeyID key)
* Sets the first boolean value associated with @key in @data. If @key already
* has a first value, old value is replaced by the new one.
*
+ * Since: 0.2.3
**/
void
grl_data_set_boolean (GrlData *data, GrlKeyID key, gboolean boolvalue)
@@ -384,6 +385,7 @@ grl_data_set_boolean (GrlData *data, GrlKeyID key, gboolean boolvalue)
* no first value, or value is not a gboolean, or @key is not in the data, then
* FALSE is returned
*
+ * Since: 0.2.3
*/
gboolean
grl_data_get_boolean (GrlData *data, GrlKeyID key)
diff --git a/src/data/grl-media.h b/src/data/grl-media.h
index cc1d68b..ea7b82d 100644
--- a/src/data/grl-media.h
+++ b/src/data/grl-media.h
@@ -67,6 +67,8 @@ G_BEGIN_DECLS
* @GRL_MEDIA_SERIALIZE_FULL: Full mode
*
* GrlMedia serialize type
+ *
+ * Since: 0.2.3
*/
typedef enum {
GRL_MEDIA_SERIALIZE_BASIC,
diff --git a/src/data/grl-related-keys.c b/src/data/grl-related-keys.c
index 3f28a70..aed5063 100644
--- a/src/data/grl-related-keys.c
+++ b/src/data/grl-related-keys.c
@@ -421,6 +421,8 @@ grl_related_keys_get_float (GrlRelatedKeys *relkeys,
*
* Sets the value associated with @key into @relkeys. @key must have been
* registered as a boolean-type key. Old value is replaced by the new one.
+ *
+ * Since: 0.2.3
**/
void
grl_related_keys_set_boolean (GrlRelatedKeys *relkeys,
@@ -443,6 +445,8 @@ grl_related_keys_set_boolean (GrlRelatedKeys *relkeys,
* returned.
*
* Returns: float value associated with @key, or %FALSE in other case.
+ *
+ * Since: 0.2.3
**/
gboolean
grl_related_keys_get_boolean (GrlRelatedKeys *relkeys,
@@ -586,6 +590,8 @@ grl_related_keys_get_boxed (GrlRelatedKeys *relkeys,
* @key: (type GrlKeyID): key to remove
*
* Removes @key from @relkeys set.
+ *
+ * Since: 0.2.3
**/
void
grl_related_keys_remove (GrlRelatedKeys *relkeys,
diff --git a/src/grl-source.c b/src/grl-source.c
index 3c76df0..b3a8efd 100644
--- a/src/grl-source.c
+++ b/src/grl-source.c
@@ -2912,6 +2912,8 @@ grl_source_get_rank (GrlSource *source)
* Gets the supported type of medias @source can deal with.
*
* Returns: a #GrlMediaType value
+ *
+ * Since: 0.2.3
**/
GrlMediaType
grl_source_get_supported_media (GrlSource *source)