commit 34dff261af30022d251eb25d3658efc9e426ccba
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 15 16:41:11 2012 -0500

    Update NEWS and README for 0.8.1 release.

 NEWS   |   39 +++++++++++++++++++++++++++++++++++++++
 README |    4 ++--
 2 files changed, 41 insertions(+), 2 deletions(-)

commit 7e21eacb10c68956411f361cbc20c221e8c5d45e
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Fri Jan 6 20:45:45 2012 +0100

    Updated Spanish translation

 po/es.po |  688 ++++++++++++++++++++++++++++++++------------------------------
 1 files changed, 351 insertions(+), 337 deletions(-)

commit 9e805804ddaf2bceaa4edff0a90ddcfd687035b2
Author: Jordi Mallach <jordi@sindominio.net>
Date:   Fri Jan 6 18:10:59 2012 +0100

    Updated Catalan translation.

 po/ca.po |  218 +++++++++++++++++++++++++++++++++-----------------------------
 1 files changed, 115 insertions(+), 103 deletions(-)

commit f239dee93b09831aa5ad607366533c0b24e95752
Author: Jordi Mallach <jordi@sindominio.net>
Date:   Fri Jan 6 17:56:50 2012 +0100

    Make license text translatable.
    
    Make the license text block in the About dialog translatable, as it
    is in many other GNOME applications.
    
    Fixes bug #667318.

 src/gva-ui.c |   27 ++++++++++++++-------------
 1 files changed, 14 insertions(+), 13 deletions(-)

commit a6200b2e3b60da99cd069540a60a4f14172588ce
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Jan 4 12:54:02 2012 -0500

    Remove NOT NULL constraint from "manufacturer" column.
    
    MAME 0.144 introduces some <game> entries with no "manufacturer"
    attribute, which fails our "game" table constraint and causes the
    entire SQLite transaction to be rolled back.
    
    Most if not all of these appear to be non-runnable devices.
    
    e.g. <game name="bsmt2000" isdevice="yes" runnable="no">
             <description>BSMT2000</description>
             <rom name="bsmt2000.bin" ...>
         </game>
    
    Indeed the -listxml DTD indicates the attribute is now optional:
    
        <!ELEMENT game (... manufacturer? ...)>

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

commit 973253dd0536f19fa676e8fab4804dde75c17a7e
Author: Jordi Mallach <jordi@sindominio.net>
Date:   Wed Jan 4 17:43:21 2012 +0100

    Replace MAINTAINERS with the mandatory .doap file.

 MAINTAINERS             |    3 ---
 gnome-video-arcade.doap |   32 ++++++++++++++++++++++++++++++++
 2 files changed, 32 insertions(+), 3 deletions(-)

commit df6d2e87204f917e03f6d1a9f7d91cf544a8012c
Author: Jordi Mallach <jordi@sindominio.net>
Date:   Wed Jan 4 17:21:33 2012 +0100

    Point to the new GVA webpage at <http://live.gnome.org/GnomeVideoArcade>.

 README       |    1 +
 src/gva-ui.c |    2 +-
 2 files changed, 2 insertions(+), 1 deletions(-)

commit b93073e07c45a92f232b5b3eac0e14e1f12cb8ff
Author: Jordi Mallach <jordi@sindominio.net>
Date:   Wed Jan 4 17:17:08 2012 +0100

    Update dependency information.
    
    Update versions and Debian package names for some requirements.
    Remove libsoup from the list, as it's not needed yet.

 README |   15 +++------------
 1 files changed, 3 insertions(+), 12 deletions(-)

commit f6da51db212d2f5172d0dea12d03117c0a1165a1
Author: Volkan Yalçın <vlyalcin@gmail.com>
Date:   Mon Dec 26 12:12:31 2011 +0200

    [l10n]Added Turkish translation

 po/LINGUAS |    1 +
 po/tr.po   | 1025 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 1026 insertions(+), 0 deletions(-)

commit 3cbd687ececff027aa0309eb5d80af182b252d51
Author: dmustieles <daniel.mustieles@gmail.com>
Date:   Thu Sep 15 13:20:37 2011 +0200

    Updated Spanish translation

 help/es/es.po |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

commit 8d61a282089f213866f570771ac6778213be1ec8
Author: Gabriel Speckhahn <gabspeck@gmail.com>
Date:   Tue Aug 2 10:34:45 2011 -0300

    Updated Brazilian Portuguese translation

 po/pt_BR.po | 1104 ++++++++++++++++++++++++++++++++++++-----------------------
 1 files changed, 671 insertions(+), 433 deletions(-)

commit 89b72be116cbcdd7907d399f51c5ec0868664cf3
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Jun 22 19:51:14 2011 -0400

    Do not monitor non-existent directories.
    
    Do not create a GFileMonitor for a directory that doesn't exist.  This
    doesn't seem to be an issue on Linux, but on OpenBSD at least the file
    monitor trips immediately with a G_FILE_MONITOR_EVENT_DELETED, which
    causes GVA to ask on startup if it should re-analyze ROMs.
    
    What exposed this issue was the fact that the MAME package on OpenBSD
    includes $HOME/.mame/roms in the default ROM path, but that directory
    will not exist in a newly-created user account.
    
    Related to GNOME bug #652465.

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

commit 104fb7c1bc9ccb4fc8d00e77fcbcc6485a113eb2
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Jun 22 19:45:56 2011 -0400

    Setup file monitors after analyzing ROMs.
    
    This avoids the possibility of GNOME Video Arcade asking if it should
    reanalyze ROMs due to a file monitor trip while it's analyzing ROMs.
    
    Related to GNOME bug #652465.

 src/main.c |   95 +++++++++++++++++++++++++++++++++---------------------------
 1 files changed, 52 insertions(+), 43 deletions(-)

commit 01c8a4c4795406809dc52b9f6e083eb04238c029
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Jun 3 21:38:46 2011 -0500

    Add gva_get_soup_session().

 docs/reference/gnome-video-arcade-sections.txt |    1 +
 docs/reference/tmpl/gva-util.sgml              |    9 +++++
 src/gva-common.h                               |    1 +
 src/gva-util.c                                 |   39 ++++++++++++++++++++++++
 src/gva-util.h                                 |    1 +
 5 files changed, 51 insertions(+), 0 deletions(-)

commit 8a8f743783b06f1f195a6cb7343724333b1263b5
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Jun 3 21:28:58 2011 -0500

    Add "http" as an option for GVA_DEBUG.
    
    This option will integrate with SoupLogger.

 docs/reference/tmpl/gva-util.sgml |    1 +
 src/gva-util.c                    |    3 ++-
 src/gva-util.h                    |    8 ++++++--
 3 files changed, 9 insertions(+), 3 deletions(-)

commit fc90148d0de6be3e98e970b8d50584e9343e39f4
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Jun 3 21:17:36 2011 -0500

    Add a dependency on libsoup.
    
    We'll use libsoup to download images off the web.

 README                     |    9 +++++++++
 configure.ac               |    5 +++++
 docs/reference/Makefile.am |    2 ++
 src/Makefile.am            |    6 +++---
 4 files changed, 19 insertions(+), 3 deletions(-)

commit 06402e5c38bf4aea8718554a1ea1fee23304dea8
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Jun 2 14:18:54 2011 -0400

    gva_get_debug_flags(): Simplify the logic.
    
    Install log handlers for each debug key in a loop.

 src/gva-util.c |   28 +++++++++++++---------------
 1 files changed, 13 insertions(+), 15 deletions(-)

commit a058cbd9bd6397ca1e8078a67f43f7a1560bd12b
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Jun 2 14:13:46 2011 -0400

    gva_get_user_data_dir(): Change directory permissions.
    
    Make the user data directory accessible only to the user.

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

commit ba797eddc8d7887c5c76040f1fae2a10d03e5f48
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon May 30 08:36:21 2011 -0400

    Avoid deprecated GLib/GTK+ APIs.

 src/gva-input-file.c |    2 +-
 src/gva-properties.c |   15 +++++++--------
 2 files changed, 8 insertions(+), 9 deletions(-)

commit a6cb0edd820bfbdff77d24123b02c51baaf66c64
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun May 29 23:16:46 2011 -0400

    Fix widget packing in Technical tab of Properties.

 data/gnome-video-arcade.builder                |  313 ++++++++++++------------
 docs/reference/gnome-video-arcade-sections.txt |    1 -
 src/gva-properties.c                           |   22 +-
 src/gva-ui.h                                   |    2 -
 4 files changed, 161 insertions(+), 177 deletions(-)

commit 27561ff13e83e80cf1d935e0a72ec8a04d9defc4
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun May 29 20:57:54 2011 -0400

    GvaScreenSaver: Remove the X11 fallback.
    
    Not worth the extra configuration hassle, and fixes a linker issue in
    the 0.8.0 release.

 src/gva-screen-saver.c |   70 ------------------------------------------------
 src/gva-screen-saver.h |    2 +-
 2 files changed, 1 insertions(+), 71 deletions(-)

commit 3715267e6d4fdec469eadec11cf4da5c3afad9a9
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun May 15 19:17:19 2011 -0400

    Post-release version bump.

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