diff options
-rw-r--r-- | NEWS | 10 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/universal-cp-devicetreeview.c | 6 |
3 files changed, 16 insertions, 2 deletions
@@ -1,3 +1,13 @@ +0.1.1 +===== + +Minor release. + +- BUGFIX: Pack the text and pixbuf in the same column of device treeview. +- Require libglade 2.6.0 rather than 2.6.1. +- Print a warning when introspection creation fails. +- Some more english fixes with the help of Robert McQueen. + 0.1 === diff --git a/configure.ac b/configure.ac index d9dab32..9187b03 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.53) -AC_INIT(gupnp-tools, 0.1, http://www.gupnp.org/) +AC_INIT(gupnp-tools, 0.1.1, http://www.gupnp.org/) AM_INIT_AUTOMAKE() AC_CONFIG_SRCDIR(src/universal-cp.h) AM_CONFIG_HEADER(config.h) diff --git a/src/universal-cp-devicetreeview.c b/src/universal-cp-devicetreeview.c index f567f8b..1191762 100644 --- a/src/universal-cp-devicetreeview.c +++ b/src/universal-cp-devicetreeview.c @@ -330,11 +330,15 @@ append_service_tree (GUPnPServiceInfo *info, &service_iter); g_object_unref (introspection); } else if (error) { + char *scpd_url; + + scpd_url = gupnp_service_info_get_scpd_url (info); g_warning ( "Failed to create introspection from '%s': %s", - id, + scpd_url, error->message); + g_free (scpd_url); g_error_free (error); } |