commit 54cccbef0f19770d92e2c5cd9d589657f75b5dbc
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Thu May 16 00:24:42 2013 +0200

    Release 0.2.6

 AUTHORS               |    1 +
 NEWS                  |   47 +++++++++++++++++++++++++++++++++++++++++++++++
 configure.ac          |    4 ++--
 src/data/grl-config.c |    4 ++--
 4 files changed, 52 insertions(+), 4 deletions(-)

commit 03e2472ca8951cd3668149b9ca6b8747f5d4cc49
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed May 15 22:47:14 2013 +0000

    build: fix distcheck

 tools/grilo-inspect/Makefile.am |    7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit b3a806e1091d79d0264b6ca39a5b7ffe75fa88b0
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed May 15 21:37:31 2013 +0000

    test-ui: make liboauth a conditional dependency
    
    If liboauth is available, then add support in test-ui for authorizing Flickr
    personal accounts.

 configure.ac                    |   13 +++++++++----
 tools/grilo-test-ui/Makefile.am |   20 +++++++++++++++-----
 tools/grilo-test-ui/main.c      |   18 ++++++++++++++++++
 3 files changed, 42 insertions(+), 9 deletions(-)

commit 85c26ba5a52ec8b90e5984db50385dffd8ab066b
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed May 15 21:40:57 2013 +0200

    net: ensure cache is created with the proper size
    
    This covers the case of deactivating and reactivating later the cache.
    As soon as we create it, we need to set the configured sized.

 libs/net/grl-net-soup-unstable.c |   16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

commit 5140418233f2f8822c7e30e8353a155bb0a91aa7
Author: Sergio Villar Senin <svillar@igalia.com>
Date:   Tue May 14 17:34:47 2013 +0200

    test-ui: shutdown plugins on exit
    
    Unload plugins on program exit. The registry will call the finalize
    method on each plugin before the program ends to allow things like
    clearing the plugins HTTP cache.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=700311

 tools/grilo-test-ui/main.c |   18 +++++++++++-------
 1 file changed, 11 insertions(+), 7 deletions(-)

commit 23fe14ed52ed620ded17d453419d560d314791e2
Author: Sergio Villar Senin <svillar@igalia.com>
Date:   Tue May 14 17:34:25 2013 +0200

    net: use a different cache per session
    
    The SoupCache is a SoupSessionFeature so it could only be attached
    to a single SoupSession. A new SoupCache is created for each
    SoupSession.
    
    Also the cache contents are now destroyed on finalize.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=700311

 libs/net/grl-net-soup-unstable.c |   53 +++++++++++++++++++++++++-------------
 1 file changed, 35 insertions(+), 18 deletions(-)

commit ab5db43b56f464d78a28f62202a6540e9d04c705
Author: Sergio Villar Senin <svillar@igalia.com>
Date:   Tue May 14 17:29:24 2013 +0200

    net: properly set the SoupCache max size
    
    The SoupCache expects the maximum size to be specified in bytes
    instead of in megabytes. Also removed the call to
    soup_cache_set_max_size just after creating the cache as it is not
    needed.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=700310

 libs/net/grl-net-soup-unstable.c |    4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

commit cccd542bd94152939f412a5ca46b3407e5dc0334
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Apr 30 08:38:40 2013 +0000

    test-ui: Initialize variables

 tools/grilo-test-ui/main.c |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit 21339e9723f62aee1c68bc341773388df52bc2b6
Author: Marek Chalupa <mchalupa@redhat.com>
Date:   Mon Apr 22 09:19:25 2013 +0200

    test-ui: use new flickr plugin
    
    flickr-auth.[ch] was replaced by their oauth alternatives and main.c was
    rewritten to use them.
    
    Into authenticate flickr popup window was added text entry to enter the
    verifier given by flickr.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=697175
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 configure.ac                       |    8 +-
 tools/grilo-test-ui/Makefile.am    |    6 +-
 tools/grilo-test-ui/flickr-auth.c  |  257 -----------------------------
 tools/grilo-test-ui/flickr-auth.h  |   43 -----
 tools/grilo-test-ui/flickr-oauth.c |  317 ++++++++++++++++++++++++++++++++++++
 tools/grilo-test-ui/flickr-oauth.h |   90 ++++++++++
 tools/grilo-test-ui/main.c         |   44 +++--
 7 files changed, 449 insertions(+), 316 deletions(-)

commit b590157c45a14eb95c54091a75eb109cf1bcf438
Author: Marek Chalupa <mchalupa@redhat.com>
Date:   Mon Apr 22 09:19:25 2013 +0200

    core: add grl_config_get/set_api_token_secret()
    
    Two new functions added to grl-config.[ch], needed by oauth
    authentication proccess.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=697175
    
    Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com>

 src/data/grl-config.c |   35 +++++++++++++++++++++++++++++++++++
 src/data/grl-config.h |   21 +++++++++++++--------
 2 files changed, 48 insertions(+), 8 deletions(-)

commit 19f01a3cdbaf29b0b1c2929cbc66ca0d80866937
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Apr 15 20:41:48 2013 +0000

    grl-inspect: Use format string literal

 tools/grilo-inspect/grl-inspect.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 3ea15a4feca73acc5c43466d13c0a1d4e2eb5a61
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Sun Apr 14 21:29:25 2013 +0000

    grl-inspect: Show information about keys

 tools/grilo-inspect/grl-inspect.c |  125 +++++++++++++++++++++++++++++++++++++
 1 file changed, 125 insertions(+)

commit 1fef17ed2f87ba09dc520be9d305d644dac5deb8
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Mar 27 19:14:31 2013 +0000

    grl-inspect: Show more information about sources

 tools/grilo-inspect/grl-inspect.c |   57 ++++++++++++++++++++++++++++++-------
 1 file changed, 47 insertions(+), 10 deletions(-)

commit ed556e13bfc817982f5d04ca4f2a8ba01f41ae83
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Wed Mar 27 18:17:52 2013 +0000

    grl-inspect: Group sources by plugin, and sort alphabetically

 tools/grilo-inspect/grl-inspect.c |   68 +++++++++++++++++++++++++++----------
 1 file changed, 51 insertions(+), 17 deletions(-)

commit 88bb9eb3a01242d4e41cc705d1311371f5ee7fb8
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Mar 25 00:30:01 2013 +0000

    grl-inspect: Print list of available keys

 configure.ac                      |    1 +
 src/grl-metadata-key.h            |    2 +-
 tools/grilo-inspect/Makefile.am   |    9 ++++-
 tools/grilo-inspect/grl-inspect.c |   77 +++++++++++++++++++++++++++++++++----
 4 files changed, 79 insertions(+), 10 deletions(-)

commit b65c75f8eb8f6926317319b126c586d6d2e6d1d0
Author: Miguel Rodriguez Núñez <bokerones.fritos@gmail.com>
Date:   Fri Apr 12 12:00:06 2013 +0200

    Updated Spanish translation

 po/es.po |   35 ++++++++++++++++++-----------------
 1 file changed, 18 insertions(+), 17 deletions(-)

commit aa7ed956d9a8f7ce86eb72dbbdd370ffc2a27f62
Author: Miguel Rodriguez Núñez <bokerones.fritos@gmail.com>
Date:   Thu Apr 11 18:10:38 2013 +0200

    Updated Spanish translation

 po/LINGUAS |    1 +
 po/es.po   |  195 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 196 insertions(+)

commit 10a5a033afc3dd745df5d42e87676b197c0b1c1e
Author: Rafael Ferreira <rafael.f.f1@gmail.com>
Date:   Wed Apr 10 02:55:17 2013 -0300

    Added Brazilian Portuguese translation

 po/LINGUAS  |    1 +
 po/pt_BR.po |  193 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 194 insertions(+)

commit 46eab031ff7c871f16fbbf67d9cddddae7b6cf85
Author: Bastien Nocera <hadess@hadess.net>
Date:   Wed Apr 3 20:25:28 2013 +0200

    test-ui: Update for filesystem plugin changes
    
    Update for filesystem plugin changes (base-path -> base-uri), and
    add recent:/// to the list, as an example.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=696860

 tools/grilo-test-ui/main.c |   18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

commit 623030e83ec0764389a3035145235d7cd32accf8
Author: Victor Ibragimov <victor.ibragimov@gmail.com>
Date:   Mon Apr 8 17:22:53 2013 +0500

    Added new Tajik translation

 po/LINGUAS |    1 +
 po/tg.po   |  192 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 193 insertions(+)

commit 28ab8282d0a5cf8a99d5b5789fd0495336aa2194
Author: Dimitris Spingos <dmtrs32@gmail.com>
Date:   Wed Apr 3 13:52:10 2013 +0300

    Added Greek translation

 po/LINGUAS |    1 +
 po/el.po   |  196 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 197 insertions(+)

commit 9f1e16c529d4fd661e62e63fe24d7863300b29ff
Author: Martin Srebotnjak <miles@filmsi.net>
Date:   Fri Mar 29 15:49:47 2013 +0100

    Updated Slovenian translation

 po/sl.po |   85 ++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 44 insertions(+), 41 deletions(-)

commit 94b71dfae524d6c475e69c0505fc726702a2b9b8
Author: Marek Černocký <marek@manet.cz>
Date:   Thu Mar 28 09:54:52 2013 +0100

    Added Czech language

 po/LINGUAS |    1 +
 1 file changed, 1 insertion(+)

commit 105e7293416719b46f674d018b83755828077e63
Author: Marek Černocký <marek@manet.cz>
Date:   Thu Mar 28 09:54:35 2013 +0100

    Czech translation

 po/cs.po |  194 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 194 insertions(+)

commit c1e9b86a2ac8a75acae1c256960ae07f4300d466
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Mar 25 00:35:02 2013 +0000

    grl-inspect: Wait 1 second before showing results
    
    Wait for sources that are created asynchronously to be active before inspecting
    them.

 grl-inspect.1                     |    1 +
 tools/grilo-inspect/grl-inspect.c |   10 +++-------
 2 files changed, 4 insertions(+), 7 deletions(-)

commit 53ab14ac90617c8b320d2251f4dfe1f6cfa43e95
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sun Mar 24 23:15:18 2013 +0100

    Added galician translations

 po/LINGUAS |    1 +
 po/gl.po   |  193 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 194 insertions(+)

commit 687be38de1a3eab699744951d5d0a03b6bf37bfa
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Sun Mar 24 07:47:45 2013 +0100

    Added Serbian translation

 po/LINGUAS     |    3 +-
 po/sr.po       |  193 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/sr@latin.po |  193 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 388 insertions(+), 1 deletion(-)

commit 5fd04c7ef80be58626c2cf1e0c670e82dabd84ae
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Sat Mar 23 22:55:30 2013 +0000

    core: Improve grl_date_time_from_iso8601()
    
    Handle more date precisions: YYYY, YYYY-MM, YYYY-MM-DD, YYYYMMDD.

 src/grl-util.c |   18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)

commit 47ecd0ce2d53b119f737bf580695240a2a2c59ad
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Sat Mar 23 02:29:46 2013 +0100

    Updated Slovenian translation

 po/sl.po |   32 +++++++++++++++-----------------
 1 file changed, 15 insertions(+), 17 deletions(-)

commit dcb6a00c4906a3ec50d2a71c8a763a5797eadcee
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Sat Mar 23 02:26:43 2013 +0100

    Added sl for Slovenian translation

 po/LINGUAS |    2 ++
 1 file changed, 2 insertions(+)

commit 8f36e9c9a4be1e29d738df0e0ca6812d34052086
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Sat Mar 23 02:25:26 2013 +0100

    Added Slovenian translation

 po/sl.po |  200 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 200 insertions(+)

commit 4d71d5ab698e3f944c8856effa845e89abdce9c2
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Fri Mar 22 23:28:17 2013 +0100

    Added Polish translation

 po/LINGUAS |    1 +
 po/pl.po   |  197 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 198 insertions(+)

commit e1959c237fcf75721267b6be13118fd7558c9c87
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Mon Mar 18 19:20:56 2013 +0100

    i18n: Add support for internationalization

 Makefile.am                      |    2 +-
 configure.ac                     |   13 +++++++------
 libs/net/Makefile.am             |    1 +
 libs/net/grl-net-mock.c          |    7 ++++---
 libs/net/grl-net-private.c       |   17 ++++++++--------
 libs/net/grl-net-soup-stable.c   |    2 +-
 libs/net/grl-net-soup-unstable.c |    7 ++++---
 po/POTFILES.in                   |    8 ++++++++
 src/Makefile.am                  |    1 +
 src/grilo.c                      |   16 ++++++++++-----
 src/grl-multiple.c               |   15 ++++++++++----
 src/grl-registry.c               |   40 +++++++++++++++++++++-----------------
 src/grl-source.c                 |   21 ++++++++++++--------
 13 files changed, 93 insertions(+), 57 deletions(-)

commit 35cfddb88d6240dd5a8acbc132d6ccd4c1e5570f
Author: Kalev Lember <kalevlember@gmail.com>
Date:   Wed Mar 20 19:55:02 2013 +0100

    vala: Add support for Vala 0.20

 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit df8e6103c5efd11b162c3bfbd772bd334d4ae5b2
Author: Alberto Garcia <agarcia@igalia.com>
Date:   Wed Mar 20 12:27:45 2013 +0200

    core: Fix compiler warning
    
    gcc complains about 'unknown_keys' being possibly uninitialized when
    media_decorate() is called from queue_add_media().
    
    That probably happens because gcc cannot guarantee that
    g_queue_push_tail() doesn't modify qlement->is_ready.

 src/grl-source.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 74315e28c9bd0c2fbbbcba33d87c9935a20c3fc6
Author: Alberto Garcia <agarcia@igalia.com>
Date:   Wed Mar 20 12:27:34 2013 +0200

    core: Fix uninitialized variable in grl_registry_preload_plugin()
    
    If the plugin XML file can't be read in grl_registry_preload_plugin(),
    the function returns an uninitialized pointer instead of NULL.

 src/grl-registry.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a9a756f9dd66657c0ceaab556c466c1dc3590404
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Mar 19 12:18:59 2013 +0000

    Post-release version bump to 0.2.6

 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit c2a266541c6e1873686320b37c6b29576d255eac
Author: Juan A. Suarez Romero <jasuarez@igalia.com>
Date:   Tue Mar 19 12:13:04 2013 +0000

    Release 0.2.5

 AUTHORS      |    1 +
 NEWS         |   24 ++++++++++++++++++++++++
 configure.ac |    4 ++--
 3 files changed, 27 insertions(+), 2 deletions(-)