[grilo] Release 0.2.8
- From: Juan A. Suarez Romero <jasuarez src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [grilo] Release 0.2.8
- Date: Mon, 10 Feb 2014 23:27:28 +0000 (UTC)
commit 43501848d21efe499fa7f699e461110458d04910
Author: Juan A. Suarez Romero <jasuarez igalia com>
Date: Mon Feb 10 21:33:16 2014 +0000
Release 0.2.8
AUTHORS | 2 +
NEWS | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++
configure.ac | 6 ++--
libs/pls/grl-pls.c | 6 +++++
src/grilo.c | 2 +
src/grl-registry.c | 2 +
src/grl-source.c | 2 +
7 files changed, 78 insertions(+), 3 deletions(-)
---
diff --git a/AUTHORS b/AUTHORS
index cb02a7b..e1c7ff8 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,11 +1,13 @@
Alberto Garcia <agarcia igalia com>
Bastien Nocera <hadess hadess net>
Damien Lespiau <damien lespiau intel com>
+Emanuele Aina <emanuele aina collabora com>
Guillaume Emont <gemont igalia com>
Iago Toral Quiroga <itoral igalia com>
Jens Georg <jensg openismus com>
Joaquim Rocha <jrocha igalia com>
Juan A. Suarez Romero <jasuarez igalia com>
+Kjartan Maraas <kmaraas gnome org>
Lionel Landwerlin <lionel g landwerlin linux intel com>
Mathias Hasselmann <mathias openismus com>
Murray Cumming <murrayc murrayc com>
diff --git a/NEWS b/NEWS
index 6637167..3ce6e87 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,64 @@
+NEW in 0.2.8
+============
+
+ * Added support for Vala 0.22 and 0.24
+ * Bump required libglib version to 2.32
+ * Added new core function: grl_deinit()
+ * Added new property in GrlSource: "source-icon"
+ * Added a new library: Grilo Playlist, to handle playlists as containers
+ * Several fixes, including
+ * BGO#657926 - add per-source icon
+ * BGO#695303 - new feature: grilo playlist library
+ * BGO#709208 - search instead of browse vs upnp server that does not support
+ search via parentID
+ * BGO#709651 - Double free when running tests
+ * BGO#710185 - grilo-inspect leaves empty directories in /tmp
+ * BGO#722358 - Add grl_registry_add_config_from_resource
+ * BGO#722398 - core: Add unit to duration
+ * BGO#722407 - Grilo build | `GLib.Icon' could not be found
+ * BGO#723077 - Use the GrlSource::source-icon property in grilo-test-ui
+ * BGO#723191 - Support Vala 0.24
+ * BGO#723989 - Misc build fixes
+ * BGO#724018 - core: Fix "Since" in GrlSource::source-icon docs
+ * Added/Updated support for i18n
+ * Catalan (new)
+ * Catalan Valencian (new)
+ * Chinese
+ * Esperanto (new)
+ * German
+ * Greek
+ * Hebrew (new)
+ * Hungarian (new)
+ * Malayalam
+ * Norwegian bokmål
+ * Portuguese
+ * Tajik
+ * Ukrainian (new)
+ * Contributors to this release:
+ Alban Browaeys <prahal yahoo com>
+ Anish A <aneesh nl gmail com>
+ Bastien Nocera <hadess hadess net>
+ Carles Ferrando <carles ferrando gmail com>
+ Colin Walters <walters verbum org>
+ Daniel Korostil <ted korostiled gmail com>
+ Dominique Leuenberger <dimstar opensuse org>
+ Efstathios Iosifidis <iosifidis opensuse org>
+ Emanuele Aina <emanuele aina collabora com>
+ Fernando Carvalho <phaetonkde gmail com>
+ Gabor Kelemen <kelemeng gnome hu>
+ Gil Forcada <gforcada gnome org>
+ Jacobo Aragunde Pérez <jaragunde igalia com>
+ Juan A. Suarez Romero <jasuarez igalia com>
+ Kjartan Maraas <kmaraas gnome org>
+ Kristjan SCHMIDT <kristjan schmidt googlemail com>
+ Mateu Batle <mateu batle collabora com>
+ Victor Ibragimov <victor ibragimov gmail com>
+ Victor Manuel Jaquez Leal <vjaquez igalia com>
+ Wolfgang Stöggl <c72578 yahoo de>
+ Wylmer Wang <wantinghard gmail com>
+ Yosef Or Boczko <yoseforb src gnome org>
+
+
NEW in 0.2.7
============
diff --git a/configure.ac b/configure.ac
index 3974292..4683a2e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -40,7 +40,7 @@ m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
# Grilo Net library
-GRLNET_VERSION=0.2.3
+GRLNET_VERSION=0.2.4
AC_SUBST(GRLNET_VERSION)
AC_DEFINE_UNQUOTED(GRLNET_VERSION, "$GRLNET_VERSION", [Grilo Net library version])
@@ -57,8 +57,8 @@ AC_DEFINE_UNQUOTED(GRLPLS_VERSION, "$GRLPLS_VERSION", [Grilo Pls 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=5:0:4
-GRLNET_LT_VERSION=1:5:1
+GRL_LT_VERSION=6:0:5
+GRLNET_LT_VERSION=1:6:1
GRLPLS_LT_VERSION=0:0:0
AC_SUBST([GRL_LT_VERSION])
diff --git a/libs/pls/grl-pls.c b/libs/pls/grl-pls.c
index 0ae4a49..2e65c04 100644
--- a/libs/pls/grl-pls.c
+++ b/libs/pls/grl-pls.c
@@ -425,6 +425,7 @@ grl_pls_file_is_playlist (const gchar *uri)
*
* Returns: %TRUE if a GrlMedia is recognized as a playlist.
*
+ * Since: 0.2.0
*/
gboolean
grl_pls_media_is_playlist (GrlMedia *media)
@@ -792,6 +793,7 @@ multiple_result_async_cb (GrlSource *source,
* See #grl_pls_browse() and #grl_source_browse() function for additional
* information and sample code.
*
+ * Since: 0.2.0
*/
void
grl_pls_browse_by_spec (GrlSource *source,
@@ -896,6 +898,7 @@ grl_pls_browse_by_spec (GrlSource *source,
*
* Returns: the operation identifier
*
+ * Since: 0.2.0
*/
guint
grl_pls_browse (GrlSource *source,
@@ -971,6 +974,7 @@ grl_pls_browse (GrlSource *source,
* elements. After use g_object_unref() every element and g_list_free() the
* list.
*
+ * Since: 0.2.0
*/
GList *
grl_pls_browse_sync (GrlSource *source,
@@ -1205,6 +1209,7 @@ set_media_id_from_file (GrlMedia *media,
*
* Returns: (transfer full): a new #GrlMedia.
*
+ * Since: 0.2.0
*/
GrlMedia *
grl_pls_file_to_media (GrlMedia *content,
@@ -1364,6 +1369,7 @@ grl_pls_file_to_media (GrlMedia *content,
* Returns: (transfer none): a string containing the
* list of attributes.
*
+ * Since: 0.2.0
*/
const char *
grl_pls_get_file_attributes (void)
diff --git a/src/grilo.c b/src/grilo.c
index 12c7230..3207221 100644
--- a/src/grilo.c
+++ b/src/grilo.c
@@ -167,6 +167,8 @@ grl_init (gint *argc,
*
* Call this function after finalizing using Grilo, in order to free and clean
* up all the resources created.
+ *
+ * Since: 0.2.8
*/
void
grl_deinit (void)
diff --git a/src/grl-registry.c b/src/grl-registry.c
index 331e9ef..29a5374 100644
--- a/src/grl-registry.c
+++ b/src/grl-registry.c
@@ -1778,6 +1778,8 @@ grl_registry_add_config_from_file (GrlRegistry *registry,
* Load plugin configurations from a .ini-like resource file.
*
* Returns: %TRUE on success
+ *
+ * Since: 0.2.8
**/
gboolean
grl_registry_add_config_from_resource (GrlRegistry *registry,
diff --git a/src/grl-source.c b/src/grl-source.c
index 46b7df6..a8f4892 100644
--- a/src/grl-source.c
+++ b/src/grl-source.c
@@ -2885,6 +2885,8 @@ grl_source_get_name (GrlSource *source)
* @source: a source
*
* Returns: (transfer none): a #GIcon
+ *
+ * Since: 0.2.8
*/
GIcon *
grl_source_get_icon (GrlSource *source)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]