commit 7ea70a3073ea0c1c8f5b4db230d36e7f7f42e7aa
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Dec 9 12:51:04 2011 +0000

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

 AUTHORS      |    1 +
 NEWS         |   17 +++++++++++++++++
 configure.ac |    2 +-
 3 files changed, 19 insertions(+), 1 deletions(-)

commit df502ee82e66e0f730ec3b43e55c64fb30d8b7d7
Author: Guillaume Emont <guijemont@igalia.com>
Date:   Fri Nov 25 13:22:15 2011 +0100

    Ensure grl_metadata_list_key_new() is called with a sentinel
    
    This change triggers a compilation warning (with gcc) if the sentinel is
    forgotten.

 src/grl-util.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit a19c5e079ebc97fa22635aca9a77fd8da05411b0
Author: Sam Thursfield <sam.thursfield@codethink.co.uk>
Date:   Wed Nov 23 19:03:40 2011 +0100

    configure: Honour VAPIDIR environment variable

 configure.ac |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

commit 47f6c595365a1a996e7f09c038d55ec98c3eb55c
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Nov 23 17:14:54 2011 +0000

    wc-test: Remove reference from Makefile.am
    
    This fixes previous commit dda5a72d37136588228bc1fe5e1276f2f32e1905.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 libs/net/Makefile.am |   12 ------------
 1 files changed, 0 insertions(+), 12 deletions(-)

commit dda5a72d37136588228bc1fe5e1276f2f32e1905
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Nov 23 17:00:07 2011 +0000

    wc-test: Remove it
    
    Actually, this application was used as a tool to develop GrlNet, but actually
    it isn't real test. So let's remove it.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 libs/net/wc-test.c |   90 ----------------------------------------------------
 1 files changed, 0 insertions(+), 90 deletions(-)

commit 608b42d13113f6a2a5db7aac9a79a9ff9cbe0b1d
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Tue Nov 22 16:57:16 2011 +0100

    build: conditional creation of grl-net.pc files
    
    If libsoup is not available, then the grl-net library will not be built. Hence
    we shall not create the grl-net.pc files. Otherwise we will compile plugins
    that will not be able to be loaded.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 configure.ac |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

commit 9ad096ae06be056b51461253c53ea34b7aadfe87
Author: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
Date:   Tue Nov 22 16:57:15 2011 +0100

    build: avoid the export of NETCACHE variable
    
    NETCACHE variables is not used for compiler tasks, so the PKG_CHECK_MODULES
    can be replaced by a PKG_CHECK_EXISTS, which does not export an automake
    variable, as we only need to know if cache operations are supported in libsoup
    given the version number.
    
    Signed-off-by: Víctor Manuel Jáquez Leal <vjaquez@igalia.com>

 configure.ac |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

commit e7ddbb39f8552c8dc158b5ff39f707883e93277f
Author: Jens Georg <mail@jensge.org>
Date:   Sat Oct 8 09:09:24 2011 +0200

    core: Use full path to load plugin information

 src/grl-plugin-registry.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

commit 9ec0f0a46aa7cc237727f50353e4113c9a163785
Author: Sam Thursfield <sam.thursfield@codethink.co.uk>
Date:   Thu Nov 10 19:21:26 2011 +0000

    bindings/vala: Fix various bugs in Vala bindings

 bindings/vala/grilo-0.1-custom.vala |   60 +++++++++++++++++-----------------
 bindings/vala/grilo-0.1.metadata    |    5 +++
 2 files changed, 35 insertions(+), 30 deletions(-)

commit 6b8b5e14fcd683a2c758939c113707f5bf2102ef
Author: Sam Thursfield <sam.thursfield@codethink.co.uk>
Date:   Thu Nov 10 19:26:29 2011 +0000

    core: Introspection fixes

 src/grl-media-source.c    |    4 ++--
 src/grl-metadata-source.c |    2 +-
 src/grl-multiple.c        |    2 +-
 src/grl-plugin-registry.c |    2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

commit 251c0d8097349fc8b1adcf7864bfa1139417e2ac
Author: Sam Thursfield <sam.thursfield@codethink.co.uk>
Date:   Wed Oct 26 13:57:11 2011 +0100

    grl-net: Correctly unref operation async result
    
    Correct behaviour is to unref the GSimpleAsyncResult object after the call to
    g_simple_async_result_complete(). It cannot be done in the async result's callback.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=662763
    
    Signed-off-by: Simon Pena <spena@igalia.com>

 libs/net/grl-net-wc.c |   12 +++++++-----
 1 files changed, 7 insertions(+), 5 deletions(-)

commit a3359054083ac190de2fa0510d676ae35bbe8060
Author: Sam Thursfield <sam.thursfield@codethink.co.uk>
Date:   Wed Oct 26 12:36:41 2011 +0100

    grl-net: Fix crashes in SoupRequest error case
    
    https://bugzilla.gnome.org/show_bug.cgi?id=662762
    
    Signed-off-by: Simon Pena <spena@igalia.com>

 libs/net/grl-net-wc.c |   24 ++++++++++++++++++++----
 1 files changed, 20 insertions(+), 4 deletions(-)

commit 1e0c3aab01e56f901b1e37c88067ceb72caaa691
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Fri Sep 23 14:27:16 2011 +0000

    core: Use G_SEARCHPATH_SEPARATOR_S to separate paths
    
    Currently, it means in Unix ":" will be used as the separator for the list of
    paths to search for plugins, while in Windows it will be ";".
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grilo.c |   23 +++++++----------------
 1 files changed, 7 insertions(+), 16 deletions(-)

commit e5a0497fdf3a71ccb92233945b707e1c2fe6c242
Author: Damien Lespiau <damien.lespiau@intel.com>
Date:   Mon Sep 19 11:32:45 2011 +0100

    windows: Fix the default directory to look for plugins
    
    On windows, you need to detect at runtime where you are and build the path to
    the plugins directory based on where you are being run. GLib provides a
    function to do just that.
    
    Then, you can't really use ':' to separate paths eg. C:\foo:D:\bar

 src/grilo.c |   36 ++++++++++++++++++++++++++++++++++--
 1 files changed, 34 insertions(+), 2 deletions(-)

commit fa479cbabefad3f0f9ea7ffb2213fd2ad9b9e058
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Sep 7 11:15:47 2011 +0000

    core: Mention explicitly Grilo in the command-line options
    
    Current command-line options affects the way Grilo uses the plugins.
    
    But when asking for help, it only mentions 'plugins', not 'Grilo plugins'.
    
    As these options can be added to other applications, possible with his own
    pluggable system, this commit clearly specify that we meant Grilo plugins when
    asking for help for these options.
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/grilo.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

commit 3384ce6ce330b3a1a23a15c7752c4f747fbac131
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Sep 7 09:57:38 2011 +0000

    build: Include bugzilla and homepage information into autotools init
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 configure.ac |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

commit 7d898d2d6a3ca00796691c8ab8d73a316efa0203
Author: Damien Lespiau <damien.lespiau@intel.com>
Date:   Mon Sep 5 12:44:28 2011 +0100

    tools: Don't link against -ldl and -lpthread
    
    The tools don't use any of the symbols defined by those library and depending
    on them should come from glib.

 tools/grilo-inspect/Makefile.am |    1 -
 tools/grilo-test-ui/Makefile.am |    1 -
 2 files changed, 0 insertions(+), 2 deletions(-)

commit 721008ddc61ff73eaeee8fc140a2120e5adad17a
Author: Damien Lespiau <damien.lespiau@intel.com>
Date:   Mon Sep 5 12:44:27 2011 +0100

    gitignore: Ignore .exe files

 .gitignore |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

commit 50431f08a7ce9a8087edcb0ffc747ef7e155e489
Author: Damien Lespiau <damien.lespiau@intel.com>
Date:   Mon Sep 5 12:44:26 2011 +0100

    build: Generate DLLs when compiling for Windows
    
    When compiling for windows, libtool needs the -no-undefined flag. As it's a
    good practice to have it anyway, add it unconditionally.

 libs/net/Makefile.am |    3 +++
 src/Makefile.am      |    3 +++
 2 files changed, 6 insertions(+), 0 deletions(-)