# Generated by Makefile. Do not edit.

commit 79bd5e5d9179897583bada4e09d22ba9b4ef0aee
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Sep 14 16:22:37 2015 -0400

    Update NEWS and README for 0.8.5 release.

 NEWS   | 22 ++++++++++++++++++++++
 README |  4 ++--
 2 files changed, 24 insertions(+), 2 deletions(-)

commit 3fead008a774dc8bdb5d6d41a5f943f88c42e5cc
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Sep 14 15:30:10 2015 -0400

    mame: Fix handling of $HOME in MAME search paths
    
    MAME configurations often use shell variables like $HOME in "rompath"
    and other search path settings.
    
    These shell variables need to be expanded to be processed correctly,
    but wordexp() doesn't like semicolon-delimited search paths.
    
    In addition to the variable expansion in gva_mame_get_config_value(),
    also feed each search path to wordexp() in gva_mame_get_search_paths().
    
    This was preventing ROM change detection from working in some cases.

 src/gva-mame.c | 76 +++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 46 insertions(+), 30 deletions(-)

commit abfad01d3be3888e01a71fa9215ee8d209645370
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Sep 14 14:00:31 2015 -0400

    mame: Fix sound options for recording and play back
    
    Followup to bug #748667.  I had adapted to the new sound options for
    running games, but forgot to update the record and play back commands.

 src/gva-mame.c | 81 ++++++++++++++++++++++++++--------------------------------
 1 file changed, 36 insertions(+), 45 deletions(-)

commit 6086516bed6ca54f9e06dcfd2313f95c29f2b49c
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Sep 14 13:33:12 2015 -0400

    ui: Convert GvaGameStore back to a list store
    
    MASSIVE performance boost!  Way more than I expected.

 src/gva-columns.c    |  4 ++--
 src/gva-game-store.c | 16 ++++++++--------
 src/gva-game-store.h |  4 ++--
 src/gva-play-back.c  |  8 ++++----
 src/gva-ui.c         | 12 ++++++------
 5 files changed, 22 insertions(+), 22 deletions(-)

commit b4008d46ef7568f9146773cf0e07ad1c840b5c10
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Sep 14 09:37:07 2015 -0400

    audit: Give the audit window its own tree store
    
    I want to convert GvaGameStore back to a list store.
    
    The audit window was the reason I converted GvaGameStore to a tree store,
    thinking how neat it would be to reuse the same model class for the main
    window and audit window.  But I think it suffered a big performance hit
    as a result.  It was a dumb reason in retrospect.

 data/gnome-video-arcade.builder                | 20 +++++++
 docs/reference/gnome-video-arcade-sections.txt |  1 -
 src/gva-audit.c                                | 83 ++++++++++++--------------
 src/gva-audit.h                                |  1 -
 src/main.c                                     |  1 -
 5 files changed, 59 insertions(+), 47 deletions(-)

commit 8069ce9e45933e49ca5a702143775f15ad09cb86
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Sep 13 21:53:19 2015 -0400

    db: Exclude devices and mechanical machines
    
    MAME slipped in a couple new XML attributes while I wasn't looking:
    
      isdevice (yes|no)
      ismechanical (yes|no)
    
    Similar to "isbios (yes|no)", update the available games query to
    exclude BIOS ROMs, device ROMs, and ROMs for mechanical games.
    
    https://bugzilla.gnome.org/710222

 src/gva-columns.c    |  2 ++
 src/gva-db.c         | 20 +++++++++++++++++++-
 src/gva-game-store.c |  2 ++
 src/gva-game-store.h |  6 ++++++
 4 files changed, 29 insertions(+), 1 deletion(-)

commit 67b0afd7982fe2ac865a28a4fa4f99d115de9e1c
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Sep 13 18:04:42 2015 -0400

    ui: Fix progress bar padding

 data/gnome-video-arcade.builder | 2 ++
 1 file changed, 2 insertions(+)

commit d063cdb2b0c68da4b28393a7205527ec8a9e9ca2
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Sep 13 13:56:19 2015 -0400

    docs: Update man page and doap description
    
    Both are now consistent with the README file.
    
    https://bugzilla.gnome.org/754240

 docs/Makefile.am             |  8 +++++++-
 docs/gnome-video-arcade.1    | 40 ----------------------------------------
 docs/gnome-video-arcade.1.in | 40 ++++++++++++++++++++++++++++++++++++++++
 gnome-video-arcade.doap      | 13 ++++++-------
 4 files changed, 53 insertions(+), 48 deletions(-)

commit a65fcc8e3e3b4c3233848b033e7dea908f493308
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Sep 13 13:57:46 2015 -0400

    Post-release version bump

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

commit e24c00919a7742e37ff8dfa2c0b32d11eccf3485
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Sep 13 13:18:38 2015 -0400

    db: Detect incomplete database content
    
    If GVA terminates during a database rebuild + ROM analysis, it should
    detect this condition on the next launch and automatically rebuild the
    database again.  Otherwise it may incorrectly show no available games.
    
    https://bugzilla.gnome.org/754216

 docs/reference/gnome-video-arcade-sections.txt |  2 +
 src/gva-db.c                                   | 94 ++++++++++++++++++++++++--
 src/gva-db.h                                   |  3 +
 src/main.c                                     |  6 ++
 4 files changed, 99 insertions(+), 6 deletions(-)

commit d5ae0c97dc4305b77d813ca7ad7567d45975deff
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Thu Sep 3 02:24:23 2015 +0200

    Updated Polish translation

 po/pl.po | 153 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 74 insertions(+), 79 deletions(-)

commit 8953fc7709ecc6ca5bee50dad2903dae200ea0e2
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Aug 26 21:28:15 2015 -0400

    Update NEWS and README for 0.8.4 release.

 NEWS   | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 README | 12 ++++++------
 2 files changed, 59 insertions(+), 6 deletions(-)

commit a7a087322d98e9187264bd25bbb9626cd473e700
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Aug 26 20:44:11 2015 -0400

    properties: Remove "Gallery" placeholder tab
    
    The feature never happened, it's been an empty placeholder for years.

 data/gnome-video-arcade.builder | 47 ++---------------------------------------
 src/gva-properties.c            |  1 -
 2 files changed, 2 insertions(+), 46 deletions(-)

commit f1f17760cbd722a8ef4446b7a9eeae5c13e509a5
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Aug 26 20:30:46 2015 -0400

    screen-saver: Use freedesktop.org instead of gnome.org
    
    The ScreenSaver interface got standardized.
    
    http://standards.freedesktop.org/idle-inhibit-spec/latest/re01.html
    
    https://bugzilla.gnome.org/704860

 src/gva-screen-saver.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit c4df8508fc83aa35763b35a3edc00ebd420b93a3
Author: Piotr Drąg <piotrdrag@gmail.com>
Date:   Thu Aug 20 13:55:42 2015 +0200

    Add Polish translation

 po/LINGUAS |    1 +
 po/pl.po   | 1066 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 1067 insertions(+)

commit 64f23a9d3e45abc6fdf4b59b2d4a9db9a9b13ddd
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Aug 1 13:48:48 2015 -0400

    main: Pulse the progress bar while analyzing ROMs
    
    Apparently at some point "mame -verifyroms" stopped showing status for
    all ROMs and now only shows status for ROMs having issues.  This broke
    the progress indicator.
    
    Since we obviously don't know in advance which ROMs have issues, we
    can no longer compute percent complete based on MAME output.  So just
    pulse the progress bar until the process exits.

 src/gva-audit.c |  2 --
 src/gva-main.c  | 26 ++++++++++++++++++++------
 2 files changed, 20 insertions(+), 8 deletions(-)

commit b8755d54de94dc3f8385758af0326f2189a4a211
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Jul 28 14:44:30 2015 -0400

    treeview: Fix favorite icon rendering.
    
    The icon for non-favorite games was supposed to be rendered as insensitive
    but still clickable.  This broke as some point in certain GTK3 themes like
    Adwaita, so new trickery is needed.
    
    https://bugzilla.gnome.org/704811

 src/gva-cell-renderer-pixbuf.c | 20 ++++++++++++++------
 1 file changed, 14 insertions(+), 6 deletions(-)

commit 8760266ba179bd2c21a258bfa8619a4dc44007fb
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jul 27 22:44:28 2015 -0400

    main: Restore progress bar to the way it was intended.
    
    Height should match that of the status bar, not a mere 6 pixels.

 data/gnome-video-arcade.builder |  1 +
 src/main.c                      | 37 +++++++++++++++++++++++++++++++++++++
 2 files changed, 38 insertions(+)

commit 9dfb0f7d1f5fc8cc4a9b52df28e1c4d8ad556b7e
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jul 27 17:03:32 2015 -0400

    db: Adapt to <game> becoming <machine>.
    
    MAME 0.162 renamed <game> elements to <machine> in its -listxml output.
    
    https://bugzilla.gnome.org/752266

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

commit 8b47af2e2568a07db9f7addb4591bcdb8eb3246d
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jul 27 16:58:49 2015 -0400

    history: Fix history.dat parsing.
    
    The history.dat file now contains data for both MAME and MESS.  The MAME
    entries still start with $info tags but the MESS entries start with tags
    named after systems like $snes and $segacd.  Ignore the MESS entries.

 src/gva-history.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit 797c44da0dc93ce17ce879f9578f30ff7ba77699
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jul 27 16:01:18 2015 -0400

    Comply with doap nonsense.

 gnome-video-arcade.doap | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit ca1462bb0ab54c5ff526549ba1fa609511ff6d49
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jul 27 15:37:27 2015 -0400

    Update copyrights.

 docs/gnome-video-arcade.1      | 2 +-
 src/gva-audit.c                | 2 +-
 src/gva-audit.h                | 2 +-
 src/gva-categories.c           | 2 +-
 src/gva-categories.h           | 2 +-
 src/gva-cell-renderer-pixbuf.c | 2 +-
 src/gva-cell-renderer-pixbuf.h | 2 +-
 src/gva-column-manager.c       | 2 +-
 src/gva-column-manager.h       | 2 +-
 src/gva-columns.c              | 2 +-
 src/gva-columns.h              | 2 +-
 src/gva-common.h               | 2 +-
 src/gva-db.c                   | 2 +-
 src/gva-db.h                   | 2 +-
 src/gva-error.c                | 2 +-
 src/gva-error.h                | 2 +-
 src/gva-favorites.c            | 2 +-
 src/gva-favorites.h            | 2 +-
 src/gva-game-store.c           | 2 +-
 src/gva-game-store.h           | 2 +-
 src/gva-history.c              | 2 +-
 src/gva-history.h              | 2 +-
 src/gva-input-file.c           | 2 +-
 src/gva-input-file.h           | 2 +-
 src/gva-main.c                 | 2 +-
 src/gva-main.h                 | 2 +-
 src/gva-mame-process.c         | 2 +-
 src/gva-mame-process.h         | 2 +-
 src/gva-mame.c                 | 2 +-
 src/gva-mame.h                 | 2 +-
 src/gva-mute-button.c          | 2 +-
 src/gva-mute-button.h          | 2 +-
 src/gva-nplayers.c             | 2 +-
 src/gva-nplayers.h             | 2 +-
 src/gva-play-back.c            | 2 +-
 src/gva-play-back.h            | 2 +-
 src/gva-preferences.c          | 2 +-
 src/gva-preferences.h          | 2 +-
 src/gva-process.c              | 2 +-
 src/gva-process.h              | 2 +-
 src/gva-properties.c           | 2 +-
 src/gva-properties.h           | 2 +-
 src/gva-screen-saver.c         | 2 +-
 src/gva-screen-saver.h         | 2 +-
 src/gva-time.c                 | 2 +-
 src/gva-time.h                 | 2 +-
 src/gva-tree-view.c            | 2 +-
 src/gva-tree-view.h            | 2 +-
 src/gva-ui.c                   | 4 ++--
 src/gva-ui.h                   | 2 +-
 src/gva-util.c                 | 2 +-
 src/gva-util.h                 | 2 +-
 src/gva-wnck.c                 | 2 +-
 src/gva-wnck.h                 | 2 +-
 src/main.c                     | 2 +-
 55 files changed, 56 insertions(+), 56 deletions(-)

commit b351bf3140eb1055829b9811057482ce0b2b473c
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jul 27 13:26:35 2015 -0400

    Drop support for xmame.
    
    xmame is long dead; the SDL port is the canonical MAME now.
    
    Remove both the xmame backend and all the multi-backend scaffolding.

 README                                         |   25 +-
 configure.ac                                   |   15 +-
 docs/gnome-video-arcade.1                      |    7 +-
 docs/reference/Makefile.am                     |    3 +-
 docs/reference/gnome-video-arcade-docs.sgml    |    1 -
 docs/reference/gnome-video-arcade-sections.txt |    8 +-
 gnome-video-arcade.doap                        |    8 +-
 po/POTFILES.in                                 |    4 +-
 src/Makefile.am                                |   11 +-
 src/gva-mame-common.c                          | 1012 -----------------------
 src/gva-mame-common.h                          |   41 -
 src/gva-mame-sdlmame.c                         |   97 ---
 src/gva-mame-xmame.c                           |   97 ---
 src/gva-mame.c                                 | 1019 ++++++++++++++++++++++++
 src/gva-mame.h                                 |   22 +-
 src/gva-preferences.c                          |    1 -
 src/gva-process.c                              |    4 +-
 src/gva-util.c                                 |   19 +-
 18 files changed, 1044 insertions(+), 1350 deletions(-)

commit db6e21f2c5f3e4faede12085de77425b34af29c3
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jul 27 12:59:09 2015 -0400

    Import latest git.mk.

 git.mk | 159 ++++++++++++++++++++++++++++++++++++++++++++++++++++++-----------
 1 file changed, 134 insertions(+), 25 deletions(-)

commit b64bd8c77742639676ab1ff0381432324599c315
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jul 27 12:40:20 2015 -0400

    docs: Fix tests, stop using templates

 configure.ac                                      |   2 +-
 docs/reference/Makefile.am                        |   6 +-
 docs/reference/gnome-video-arcade-docs.sgml       |   1 +
 docs/reference/gnome-video-arcade-sections.txt    |  18 ++
 docs/reference/tmpl/gva-audit.sgml                |  65 ------
 docs/reference/tmpl/gva-categories.sgml           |  51 ----
 docs/reference/tmpl/gva-cell-renderer-pixbuf.sgml |  68 ------
 docs/reference/tmpl/gva-column-manager.sgml       |  60 -----
 docs/reference/tmpl/gva-columns.sgml              | 114 ---------
 docs/reference/tmpl/gva-common.sgml               | 101 --------
 docs/reference/tmpl/gva-db.sgml                   | 157 -------------
 docs/reference/tmpl/gva-error.sgml                |  55 -----
 docs/reference/tmpl/gva-favorites.sgml            |  56 -----
 docs/reference/tmpl/gva-game-store.sgml           | 119 ----------
 docs/reference/tmpl/gva-history.sgml              |  50 ----
 docs/reference/tmpl/gva-input-file.sgml           | 127 ----------
 docs/reference/tmpl/gva-main.sgml                 | 272 ----------------------
 docs/reference/tmpl/gva-mame-common.sgml          |  34 ---
 docs/reference/tmpl/gva-mame-process.sgml         |  52 -----
 docs/reference/tmpl/gva-mame.sgml                 | 265 ---------------------
 docs/reference/tmpl/gva-music-button.sgml         | 104 ---------
 docs/reference/tmpl/gva-mute-button.sgml          |  60 -----
 docs/reference/tmpl/gva-nplayers.sgml             |  53 -----
 docs/reference/tmpl/gva-play-back.sgml            |  82 -------
 docs/reference/tmpl/gva-preferences.sgml          |  90 -------
 docs/reference/tmpl/gva-process.sgml              | 240 -------------------
 docs/reference/tmpl/gva-properties.sgml           |  74 ------
 docs/reference/tmpl/gva-screen-saver.sgml         |  76 ------
 docs/reference/tmpl/gva-search.sgml               |  19 --
 docs/reference/tmpl/gva-time.sgml                 |  28 ---
 docs/reference/tmpl/gva-tree-view.sgml            | 186 ---------------
 docs/reference/tmpl/gva-ui.sgml                   | 235 -------------------
 docs/reference/tmpl/gva-util.sgml                 | 160 -------------
 docs/reference/tmpl/gva-wnck.sgml                 |  31 ---
 src/gva-properties.c                              |   1 -
 35 files changed, 24 insertions(+), 3088 deletions(-)

commit 6f58ec3799796c20cb212dcf6e987d194475f281
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jul 27 12:10:17 2015 -0400

    properties: Remove music feature
    
    arcade-history.com no longer (openly) serves these music snippets, so
    the feature is broken.  It was nice while it lasted.  :(
    
    This also drops the GStreamer dependency.

 README                                         |   18 +-
 TODO                                           |    3 +-
 configure.ac                                   |   19 -
 data/gnome-video-arcade.builder                | 2356 ++++++++++++------------
 data/gnome-video-arcade.convert                |    1 -
 data/org.gnome.VideoArcade.gschema.xml.in      |   11 -
 docs/reference/Makefile.am                     |    3 -
 docs/reference/gnome-video-arcade-docs.sgml    |    1 -
 docs/reference/gnome-video-arcade-sections.txt |   34 -
 docs/reference/gnome-video-arcade.types        |    2 -
 docs/reference/tmpl/gva-mame-common.sgml       |   26 -
 docs/reference/tmpl/gva-mame.sgml              |   10 -
 docs/reference/tmpl/gva-preferences.sgml       |   17 -
 docs/reference/tmpl/gva-ui.sgml                |    7 -
 docs/reference/tmpl/gva-util.sgml              |    1 -
 maint/Makefile.am                              |    5 +-
 maint/gva.xml                                  |    2 -
 po/POTFILES.in                                 |    1 -
 src/Makefile.am                                |    6 +-
 src/gva-common.h                               |    5 -
 src/gva-mame-common.c                          |   36 +-
 src/gva-mame-common.h                          |   20 -
 src/gva-mame.h                                 |   13 -
 src/gva-music-button.c                         |  622 -------
 src/gva-music-button.h                         |   91 -
 src/gva-preferences.c                          |   51 -
 src/gva-preferences.h                          |    2 -
 src/gva-properties.c                           |   58 +-
 src/gva-ui.c                                   |   21 -
 src/gva-ui.h                                   |    9 -
 src/gva-util.c                                 |    1 -
 src/gva-util.h                                 |    5 +-
 src/main.c                                     |    5 -
 33 files changed, 1150 insertions(+), 2312 deletions(-)

commit 02aaaeca82cfdb4d858081804fcd1890cdc0f73d
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jul 27 12:03:42 2015 -0400

    data: Let Glade rewrite the builder file
    
    This is all just opening and saving the file under the latest Glade.
    Each new version of Glade likes to tinker with the XML, so this just
    flushes all the changes it wants to make.

 data/gnome-video-arcade.builder | 703 ++++++++++++++++++++--------------------
 1 file changed, 352 insertions(+), 351 deletions(-)

commit 0b6d54353092aed48a9961bbf60c95ad97f8f418
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jul 27 11:59:19 2015 -0400

    maint: Get the Glade catalog working again.

 maint/Makefile.am | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

commit f9e7bff4e9b41264f8f5196eb57d8c17a8551307
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jul 27 12:15:56 2015 -0400

    main: Remove g_thread_init()
    
    Function is long deprecated, GLib does this automatically now.

 src/main.c | 2 --
 1 file changed, 2 deletions(-)

commit d86c1161604b187e83e16111fea9470695fff9aa
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue May 5 21:43:54 2015 -0400

    Fix distcheck.

 Makefile.am | 2 --
 1 file changed, 2 deletions(-)

commit c106001c07150f506d47534d124d0c3e876e6dd5
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue May 5 21:42:06 2015 -0400

    Fix some compiler warnings, suppress others.
    
    Not interested in GTK+ deprecating still useful APIs.

 configure.ac         | 40 ++++++++++++++++++++++++++++++++--------
 src/Makefile.am      |  1 +
 src/gva-main.c       |  2 +-
 src/gva-properties.c |  6 +++---
 4 files changed, 37 insertions(+), 12 deletions(-)

commit c4efcb9f26dd1ca41fd67cc1879a4c04cb0eb1e7
Author: Emmanuel Kasper <emmanuel@libera.cc>
Date:   Tue May 5 20:53:07 2015 -0400

    Bug 748667 - Adapt to new sound options in MAME >= 0.154
    
    MAME broke backward compatibility by changing -sound or -nosound to
    -sound auto or -sound none.

 src/gva-mame-common.c | 21 ++++++++++++++++++---
 1 file changed, 18 insertions(+), 3 deletions(-)

commit c171f24129eabcc982a877bcb4e1171b8a309a3b
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun May 3 22:53:44 2015 -0400

    Add gva_mame_get_version_int().
    
    Need an easy way to compare the MAME version for workarounds.

 docs/reference/gnome-video-arcade-sections.txt |  1 +
 docs/reference/tmpl/gva-mame.sgml              |  9 +++++
 src/gva-mame-common.c                          | 47 ++++++++++++++++++++++++++
 src/gva-mame.h                                 |  1 +
 4 files changed, 58 insertions(+)

commit ea123fc913711e81860706b906c97bce8211bb5e
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun May 3 20:55:54 2015 -0400

    Drop gnome-icon-theme dependency.
    
    Nowadays this is called adwaita-icon-theme, GTK+ itself depends on it,
    and enough time has passed that the minimum version is universal.
    
    Fixes https://bugzilla.rpmfusion.org/3501

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

commit ee33694693226f13c99a1a89e51e49294c2e98b6
Author: Samir Ribic <samir.ribic@etf.unsa.ba>
Date:   Fri Mar 13 23:37:37 2015 +0000

    Added Bosnian translation

 po/LINGUAS |    1 +
 po/bs.po   | 1108 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 1109 insertions(+)

commit 2affe367266430dad8e40a3641e78238d7a42472
Author: Josef Andersson <josef.andersson@gmail.com>
Date:   Sun Jan 18 21:39:53 2015 +0000

    Updated Swedish translation

 po/sv.po | 367 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 188 insertions(+), 179 deletions(-)

commit c6e3b3bb10f18f4a9023746a1814a9f73611984c
Author: Josef Andersson <josef.andersson@gmail.com>
Date:   Tue Jan 13 21:56:32 2015 +0000

    Updated Swedish translation

 help/sv/sv.po | 1353 +++++++++++++++++++++++++++++++++++++++++++--------------
 1 file changed, 1015 insertions(+), 338 deletions(-)

commit d2be20fb63d0860e5d017f0bef1899f238eab9a2
Author: Muhammet Kara <muhammetk@gmail.com>
Date:   Sat Dec 13 15:27:13 2014 +0000

    Updated Turkish translation

 po/tr.po | 632 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 325 insertions(+), 307 deletions(-)

commit 6829469201712fc811078bd977c61844d822f6d4
Author: Marek Černocký <marek@manet.cz>
Date:   Thu Nov 27 06:50:29 2014 +0100

    Updated Czech translation

 help/cs/cs.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 47be5feabd37eef7d48198e1e2814f76832f7ebb
Author: Dimitris Spingos <dmtrs32@gmail.com>
Date:   Thu Apr 17 20:26:11 2014 +0300

    Added Greek translation

 help/Makefile.am |    2 +-
 help/el/el.po    | 1268 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 1269 insertions(+), 1 deletion(-)

commit 08f59c5d962b412d7a0660effff2b0772d3f74cc
Author: Dimitris Spingos <dmtrs32@gmail.com>
Date:   Mon Feb 3 07:34:28 2014 +0200

    Updated Greek translation

 po/el.po | 1202 ++++++++++++++++++++++++++++++++++++++++++--------------------
 1 file changed, 815 insertions(+), 387 deletions(-)

commit 5a497763e61aaaeecd6460436cc4bfeb7454e158
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Mon Aug 19 12:00:53 2013 +0200

    Updated Spanish translation

 help/es/es.po | 713 ++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 447 insertions(+), 266 deletions(-)

commit 5ae06a789645e21a46479a0e5f5221c9b2d70bba
Author: Marek Černocký <marek@manet.cz>
Date:   Sun Aug 4 10:15:48 2013 +0200

    Updated Czech translation

 help/cs/cs.po | 654 ++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 357 insertions(+), 297 deletions(-)

commit 1e11ddfe0cb21a9b7c206b05544a5d7eea2f280b
Author: Jeremy Bicha <jbicha@ubuntu.com>
Date:   Fri Aug 2 23:58:35 2013 +0200

    Bug 704632 - Switch from gnome-doc-utils to yelp-tools

 Makefile.am                       |   5 -
 configure.ac                      |   2 +-
 docs/reference/tmpl/gva-main.sgml |   2 +-
 help/C/gnome-video-arcade.xml     | 742 --------------------------------------
 help/C/index.docbook              | 742 ++++++++++++++++++++++++++++++++++++++
 help/C/legal.xml                  |   2 +-
 help/Makefile.am                  |  15 +-
 help/cs/cs.po                     |   4 +-
 help/da/da.po                     |   4 +-
 help/de/de.po                     |   4 +-
 help/es/es.po                     |   4 +-
 help/gnome-video-arcade.omf.in    |   9 -
 help/it/it.po                     |   4 +-
 help/sl/sl.po                     |   2 +-
 help/sv/sv.po                     |   4 +-
 src/gva-util.c                    |   4 +-
 16 files changed, 767 insertions(+), 782 deletions(-)

commit b3ef37e80b2df26939669f1190fd5f6fc3110f2c
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Aug 3 00:07:34 2013 +0200

    Update git.mk.

 git.mk | 74 +++++++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 51 insertions(+), 23 deletions(-)

commit 022621e4f8c2d98d184ed61d19ae38313c09da24
Author: Wylmer Wang <wantinghard@gmail.com>
Date:   Sat Apr 20 04:51:47 2013 +0800

    Update Simplified Chinese translation

 po/zh_CN.po | 1041 ++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 632 insertions(+), 409 deletions(-)

commit 4a32aa34041f888ace4689c493a1976432068fed
Author: Rafael Ferreira <rafael.f.f1@gmail.com>
Date:   Sat Feb 16 23:55:59 2013 -0200

    Updated Brazilian Portuguese translation

 po/pt_BR.po | 716 +++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 372 insertions(+), 344 deletions(-)

commit 28579961efeec459c6a575588f03db3c81d0dbdd
Author: Мирослав Николић <miroslavnikolic@rocketmail.com>
Date:   Mon Jan 14 11:46:58 2013 +0100

    Added Serbian translation

 po/LINGUAS     |    2 +
 po/sr.po       | 1109 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 po/sr@latin.po | 1109 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 2220 insertions(+)

commit ca751f550f8850713e6222a9a4925588ef45ccd2
Author: Bruno Brouard <annoa.b@gmail.com>
Date:   Sat Jun 2 18:10:14 2012 +0200

    Updated French translation

 po/fr.po | 1049 +++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 634 insertions(+), 415 deletions(-)

commit 3edc7895b80b848e6981c2af5c688dfb9d300fd5
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Sat Mar 24 22:22:27 2012 +0100

    Updated Galician translations

 po/gl.po | 1089 ++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 677 insertions(+), 412 deletions(-)

commit 4621b0b7747ce58829e3d8d0636997e82b0e6fec
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Tue Feb 28 21:44:33 2012 +0100

    Updated Slovenian translation

 po/sl.po | 680 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 340 insertions(+), 340 deletions(-)

commit 85b4faf06cb2446c7512f8887afdee1304021d65
Author: Daniel Nylander <po@danielnylander.se>
Date:   Tue Feb 28 09:19:31 2012 +0100

    Updated Swedish translation

 po/sv.po | 918 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 462 insertions(+), 456 deletions(-)

commit aad0d6ebeb15686ff935d04e7e0fda43349a991b
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Feb 16 15:06:38 2012 -0500

    It's 2012, get with the program!

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

commit 0124823cee7543b54c69a98d6bf8c69d2d85a5a9
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Feb 16 09:22:17 2012 -0500

    Post-release version bump.

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

commit 3a3390201acf9f29f4103cc1942d34d23ac58455
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Feb 13 08:22:52 2012 -0600

    Update NEWS and README for 0.8.3 release.

 NEWS   | 16 ++++++++++++++++
 README |  4 ++--
 2 files changed, 18 insertions(+), 2 deletions(-)

commit dbc304fa8b48e145a50006cda5e16c8de62b9dcf
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Feb 15 10:07:13 2012 -0500

    Bug 670102 - Crash when searching
    
    In earlier versions of GVA we set the tree view search column to
    DESCRIPTION every time we loaded a new model, since changing the model
    sets the search column to -1.
    
    However tree_view_search_equal() would still occasionally get the wrong
    search column ID passed to it, which would trip a column ID assertion.
    Never figured out why, or how to reliably reproduce it.
    
    But since the search column for the type-ahead feature is always the
    DESCRIPTION column, it finally dawned on me that we can just hard-code
    the column ID in tree_view_search_equal() and do away with the assertion
    and having to repeatedly set the search column -- just leave it unset.

 src/gva-tree-view.c | 24 +++++++++++++++++-------
 1 file changed, 17 insertions(+), 7 deletions(-)

commit 6580c67e3e1f96cef9a4812a1a1495549cc8e1c7
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Feb 12 21:52:29 2012 -0600

    Bug 669950 - Many popups when copying files into mame dir
    
    The "Changes detected in ROM files" dialog wouldn't take "no" for an
    answer, and kept prompting for each and every change detected by the
    file monitor.
    
    This is especially bad considering the file monitor reacts TWICE for
    every file change - once with G_FILE_MONITOR_EVENT_CHANGED, and again
    with G_FILE_MONITOR_EVENT_CHANGES_DONE_HINT.
    
    This commit makes the "Skip Audit" option suppress the dialog until
    GNOME Video Arcade is restarted.

 src/main.c | 6 ++++++
 1 file changed, 6 insertions(+)

commit 942aa976637ca52de4fe95f3a4f174b8e6695e50
Author: Marek Černocký <marek@manet.cz>
Date:   Mon Jan 16 10:35:38 2012 +0100

    Updated Czech translation

 po/cs.po | 652 ++++++++++++++++++++++++++++++---------------------------------
 1 file changed, 305 insertions(+), 347 deletions(-)

commit 497dce9d683dd9eaa90a24b27c6ab8d64848efe1
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 15 23:23:32 2012 -0500

    Post-release version bump.

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

commit bf3e9af785ffd53d6786b17e73ac2010a6b6519d
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 15 22:50:45 2012 -0500

    Produce tarballs with xz instead of gzip.
    
    Because gzipped tarballs are sooo 2010...

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

commit 4e8bab99a76711152b3fe0e43ff0c1c6ae58ffc8
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 15 22:41:02 2012 -0500

    Update NEWS and README for 0.8.2 release.

 NEWS   | 11 +++++++++++
 README |  4 ++--
 2 files changed, 13 insertions(+), 2 deletions(-)

commit 32ac5b578298f289653aae786cae8cdf18ac1238
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 15 22:25:24 2012 -0500

    Do not treat start() as a GSourceFunc.
    
    Idiotic mistake in main() where we schedule start() directly as a main
    loop callback.  Problem is main loop callbacks must return a boolean,
    and start(), which is only meant to run once, has a void return type.
    So it's a coin toss whether start() will be run over and over again.

 src/main.c | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

commit 970749a7afe13d9ec79d680f12bf489a70db67e7
Author: Jordi Mallach <jordi@sindominio.net>
Date:   Mon Jan 16 00:05:53 2012 +0100

    Re-add dependency info for libsoup.

 README | 9 +++++++++
 1 file changed, 9 insertions(+)

commit 82aa7938b5f8c0018820a71c458791b2a8b5f82c
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 15 16:51:07 2012 -0500

    Post-release version bump.

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

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 file 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 file 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 file 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 file changed, 1 insertion(+), 1 deletion(-)

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 deletion(-)

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 file 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(+)

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 file 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 file 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 file changed, 4 insertions(+)

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 file 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(+)

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 file 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 file changed, 1 insertion(+), 1 deletion(-)

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 insertion(+), 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 file changed, 1 insertion(+), 1 deletion(-)

commit c21560021dd9253f243a168a450785f4793863f3
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun May 15 18:53:36 2011 -0400

    Update NEWS and README for 0.8.0 release.

 NEWS         | 47 +++++++++++++++++++++++++++++++++++++++++++++++
 README       | 19 ++-----------------
 configure.ac |  2 +-
 3 files changed, 50 insertions(+), 18 deletions(-)

commit 9cc0833fb16a2daeebed8d344611b76ad339c2fa
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun May 15 18:24:27 2011 -0400

    Fix a typo.

 src/gva-screen-saver.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 35e340b23a91df6d75331382b7ddfe1143540ac6
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun May 15 14:48:19 2011 -0400

    Bug 622933 - Migrate from dbus-glib to GDBus
    
    Introduces GvaScreenSaver, based on TotemScrsaver.

 configure.ac                                   |  23 +-
 docs/reference/Makefile.am                     |   8 +-
 docs/reference/gnome-video-arcade-docs.sgml    |   2 +-
 docs/reference/gnome-video-arcade-sections.txt |  29 +-
 docs/reference/gnome-video-arcade.types        |   2 +
 docs/reference/tmpl/gva-dbus.sgml              |  42 ---
 docs/reference/tmpl/gva-screen-saver.sgml      |  76 ++++
 docs/reference/tmpl/gva-ui.sgml                |   8 +
 src/Makefile.am                                |  17 +-
 src/gva-dbus.c                                 | 124 -------
 src/gva-dbus.h                                 |  41 --
 src/gva-screen-saver.c                         | 494 +++++++++++++++++++++++++
 src/gva-screen-saver.h                         |  86 +++++
 src/gva-ui.c                                   | 104 ++++--
 src/gva-ui.h                                   |   1 +
 src/main.c                                     |  10 +-
 16 files changed, 764 insertions(+), 303 deletions(-)

commit 857ea621d238ccece5e9b85c2a820f6b55a4be37
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat May 14 23:17:40 2011 -0400

    Save "Properties" window state.
    
    Save "Properties" window dimensions and position across sessions.
    Was previously using GConfBridge for this.  Less automated now.

 data/gnome-video-arcade.builder                |  2 +
 docs/reference/gnome-video-arcade-sections.txt |  2 +
 docs/reference/tmpl/gva-properties.sgml        | 20 ++++++++
 src/gva-properties.c                           | 64 ++++++++++++++++++++++++--
 src/gva-properties.h                           |  6 +++
 5 files changed, 89 insertions(+), 5 deletions(-)

commit 652257cea69fd6aae2d53bba8d2e264f8045a491
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat May 14 22:41:02 2011 -0400

    Save main window state.
    
    Save main window dimensions and position across sessions.
    Was previously using GConfBridge for this.  Less automated now.

 data/gnome-video-arcade.builder                |  2 +
 docs/reference/gnome-video-arcade-sections.txt |  3 ++
 docs/reference/tmpl/gva-main.sgml              | 20 ++++++++
 docs/reference/tmpl/gva-util.sgml              | 13 +++++
 src/gva-main.c                                 | 69 ++++++++++++++++++++++++--
 src/gva-main.h                                 |  5 ++
 src/gva-util.c                                 | 60 ++++++++++++++++++++++
 src/gva-util.h                                 |  6 +++
 8 files changed, 173 insertions(+), 5 deletions(-)

commit e8a51a7a3e4e8892db6fbea82e02d13863d7de10
Author: Jordi Mallach <jordi@sindominio.net>
Date:   Thu May 12 04:16:52 2011 +0200

    Remove gettext calls from all g_message() strings.
    
    Matthew actually prefers that no g_log() are marked for translation.
    Revert previous changes and remove the rest that were already
    translatable.

 po/POTFILES.in       |  4 ----
 src/gva-categories.c |  4 ++--
 src/gva-db.c         | 19 +++++++++----------
 src/gva-history.c    |  4 ++--
 src/gva-nplayers.c   |  4 ++--
 src/gva-process.c    |  2 +-
 6 files changed, 16 insertions(+), 21 deletions(-)

commit effa338725be35f1d640e167be0352e3dea85344
Author: Jordi Mallach <jordi@sindominio.net>
Date:   Thu May 12 03:02:49 2011 +0200

    Updated Catalan translation.

 po/ca.po | 663 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 349 insertions(+), 314 deletions(-)

commit da82b588a709001ad8fec0c4f7fdff63624ceec6
Author: Jordi Mallach <jordi@sindominio.net>
Date:   Thu May 12 02:58:19 2011 +0200

    Add gettext markers to some g_messages.
    
    Some messages related to database rebuilding were lacking i18n.
    However, at least one of them needs fixing to avoid concatenating strings,
    which makes the sentence untranslatable to many languages.

 po/POTFILES.in    |  2 ++
 src/gva-db.c      | 19 ++++++++++---------
 src/gva-process.c |  2 +-
 3 files changed, 13 insertions(+), 10 deletions(-)

commit 78ef8a136288fc1b2d7382254e28f3345d32864d
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Apr 25 08:55:47 2011 -0400

    Fix columns not being remembered.
    
    As a GtkTreeView destroys its own columns during dispose() it emits
    "columns-changed" signals.  We normally listen for that signal and save
    the column names to GSettings, but obviously we don't want to do that
    while the tree view is being disposed.  This was causing the "columns"
    key in GSettings to be empty after every program exit.
    
    With GTK2 I was checking the GtkTreeView's GTK_IN_DESTRUCTION flag to
    know when to ignore the signals.  With that flag gone in GTK3 I had left
    that bit of code commented out, not remembering what it was for.  This
    uses a different approach to achieve the same thing -- though it's not
    any cleaner than before, unfortunately.
    
    I had the idea of writing a custom GtkTreeView subclass to deal with
    this and to make it more of a self-contained widget, but the main tree
    view is tangled up into *everything*.  Would need sorting out.  Too big
    a job for now.

 data/gnome-video-arcade.builder |  1 -
 src/gva-columns.c               | 33 ++++++++++++++++++---------------
 2 files changed, 18 insertions(+), 16 deletions(-)

commit f5c29addda977f0c397a2971bceb9a6522e84368
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Apr 24 16:48:42 2011 -0400

    Simplify the Glade catalog.
    
    Glade knows how to inspect widget properties itself.

 maint/gva.xml | 22 +++-------------------
 1 file changed, 3 insertions(+), 19 deletions(-)

commit 19dce88d36c6505880cf703a33229770ff15e71b
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Apr 24 15:22:02 2011 -0400

    Update GTK+ dependency description in README.

 README | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 76999b3ffe0b511797187eb8010684ea08c12619
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Apr 24 15:21:22 2011 -0400

    Remove all mention of GConf.

 README                |  9 ---------
 src/gva-columns.c     | 28 +++++++++++++---------------
 src/gva-main.c        | 18 ++++++++----------
 src/gva-preferences.c | 12 ++++--------
 src/gva-tree-view.c   |  7 +++----
 5 files changed, 28 insertions(+), 46 deletions(-)

commit 4ba174d6a5f450096cc238c6e3d6db8c571300f9
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Apr 24 15:01:44 2011 -0400

    Fix alignment icons in Players columns.
    
    Append an empty pixbuf renderer to each Players column and let it expand
    and fill any remaining space, so the player icons are all left-aligned.

 src/gva-columns.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit 148da91ca960a45ab43c0fed701c3b72f8f9a269
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Apr 24 14:01:22 2011 -0400

    Make Edit->Search work again.
    
    The search entry must grab focus before the search bar is shown or else
    the search bar will immediately hide itself again.  Oddly, this was only
    a problem when selecting Edit->Search from the main menu.  The shortcut
    key (Ctrl+F) worked fine.  Must have something to do with the way the
    focus switches from the main menu back to the main window.

 src/gva-ui.c | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

commit d9488ad8dc3227767270884d9961a3161bc5d67a
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Apr 24 09:37:55 2011 -0400

    Move GtkActions to the GtkBuilder file.
    
    We can wire up more of the widgets directly in the GtkBuilder file now.

 data/gnome-video-arcade.builder | 253 +++++++++++++-
 src/gva-audit.c                 |   4 -
 src/gva-main.c                  |  20 --
 src/gva-preferences.c           |  16 -
 src/gva-properties.c            |   8 -
 src/gva-ui.c                    | 729 ++++++++++++++--------------------------
 src/gva-ui.h                    |  23 ++
 7 files changed, 519 insertions(+), 534 deletions(-)

commit 020b16cf3f9a913bd440da795cec8743bc9a362b
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Apr 24 09:24:50 2011 -0400

    Update GtkBuilder file in Glade 3.10.

 data/gnome-video-arcade.builder | 708 +++++++++++++++++++++++++---------------
 1 file changed, 448 insertions(+), 260 deletions(-)

commit c894ee33229808a10998e201768e579083333f03
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Apr 24 08:28:15 2011 -0400

    Require gladeui-2.0 for Glade catalogs.

 configure.ac      | 2 +-
 maint/Makefile.am | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

commit 7ae19c63c686fb7a33fd581d6a095acaecb6ea29
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Sun Apr 10 20:51:52 2011 +0200

    [l10n] Updated German translation

 po/de.po | 55 ++++++++++++++++++++++++-------------------------------
 1 file changed, 24 insertions(+), 31 deletions(-)

commit fe79a95a9535301c35ebcefc3a2d84678aec02aa
Author: Daniel Nylander <po@danielnylander.se>
Date:   Sat Apr 9 10:55:07 2011 +0200

    Updated Swedish translation

 po/sv.po | 87 +++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 48 insertions(+), 39 deletions(-)

commit 9d6756fce298a44cbb987c4d3142ddb009f06042
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Apr 3 10:08:17 2011 -0400

    Migrate from UniqueApp to GtkApplication.
    
    Drop our dependency on unique-3.0.

 configure.ac               |  5 -----
 docs/reference/Makefile.am |  2 --
 maint/Makefile.am          |  6 ++----
 src/Makefile.am            |  7 +++----
 src/gva-common.h           |  1 -
 src/main.c                 | 25 +++++++++++++++++--------
 6 files changed, 22 insertions(+), 24 deletions(-)

commit 2f75bca94c049ccc57169f42ee96bb5df2801e75
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Wed Mar 30 19:56:07 2011 +0200

    Updated Norwegian bokmål translation

 po/nb.po | 657 ++++++++++++++++++++++++++++++++++++++++++---------------------
 1 file changed, 444 insertions(+), 213 deletions(-)

commit 4c26d6b23fac7774668825bc573b0d7b732e6293
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Mar 30 10:43:24 2011 -0400

    Add G_PARAM_STATIC_STRINGS to all GObject properties.
    
    Just a miniscule optimization really, but I'm trying to get in the
    habit of using it.

 src/gva-cell-renderer-pixbuf.c |  3 ++-
 src/gva-column-manager.c       |  3 ++-
 src/gva-input-file.c           | 15 ++++++++++-----
 src/gva-music-button.c         |  6 ++++--
 src/gva-mute-button.c          |  3 ++-
 src/gva-process.c              | 18 ++++++++++++------
 6 files changed, 32 insertions(+), 16 deletions(-)

commit 31e2bbe5d4de642d4f3577e745790c4ba4b96e55
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Mar 30 09:58:40 2011 -0400

    GvaMuteButton: Remove a redundant #include.

 src/gva-mute-button.c | 2 --
 1 file changed, 2 deletions(-)

commit 7acd16b4b3aeb6c591b00ad0105a4eeb17a8ce87
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Tue Mar 29 16:16:03 2011 +0200

    Updated Slovenian translation

 po/sl.po | 67 ++++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 38 insertions(+), 29 deletions(-)

commit dd8c7d3c28bb8115c9358b05c1f2279236d2180b
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Mar 26 22:28:03 2011 -0400

    Revert "Fix paths in gnome-video-arcade.convert."
    
    This reverts commit d2f53d50de6114a00bb0c9237548c5c36e268fcd.
    
    Oops, got it backwards.  Those are GConf paths.

 data/gnome-video-arcade.convert | 44 ++++++++++++++++++++---------------------
 1 file changed, 22 insertions(+), 22 deletions(-)

commit 2f07386b6ed163a643cdaf18cffac81cc7e95d44
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Mar 26 19:04:06 2011 -0400

    Use G_DEFINE_TYPE macros.

 src/gva-cell-renderer-pixbuf.c | 44 +++++++++--------------------------------
 src/gva-column-manager.c       | 45 ++++++++++--------------------------------
 src/gva-game-store.c           | 41 +++++++-------------------------------
 src/gva-input-file.c           | 40 +++++++------------------------------
 src/gva-mame-process.c         | 42 +++++++++++----------------------------
 src/gva-music-button.c         | 43 +++++++++-------------------------------
 src/gva-mute-button.c          | 40 +++++++------------------------------
 src/gva-process.c              | 43 +++++++++-------------------------------
 8 files changed, 69 insertions(+), 269 deletions(-)

commit 95f3fac9640c4442682fc83ffcad84307ba2e493
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Mar 26 18:51:27 2011 -0400

    Fix brace style.

 src/gva-history.c      | 3 ++-
 src/gva-input-file.c   | 3 ++-
 src/gva-main.c         | 3 ++-
 src/gva-mame-common.c  | 9 ++++++---
 src/gva-music-button.c | 6 ++++--
 src/gva-process.c      | 6 ++++--
 src/gva-properties.c   | 6 ++++--
 7 files changed, 24 insertions(+), 12 deletions(-)

commit 66b266d7ad8015446586a9e370c352ac53107323
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Mar 26 18:38:33 2011 -0400

    Fix Favorite column activations.
    
    In GTK3, insensitive cells no longer respond to activations, so I had to
    work around it by overriding the render() method and temporarily setting
    the cell's sensitivity before chaining up, then restoring the old value.

 docs/reference/gnome-video-arcade-sections.txt    |   3 +
 docs/reference/tmpl/gva-cell-renderer-pixbuf.sgml |  23 ++++
 src/gva-cell-renderer-pixbuf.c                    | 140 +++++++++++++++++++++-
 src/gva-cell-renderer-pixbuf.h                    |   9 +-
 src/gva-columns.c                                 |   2 +-
 5 files changed, 170 insertions(+), 7 deletions(-)

commit e355b04fda4f76ceb1d8cd60088dcb529b7c82e3
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Mar 26 17:14:34 2011 -0400

    Fix widget packing in Properties window.

 data/gnome-video-arcade.builder | 4 ++++
 1 file changed, 4 insertions(+)

commit d2f53d50de6114a00bb0c9237548c5c36e268fcd
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Mar 26 16:23:13 2011 -0400

    Fix paths in gnome-video-arcade.convert.

 data/gnome-video-arcade.convert | 44 ++++++++++++++++++++---------------------
 1 file changed, 22 insertions(+), 22 deletions(-)

commit dbf0140533a3f7f3dc40d8a606f294f611a35382
Author: Marek Černocký <marek@manet.cz>
Date:   Sat Mar 26 19:23:38 2011 +0100

    Updated Czech translation

 po/cs.po | 50 +++++++++++++++++++++++---------------------------
 1 file changed, 23 insertions(+), 27 deletions(-)

commit 5f60348dea8069971af7948cdb01c748aff62cd1
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Mon Mar 21 19:22:12 2011 +0100

    Updated Spanish translation

 po/es.po | 15 +++++++++++++--
 1 file changed, 13 insertions(+), 2 deletions(-)

commit a7ba0a5056c5cfebb87b5fc21bc3650458b06015
Author: Jordi Mallach <jordi@debian.org>
Date:   Sat Mar 19 17:59:29 2011 +0100

    Remove deprecated "Encoding" key from desktop file.

 data/gnome-video-arcade.desktop.in | 1 -
 1 file changed, 1 deletion(-)

commit fc659a01d7409d33c8bb3611db4b27bda0cb8101
Author: Jordi Mallach <jordi@debian.org>
Date:   Sat Mar 19 15:17:33 2011 +0100

    New Catalan translation.

 po/LINGUAS |    1 +
 po/ca.po   | 1109 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 1110 insertions(+)

commit baf1c913b6f8d4a2574bddd1d79b21ebb598300a
Author: Jordi Mallach <jordi@debian.org>
Date:   Sat Mar 19 15:16:42 2011 +0100

    Add GenericName and make desktop file strings translatable. Add to POTFILES.in.

 data/gnome-video-arcade.desktop.in | 5 +++--
 po/POTFILES.in                     | 1 +
 2 files changed, 4 insertions(+), 2 deletions(-)

commit c74800757d15b91dd07ac6cea074ff2786bbad28
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Thu Mar 17 20:27:17 2011 +0100

    Updated Spanish translation

 po/es.po | 20 ++++++++++++++++----
 1 file changed, 16 insertions(+), 4 deletions(-)

commit cf76672705aee0b03032827c2d93231e2ba447b8
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Mon Mar 14 22:17:18 2011 +0100

    Updated Spanish translation

 po/es.po | 23 +++++++++++++++++++----
 1 file changed, 19 insertions(+), 4 deletions(-)

commit 7506e77aaf533e94c4df6ca90c9190d3fb6ed929
Author: Daniel Nylander <po@danielnylander.se>
Date:   Sun Mar 6 23:00:08 2011 +0100

    Updated Swedish translation

 po/sv.po | 851 ++++++++++++++++++++++++++++++++++++++++++++-------------------
 1 file changed, 599 insertions(+), 252 deletions(-)

commit 5619873703b15d8a400050a89629f25a31479c8a
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Sat Mar 5 18:38:47 2011 +0100

    Updated Slovenian translation

 po/sl.po | 287 ++++++++++++++++++++++++++++++++++++++++++++++++++++-----------
 1 file changed, 238 insertions(+), 49 deletions(-)

commit 0478dd56cfca7abd67ee4f25032aeacee9af81ec
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Sat Mar 5 11:39:43 2011 +0100

    Updated Spanish translation

 po/es.po | 82 +++++++++++++++++++++++++++-------------------------------------
 1 file changed, 34 insertions(+), 48 deletions(-)

commit aa729ac43dea2eee12ad2db589a31a11a067db78
Author: Marek Černocký <marek@manet.cz>
Date:   Sun Feb 27 23:58:28 2011 +0100

    Updated Czech translation

 po/cs.po | 367 +++++++++++++++++++++++++++++++++++++++++++++++++++++----------
 1 file changed, 310 insertions(+), 57 deletions(-)

commit 64ce8e7a5559115d29262fd5818efee1451fedd1
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Sun Feb 27 15:51:58 2011 +0100

    [l10n] Updated German translation

 po/de.po | 370 ++++++++++++++++++++++++++++++++++++++++++++++++++++-----------
 1 file changed, 306 insertions(+), 64 deletions(-)

commit 4495694a3e9b7913bc1fe3f6c9fbf0b921b0497e
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sun Feb 27 13:32:20 2011 +0100

    Updated Spanish translation

 po/es.po | 340 ++++++++++++++++++++++++++++++++++++++++++++++++++++-----------
 1 file changed, 285 insertions(+), 55 deletions(-)

commit d284d3be60d75e1519074c9bbe89a48117280d80
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Feb 26 22:02:20 2011 -0500

    Hide resize grip when showing progress bar.

 src/gva-main.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit 2a8f8e2f3b3a77664221988af9a7f17a90b959b9
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Feb 26 11:26:51 2011 -0500

    Port from GConf to GSettings.

 Makefile.am                                    |    2 +-
 configure.ac                                   |   11 +-
 data/Makefile.am                               |   28 +-
 data/gnome-video-arcade.convert                |   23 +
 data/gnome-video-arcade.schemas                |  313 ------
 data/org.gnome.VideoArcade.gschema.xml.in      |  175 ++++
 docs/reference/Makefile.am                     |    8 +-
 docs/reference/gnome-video-arcade-sections.txt |    1 +
 docs/reference/tmpl/gva-util.sgml              |    9 +
 git.mk                                         |  188 ++--
 maint/Makefile.am                              |    6 +-
 po/POTFILES.in                                 |    2 +-
 src/Makefile.am                                |   11 +-
 src/gconf-bridge.c                             | 1255 ------------------------
 src/gconf-bridge.h                             |  116 ---
 src/gva-audit.c                                |   15 +-
 src/gva-columns.c                              |   85 +-
 src/gva-common.h                               |   39 +-
 src/gva-favorites.c                            |   60 +-
 src/gva-favorites.h                            |    2 +-
 src/gva-main.c                                 |   73 +-
 src/gva-preferences.c                          |   35 +-
 src/gva-properties.c                           |   18 +-
 src/gva-tree-view.c                            |   56 +-
 src/gva-util.c                                 |   52 +-
 src/gva-util.h                                 |    1 +
 src/main.c                                     |   12 +-
 27 files changed, 574 insertions(+), 2022 deletions(-)

commit 1f55b13d6275c9e06f8751506cda9b2807033997
Author: Bastien Nocera <hadess@hadess.net>
Date:   Sat Feb 26 07:03:22 2011 -0500

    Bug 643000 - Bump libwnck requirement to 2.91.6

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

commit 4c291ddb4dc65bb17a61efb686c0bed397498cdd
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Feb 26 06:58:05 2011 -0500

    Bump GTK+ requirement to 3.0.

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

commit 54fa092b3fdad5091aee451baf709864829c4b1e
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Feb 26 06:55:21 2011 -0500

    gva-music-button: Remove a dead assignment.

 src/gva-music-button.c | 3 ---
 1 file changed, 3 deletions(-)

commit 8c6cf0fa5587362c675a03bb7d463843ebd25eb4
Author: Daniel Mustieles <daniel.mustieles@gmail.com>
Date:   Mon Feb 21 21:08:45 2011 +0100

    Updated Spanish translation

 help/es/es.po | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

commit 35cbbe6afbccfdc51b79066c02eeebbf145ae1a4
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Feb 18 13:51:42 2011 -0500

    Bug 642689 - README out of date: sdlmame does not exist anymore
    
    Also change SDLMAME options in configure.ac to MAME.

 README       | 21 ++++++++++++---------
 configure.ac | 16 ++++++++--------
 2 files changed, 20 insertions(+), 17 deletions(-)

commit a909e36ef30ca78b6531b55c4563de0c35d899d5
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 30 21:40:41 2011 -0500

    Adapt gnome-video-arcade.builder to gtk+-3.0.

 data/gnome-video-arcade.builder | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

commit 3f7ccf016b4a341c2ef65e231d29d5d4bd24031e
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 30 21:02:25 2011 -0500

    Adapt main.c to gtk+-3.0.

 src/main.c | 35 +++++++++++++++--------------------
 1 file changed, 15 insertions(+), 20 deletions(-)

commit e2abe4f375d5385ff301757180c05fb2a7e12fa0
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 30 21:10:54 2011 -0500

    Adapt gva-util.c to gtk+-3.0.

 src/gva-util.c | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

commit 6e330e7a56d790369ae635bbb2fda98187b36dc5
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 30 20:54:08 2011 -0500

    Adapt gva-properties.c to gtk+-3.0.

 src/gva-properties.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

commit 946caafb6654d8bbae25fcce240e65c1c734d811
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 30 20:51:55 2011 -0500

    Adapt gva-preferences.c to gtk+-3.0.

 src/gva-preferences.c | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

commit 4a096cc3a860a91db93aab209afb1850e08b540f
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 30 20:49:29 2011 -0500

    Adapt gva-mute-button.c to gtk+-3.0.

 src/gva-mute-button.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 61ea39f6ad0c6ae5c8ce87990f559bc34cfbd64f
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 30 20:48:44 2011 -0500

    Adapt gva-main.c to gtk+-3.0.

 src/gva-main.c | 45 +++++++++++++++++++++++++--------------------
 1 file changed, 25 insertions(+), 20 deletions(-)

commit bbf1f938fb4c2a0dd9b8f7b5ed275c5384f62f23
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 30 20:40:30 2011 -0500

    Adapt gva-columns.c to gtk+-3.0.

 src/gva-columns.c | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

commit b2c8d4ccbdfc8893784475a65f6a89a00b181e51
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 30 20:36:32 2011 -0500

    Adapt gva-cell-renderer-pixbuf.c to gtk+-3.0.

 src/gva-cell-renderer-pixbuf.c | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

commit b3bf9ad8d7c76409531416953cb2b291d9edbbb9
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 30 21:06:12 2011 -0500

    Adapt gva-audit.c to gtk+-3.0.

 src/gva-audit.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit ef90bec645365a077761919d01731c7c463e4512
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 30 20:31:18 2011 -0500

    Adapt gconf-bridge.c to gtk+-3.0.

 src/gconf-bridge.c | 6 ++++--
 src/gconf-bridge.h | 3 +--
 2 files changed, 5 insertions(+), 4 deletions(-)

commit b4109ac67d5982d62690c0d55081040b0601a29f
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 30 20:28:32 2011 -0500

    Require gtk+ 3.0, glib 2.28 and unique 3.0.

 configure.ac | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 49b766f5f1ecd393a69ccf561696cb01c3627a50
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 30 21:34:47 2011 -0500

    Update copyright notices on sources files.

 docs/gnome-video-arcade.1      | 2 +-
 src/gva-audit.c                | 2 +-
 src/gva-audit.h                | 2 +-
 src/gva-categories.c           | 2 +-
 src/gva-categories.h           | 2 +-
 src/gva-cell-renderer-pixbuf.c | 2 +-
 src/gva-cell-renderer-pixbuf.h | 2 +-
 src/gva-column-manager.c       | 2 +-
 src/gva-column-manager.h       | 2 +-
 src/gva-columns.c              | 2 +-
 src/gva-columns.h              | 2 +-
 src/gva-common.h               | 2 +-
 src/gva-db.c                   | 2 +-
 src/gva-db.h                   | 2 +-
 src/gva-dbus.c                 | 2 +-
 src/gva-dbus.h                 | 2 +-
 src/gva-error.c                | 2 +-
 src/gva-error.h                | 2 +-
 src/gva-favorites.c            | 2 +-
 src/gva-favorites.h            | 2 +-
 src/gva-game-store.c           | 2 +-
 src/gva-game-store.h           | 2 +-
 src/gva-history.c              | 2 +-
 src/gva-history.h              | 2 +-
 src/gva-input-file.c           | 2 +-
 src/gva-input-file.h           | 2 +-
 src/gva-main.c                 | 2 +-
 src/gva-main.h                 | 2 +-
 src/gva-mame-common.c          | 2 +-
 src/gva-mame-common.h          | 2 +-
 src/gva-mame-process.c         | 2 +-
 src/gva-mame-process.h         | 2 +-
 src/gva-mame-sdlmame.c         | 2 +-
 src/gva-mame-xmame.c           | 2 +-
 src/gva-mame.h                 | 2 +-
 src/gva-music-button.c         | 2 +-
 src/gva-music-button.h         | 2 +-
 src/gva-mute-button.c          | 2 +-
 src/gva-mute-button.h          | 2 +-
 src/gva-nplayers.c             | 2 +-
 src/gva-nplayers.h             | 2 +-
 src/gva-play-back.c            | 2 +-
 src/gva-play-back.h            | 2 +-
 src/gva-preferences.c          | 2 +-
 src/gva-preferences.h          | 2 +-
 src/gva-process.c              | 2 +-
 src/gva-process.h              | 2 +-
 src/gva-properties.c           | 2 +-
 src/gva-properties.h           | 2 +-
 src/gva-time.c                 | 2 +-
 src/gva-time.h                 | 2 +-
 src/gva-tree-view.c            | 2 +-
 src/gva-tree-view.h            | 2 +-
 src/gva-ui.c                   | 4 ++--
 src/gva-ui.h                   | 2 +-
 src/gva-util.c                 | 2 +-
 src/gva-util.h                 | 2 +-
 src/gva-wnck.c                 | 2 +-
 src/gva-wnck.h                 | 2 +-
 src/main.c                     | 2 +-
 60 files changed, 61 insertions(+), 61 deletions(-)

commit 9ba12877d6cfef503e092cebe9786582ccceb080
Author: Lucian Adrian Grijincu <lucian.grijincu@gmail.com>
Date:   Fri Dec 3 05:23:29 2010 +0200

    Updated Romanian translation

 po/LINGUAS |   1 +
 po/ro.po   | 893 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 894 insertions(+)

commit 387f568c2f77b883708990a11eb585d02b38ebfa
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Fri Oct 22 14:43:22 2010 +0200

    Added sl for Slovenian translation

 help/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 583a7612a851f45eecd26addadd3b4455b1c8b19
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Fri Oct 22 14:43:14 2010 +0200

    Added Slovenian translation

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

commit bf9572f038f4ef4f038bded9681a1b297d961603
Author: Joe Hansen <joedalton2@yahoo.dk>
Date:   Mon Sep 27 00:51:04 2010 +0200

    Updated Danish translation

 po/da.po | 369 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 214 insertions(+), 155 deletions(-)

commit 301fbdacea9e2f88a50b3a672fb707a0e1b3290d
Author: Yuri Myasoedov <ymyasoedov@src.gnome.org>
Date:   Sun Sep 19 12:09:02 2010 +0400

    Added Russian translation

 po/LINGUAS |   1 +
 po/ru.po   | 886 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 887 insertions(+)

commit 7df6d08ce0ab18493e13e669a4577a7c039f3c00
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Thu Aug 26 18:25:56 2010 +0200

    Updated Spanish translation, fixes bug #627996

 po/es.po | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

commit 1c46c2a5bfbec2d1f2beff79ba085bf8cc62a686
Author: Yinghua Wang <wantinghard@gmail.com>
Date:   Sat Jul 31 09:37:12 2010 +0800

    Add Simplified Chinese translation.

 po/LINGUAS  |   1 +
 po/zh_CN.po | 876 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 877 insertions(+)

commit 342a1e11c4fd1dd74b184fa904f9456fbc3882d3
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Mon Jul 19 14:44:45 2010 +0200

    Updated Slovenian translation

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

commit 36dd9a109faf8d08ea637610b66821e63d4659a1
Author: Fran Diéguez <fran.dieguez@mabishu.com>
Date:   Mon Jun 21 10:42:25 2010 +0200

    Added Galician translations

 po/gl.po | 265 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 148 insertions(+), 117 deletions(-)

commit 551860beb9fa16a9ca38f7e92e8302635ceeceae
Author: Djavan Fagundes <djavan@comum.org>
Date:   Sun Jun 13 22:12:27 2010 -0300

    Updated Brazilian Portuguese translation

 po/pt_BR.po | 215 ++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 123 insertions(+), 92 deletions(-)

commit 8f1850912b5811542959ae625241912c3954daf5
Author: Claude Paroz <claude@2xlibre.net>
Date:   Wed Jun 9 21:15:02 2010 +0200

    Updated French translation

 po/fr.po | 212 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 119 insertions(+), 93 deletions(-)

commit 64bbde740b1251525e03117adc0def3cbf9d6293
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon May 31 21:16:03 2010 -0400

    Post-release version bump.

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

commit 64afdada92cfec28eb89f95219865c0ec1a19aa9
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon May 31 21:15:02 2010 -0400

    Update NEWS for 0.7.1 release.

 NEWS   | 10 +++++++++-
 README |  4 ++--
 2 files changed, 11 insertions(+), 3 deletions(-)

commit e7e2760c248595a7a43e7fbad6ea29f14a1d63f6
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon May 31 21:03:31 2010 -0400

    Add libunique dependency.
    
    GNOME Video Arcade is now a "single-instance" application.  That means
    if you launch it while it's already running, it will simply present the
    existing window instead of creating a second window.

 NEWS                       |  4 ++++
 configure.ac               |  5 +++++
 docs/reference/Makefile.am |  2 ++
 maint/Makefile.am          |  6 ++++--
 src/Makefile.am            |  5 +++--
 src/gva-common.h           |  1 +
 src/main.c                 | 41 ++++++++++++++++++++++++++++++++++++++---
 7 files changed, 57 insertions(+), 7 deletions(-)

commit 491b5b735f45c753cde43ae4b10709c582b3da15
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Fri May 21 19:37:19 2010 +0200

    Updated Slovenian translation

 po/sl.po | 210 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 116 insertions(+), 94 deletions(-)

commit 580ca6c201e8b50c63f0f80efc98f3aa62629701
Author: Petr Kovar <pknbe@volny.cz>
Date:   Mon May 17 00:13:48 2010 +0200

    Update Czech translation by Marek Cernocky

 po/cs.po | 224 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 124 insertions(+), 100 deletions(-)

commit 97012d8d944da6bfe87688648c95bb8ca1b4bdae
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Sun May 16 21:22:37 2010 +0200

    Updated German translation

 po/de.po | 226 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 128 insertions(+), 98 deletions(-)

commit 9c01c1e7d34bc86a65f5478c2f8471b8b50a90f2
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sun May 16 10:30:09 2010 +0200

    Updated Spanish translation

 po/es.po | 226 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 128 insertions(+), 98 deletions(-)

commit 4707412ce6b67fe750113b7a7964b7c7126c11a5
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat May 15 23:14:28 2010 -0400

    Fix a typo.

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

commit 98715fee46953caa7e26f19012aa1a5dde1112f1
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat May 15 23:02:50 2010 -0400

    Detect changes to ROM directories.
    
    Create a GFileMonitor for each directory in the "rompath" configuration
    setting.  When a change notification is received, present the user with
    a dialog offering to reanalyze the ROM files in order to update the game
    list without having to restart GNOME Video Arcade.

 NEWS                                              |  12 ++
 docs/reference/gnome-video-arcade-sections.txt    |   2 +
 docs/reference/tmpl/gva-audit.sgml                |   6 +
 docs/reference/tmpl/gva-categories.sgml           |   3 +
 docs/reference/tmpl/gva-cell-renderer-pixbuf.sgml |   4 +
 docs/reference/tmpl/gva-column-manager.sgml       |   3 +
 docs/reference/tmpl/gva-columns.sgml              |   3 +
 docs/reference/tmpl/gva-db.sgml                   |   5 +
 docs/reference/tmpl/gva-dbus.sgml                 |   3 +
 docs/reference/tmpl/gva-error.sgml                |   3 +
 docs/reference/tmpl/gva-favorites.sgml            |   4 +
 docs/reference/tmpl/gva-game-store.sgml           |   4 +
 docs/reference/tmpl/gva-history.sgml              |   3 +
 docs/reference/tmpl/gva-input-file.sgml           |   3 +
 docs/reference/tmpl/gva-main.sgml                 |  11 ++
 docs/reference/tmpl/gva-mame-common.sgml          |   3 +
 docs/reference/tmpl/gva-mame-process.sgml         |   3 +
 docs/reference/tmpl/gva-mame.sgml                 |   4 +
 docs/reference/tmpl/gva-music-button.sgml         |   4 +
 docs/reference/tmpl/gva-mute-button.sgml          |   4 +
 docs/reference/tmpl/gva-nplayers.sgml             |   3 +
 docs/reference/tmpl/gva-play-back.sgml            |   4 +
 docs/reference/tmpl/gva-preferences.sgml          |   8 +
 docs/reference/tmpl/gva-process.sgml              |   4 +
 docs/reference/tmpl/gva-properties.sgml           |   4 +
 docs/reference/tmpl/gva-time.sgml                 |   3 +
 docs/reference/tmpl/gva-tree-view.sgml            |   9 +
 docs/reference/tmpl/gva-ui.sgml                   |  19 +++
 docs/reference/tmpl/gva-util.sgml                 |   7 +
 docs/reference/tmpl/gva-wnck.sgml                 |   3 +
 src/gva-main.c                                    |  15 +-
 src/gva-ui.c                                      | 191 ++++++++++++++--------
 src/gva-ui.h                                      |   2 +
 src/main.c                                        | 129 +++++++++++++--
 34 files changed, 397 insertions(+), 91 deletions(-)

commit 03c60ac84f91a9cdcfe0698e414a3b33b5eab7ee
Author: Flamarion Jorge <jorge.flamarion@gmail.com>
Date:   Sat May 8 09:08:26 2010 -0300

    Added Brazilian Portuguese translation

 po/LINGUAS  |   1 +
 po/pt_BR.po | 869 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 870 insertions(+)

commit 253fd63379510147238c83d1d9089709bd2ba3be
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Mar 31 20:33:58 2010 -0400

    Add Gtk-Doc tests during "make check".

 docs/reference/Makefile.am | 2 ++
 1 file changed, 2 insertions(+)

commit 69afb8f972dbcb3197d1463e557282ee49abec11
Author: Bruno Brouard <annoa.b@gmail.com>
Date:   Mon Mar 15 23:05:04 2010 +0100

    Updated French translation

 po/fr.po | 333 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 172 insertions(+), 161 deletions(-)

commit afceeba3d28fc3f0439f69b788b396b9dd46f84d
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Mar 15 11:04:37 2010 +0100

    Add Norwegian language entry.

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

commit 96ca2991a4a2e380304fc09ce225de92bfdb15ed
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:   Mon Mar 15 11:04:28 2010 +0100

    Added Norwegian bokmål translation

 po/nb.po | 858 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 858 insertions(+)

commit 09ba84b5da8709ac1a4c0c3bcc74121f42bf1aae
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Mar 14 20:49:53 2010 -0400

    Clean up how the initial view is set.
    
    Remove the hack for forcing a tree view update in start().

 src/gva-tree-view.c |  6 +++++-
 src/gva-ui.c        | 12 +++++++++++-
 src/main.c          |  7 -------
 3 files changed, 16 insertions(+), 9 deletions(-)

commit a7522c0e5ada45637d71bad501a8aa5f704a6415
Author: Lars Christian Jensen <lars@jink.dk>
Date:   Mon Mar 15 00:33:47 2010 +0100

    Added Danish translation of the documentation

 help/da/da.po | 1071 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 1071 insertions(+)

commit 468590f27750e15a38dc1bd48304a10a71d853a9
Author: Kenneth Nielsen <k.nielsen81@gmail.com>
Date:   Mon Mar 15 00:32:01 2010 +0100

    Added da to liste of languages

 help/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 975605d98f4135e961d501551ea02db1195071b9
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Fri Mar 12 16:22:21 2010 +0100

    Updated Slovenian translation

 po/sl.po | 175 +++++++++++++++++++++++++++++++++------------------------------
 1 file changed, 92 insertions(+), 83 deletions(-)

commit b7bd2404ce894fee86828e7a3c722a8bdc38dd9d
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Mar 11 19:30:20 2010 -0500

    Post-release version bump.

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

commit 1f75c652c1faff2f498ef012f4379bd3fc041f05
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Mar 11 19:22:56 2010 -0500

    Update NEWS for 0.7.0 release.

 NEWS | 22 +++++++++++++++++++++-
 1 file changed, 21 insertions(+), 1 deletion(-)

commit 6b27870a98b00fab50c0d7d9d5797ca97cc44350
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Mar 10 20:15:17 2010 -0500

    Tolerate more errors in Catver.ini and nplayers.ini.
    
    Particularly, if the files are missing or unreadable for some reason we
    get G_KEY_FILE_ERROR_GROUP_NOT_FOUND errors when querying the key files.
    Silence this error so it doesn't derail the whole database construction
    process.

 src/gva-db.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit 5670212c578a0f0d7a5320098e67541892a2c6bd
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Mar 10 13:58:48 2010 -0500

    Assume binaries named 'mame' are SDLMAME.
    
    Since SDLMAME has been officially adopted by the MAME project.

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

commit cf14e88df479980ae91f8147984d4d57247c1d20
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Mar 10 13:49:14 2010 -0500

    Check for base GStreamer plugins.
    
    Check for gstreamer-plugins-base-0.10 instead of gstreamer-0.10, since
    we use the "playbin" plugin.  gstreamer-0.10 is a requirement for the
    plugins, so it will still get pulled in.

 README       | 6 ++++--
 configure.ac | 2 +-
 2 files changed, 5 insertions(+), 3 deletions(-)

commit 8026f8f3e6742e05244cda225a1a4af150ac897d
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Mar 9 20:24:25 2010 -0500

    Exclude BIOS sets when counting ROMs at startup.

 src/main.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 65ac49e04b10213b8ff7d8cc67550a60fc7400da
Author: Marek Černocký <marek@manet.cz>
Date:   Mon Mar 8 10:26:16 2010 +0100

    Update Czech translation

 po/cs.po | 181 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 93 insertions(+), 88 deletions(-)

commit e604a7923c0d2ef8f6f812ffb412d8140437fe0c
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Mar 7 15:01:55 2010 -0500

    Knock off a TODO list item.

 TODO | 3 ---
 1 file changed, 3 deletions(-)

commit 5fb79860a351a81d4c9b9a915670cf1f302b1f04
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Sun Mar 7 18:21:01 2010 +0100

    Updated German translation

 po/de.po | 188 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 91 insertions(+), 97 deletions(-)

commit 8703f672159878963f9278f833f6a06926123445
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Mar 7 12:02:31 2010 -0500

    Add a TODO file.
    
    This will serve as my ongoing work list, and also a starting point for
    anyone that wants to contribute.

 Makefile.am |  3 ++-
 TODO        | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 62 insertions(+), 1 deletion(-)

commit c9d21b77ea2a7011a596259b0be373b291d011e9
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Mar 7 11:55:06 2010 -0500

    Move the games database file.
    
    Move the games database to a more sensible location.
    
       From: $(XDG_DATA_HOME)/applications/gnome-video-arcade/games.db
         To: $(XDG_DATA_HOME)/gnome-video-arcade/games.db
    
    During a database rebuild, check for the file in the old location and
    remove it, along with the directory.

 src/gva-db.c   | 17 +++++++++++++++++
 src/gva-util.c |  3 +--
 2 files changed, 18 insertions(+), 2 deletions(-)

commit 9fb378efc1733f1aa6d346a0666e3cde971be5de
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sun Mar 7 14:56:27 2010 +0100

    Updated Spanish translation

 po/es.po | 180 ++++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 91 insertions(+), 89 deletions(-)

commit ba61d1ba81d793a2c21f25dd3968087d146a12f5
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Mar 6 16:15:09 2010 -0500

    Add a website link to the About dialog.

 src/gva-ui.c | 5 +++++
 1 file changed, 5 insertions(+)

commit 780108f698f8e6e18536a2ecc4de150cd2a09383
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Mar 6 16:08:21 2010 -0500

    Replace GvaLinkButton with GtkLabel's hyperlink feature.

 docs/reference/Makefile.am                     |   1 -
 docs/reference/gnome-video-arcade-docs.sgml    |   1 -
 docs/reference/gnome-video-arcade-sections.txt |  17 ----
 docs/reference/gnome-video-arcade.types        |   2 -
 docs/reference/tmpl/gva-link-button.sgml       |  34 -------
 maint/Makefile.am                              |   2 -
 maint/gva.xml                                  |   3 -
 maint/widget-gva-link-button.png               | Bin 150 -> 0 bytes
 src/Makefile.am                                |   2 -
 src/gva-link-button.c                          | 122 -------------------------
 src/gva-link-button.h                          |  76 ---------------
 src/gva-properties.c                           |  38 ++++----
 12 files changed, 17 insertions(+), 281 deletions(-)

commit f385d860b123a0959e9c0b47e1412e10c880226d
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Mar 6 15:32:50 2010 -0500

    Make the Properties window size persistent.

 data/gnome-video-arcade.schemas | 36 ++++++++++++++++++++++++++++++++++++
 src/gva-common.h                |  1 +
 src/gva-properties.c            |  4 ++++
 3 files changed, 41 insertions(+)

commit cb4d97bd004b172431021eeed1a042bdea7d4422
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Mar 6 14:45:18 2010 -0500

    Make the main window position persistent.

 data/gnome-video-arcade.schemas | 22 ++++++++++++++++++++++
 src/gconf-bridge.c              |  4 ++++
 src/gva-main.c                  |  2 +-
 3 files changed, 27 insertions(+), 1 deletion(-)

commit 892d6373bb24fb295dc1164dbbc4da2c9bdfbf82
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Mar 6 14:23:33 2010 -0500

    Add a "clear search" button to the search entry.

 data/gnome-video-arcade.builder                |  5 ++
 docs/reference/gnome-video-arcade-sections.txt |  4 ++
 docs/reference/tmpl/gva-main.sgml              | 25 ++++++++++
 src/gva-main.c                                 | 64 +++++++++++++++++++++++++-
 src/gva-main.h                                 |  6 +++
 5 files changed, 102 insertions(+), 2 deletions(-)

commit e00214c6687f35448d4c42ceb0b95922db8e66b8
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Mar 6 12:57:51 2010 -0500

    Bump GTK+ requirement to 2.18.
    
    Remove all traces of libgnome as well as conditional compilation
    sections for GTK+ versions newer than 2.12.

 README                          | 31 ++++---------------------------
 configure.ac                    | 25 ++-----------------------
 data/gnome-video-arcade.builder |  2 +-
 docs/reference/Makefile.am      |  4 ----
 src/Makefile.am                 | 15 ++++-----------
 src/gva-main.c                  | 12 ------------
 src/gva-util.c                  | 27 ---------------------------
 src/main.c                      | 33 ---------------------------------
 8 files changed, 11 insertions(+), 138 deletions(-)

commit e5624fdebf6bd98b31386cd0709ae228d4b9407d
Author: Fran Diéguez <frandieguez@ubuntu.com>
Date:   Fri Mar 5 01:11:56 2010 +0100

    Add Galician translation

 po/LINGUAS |   1 +
 po/gl.po   | 873 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 874 insertions(+)

commit 8f266cb04b6f067915433f35308cc2799f0a0e7a
Author: Marek Černocký <marek@manet.cz>
Date:   Sun Feb 28 20:18:09 2010 +0100

    Add Czech translation

 help/Makefile.am                            |    2 +-
 help/cs/cs.po                               | 1063 +++++++++++++++++++++++++++
 help/cs/figures/gva_building_database.png   |  Bin 0 -> 26721 bytes
 help/cs/figures/gva_column_preferences.png  |  Bin 0 -> 32446 bytes
 help/cs/figures/gva_general_preferences.png |  Bin 0 -> 30544 bytes
 help/cs/figures/gva_main_window.png         |  Bin 0 -> 42756 bytes
 help/cs/figures/gva_recorded_games.png      |  Bin 0 -> 19992 bytes
 help/cs/figures/gva_search_window.png       |  Bin 0 -> 15883 bytes
 8 files changed, 1064 insertions(+), 1 deletion(-)

commit 2b0f923c9d9364b57511b7a54eb868908cebcc82
Author: Petr Kovar <pknbe@volny.cz>
Date:   Sun Feb 21 19:51:30 2010 +0100

    Update Czech translation by Marek Cernocky
    
    Reviewed by: Lucas Lommer.

 po/cs.po | 315 ++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 191 insertions(+), 124 deletions(-)

commit 64223719045ded2e2b417173132dc48ee81b4459
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Sat Feb 20 22:26:26 2010 +0100

    Updated Slovenian translation

 po/sl.po | 357 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 200 insertions(+), 157 deletions(-)

commit 9628cce9e4dd9692506b0a1d3ff653551321686e
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Feb 17 23:41:18 2010 -0500

    Index a GvaGameStore after we insert all the rows.
    
    The index holds a mapping of ROM names to GtkTreeRowReferences.  If we
    build the index as we're inserting rows, then row references have to be
    updated each time we insert a new row.  Building the index after we're
    done inserting rows yields a slight performance improvement, though not
    as much as I was hoping.

 src/gva-game-store.c | 35 +++++++++++++++++++++++++++++++----
 1 file changed, 31 insertions(+), 4 deletions(-)

commit ef9f6791fd4878fcfcf9a50d83f3c171fc5244f3
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Feb 17 22:43:15 2010 -0500

    Fix over-zealous word wrapping when resizing Properties window.

 data/gnome-video-arcade.builder | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 6116542262d57717df1b26f7d9f3a3591f875799
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Mon Feb 15 18:14:03 2010 +0100

    Updated German translation

 po/de.po | 345 +++++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 212 insertions(+), 133 deletions(-)

commit 1ff19d02c6ffcedcb75c294de1d0a2ab7b59a947
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Mon Feb 15 11:40:58 2010 +0100

    Updated Spanish translation

 po/es.po | 367 ++++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 201 insertions(+), 166 deletions(-)

commit 925ea63721ba1a6dc3d2cadf90d93fd5d00bbeb4
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Feb 14 20:23:39 2010 -0500

    Silence a compiler warning.

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

commit e476b11bc134f86e08a6cadae193c198ac94bfcf
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Feb 14 19:41:17 2010 -0500

    Add music clips to the Properties window.
    
    This adds an optional dependency on GStreamer.  Music clips are streamed
    in MP3 format from http://www.arcade-history.com/.  Music clips are not
    yet available for all games, but the collection appears to be growing.

 NEWS                                           |  10 +
 README                                         |  30 +-
 configure.ac                                   |  19 +
 data/gnome-video-arcade.builder                | 146 ++++--
 data/gnome-video-arcade.schemas                |  19 +-
 docs/reference/Makefile.am                     |   3 +
 docs/reference/gnome-video-arcade-docs.sgml    |   1 +
 docs/reference/gnome-video-arcade-sections.txt |  32 +-
 docs/reference/gnome-video-arcade.types        |   2 +
 docs/reference/tmpl/gva-history.sgml           |   9 +
 docs/reference/tmpl/gva-music-button.sgml      | 100 ++++
 docs/reference/tmpl/gva-preferences.sgml       |  16 +
 docs/reference/tmpl/gva-process.sgml           |   2 +-
 docs/reference/tmpl/gva-properties.sgml        |   3 +-
 docs/reference/tmpl/gva-ui.sgml                |   7 +
 docs/reference/tmpl/gva-util.sgml              |   1 +
 maint/Makefile.am                              |   5 +-
 maint/gva.xml                                  |   7 +
 po/POTFILES.in                                 |   1 +
 src/Makefile.am                                |   7 +-
 src/gva-common.h                               |  10 +-
 src/gva-db.c                                   |   2 +-
 src/gva-history.c                              | 116 +++--
 src/gva-history.h                              |   1 +
 src/gva-input-file.c                           |  12 +-
 src/gva-mame-process.c                         |  22 +-
 src/gva-music-button.c                         | 646 +++++++++++++++++++++++++
 src/gva-music-button.h                         |  91 ++++
 src/gva-preferences.c                          |  97 +++-
 src/gva-preferences.h                          |   2 +
 src/gva-process.c                              |  25 +-
 src/gva-properties.c                           |  67 ++-
 src/gva-properties.h                           |   3 +-
 src/gva-ui.c                                   |  29 ++
 src/gva-ui.h                                   |   9 +
 src/gva-util.c                                 |  31 +-
 src/gva-util.h                                 |  13 +-
 src/main.c                                     |   8 +
 38 files changed, 1456 insertions(+), 148 deletions(-)

commit 991178da232ec4e074b14f0d937638fd081d6707
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Tue Jan 26 20:17:26 2010 +0100

    Updated Spanish translation

 po/es.po | 378 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 187 insertions(+), 191 deletions(-)

commit 1285aed81462ec32d415e2663152988ca5efe839
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 24 10:16:17 2010 -0500

    Post-release version bump.

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

commit e68cb6692562b4cf83b2098c45b8bbdfa79ccdaa
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Jan 23 22:14:32 2010 -0500

    Update NEWS for 0.6.8 release.

 NEWS | 26 ++++++++++++++++++++++----
 1 file changed, 22 insertions(+), 4 deletions(-)

commit b9e5cf7984fe59d1214b9ef1302f061172f817ea
Author: Marek Černocký <marek@manet.cz>
Date:   Mon Jan 18 17:56:46 2010 +0100

    Update Czech translation

 po/cs.po | 50 +++++++++++++-------------------------------------
 1 file changed, 13 insertions(+), 37 deletions(-)

commit 68da82b318ddd9db22561ecd0a24b2287f0e4a5a
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Mon Jan 18 17:09:42 2010 +0100

    Updated Slovenian translation

 po/sl.po | 370 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 183 insertions(+), 187 deletions(-)

commit 9cd52f34bbda6eaa2c5cdc7c5fc6d82484d4880d
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Jan 15 23:13:45 2010 -0500

    Update copyright year.

 docs/gnome-video-arcade.1      | 2 +-
 src/gva-audit.c                | 2 +-
 src/gva-audit.h                | 2 +-
 src/gva-categories.c           | 2 +-
 src/gva-categories.h           | 2 +-
 src/gva-cell-renderer-pixbuf.c | 2 +-
 src/gva-cell-renderer-pixbuf.h | 2 +-
 src/gva-column-manager.c       | 2 +-
 src/gva-column-manager.h       | 2 +-
 src/gva-columns.c              | 2 +-
 src/gva-columns.h              | 2 +-
 src/gva-common.h               | 2 +-
 src/gva-db.c                   | 2 +-
 src/gva-db.h                   | 2 +-
 src/gva-dbus.c                 | 2 +-
 src/gva-dbus.h                 | 2 +-
 src/gva-error.c                | 2 +-
 src/gva-error.h                | 2 +-
 src/gva-favorites.c            | 2 +-
 src/gva-favorites.h            | 2 +-
 src/gva-game-store.c           | 2 +-
 src/gva-game-store.h           | 2 +-
 src/gva-history.c              | 2 +-
 src/gva-history.h              | 2 +-
 src/gva-input-file.c           | 2 +-
 src/gva-input-file.h           | 2 +-
 src/gva-link-button.c          | 2 +-
 src/gva-link-button.h          | 2 +-
 src/gva-main.c                 | 2 +-
 src/gva-main.h                 | 2 +-
 src/gva-mame-common.c          | 2 +-
 src/gva-mame-common.h          | 2 +-
 src/gva-mame-process.c         | 2 +-
 src/gva-mame-process.h         | 2 +-
 src/gva-mame-sdlmame.c         | 2 +-
 src/gva-mame-xmame.c           | 2 +-
 src/gva-mame.h                 | 2 +-
 src/gva-mute-button.c          | 2 +-
 src/gva-mute-button.h          | 2 +-
 src/gva-nplayers.c             | 2 +-
 src/gva-nplayers.h             | 2 +-
 src/gva-play-back.c            | 2 +-
 src/gva-play-back.h            | 2 +-
 src/gva-preferences.c          | 2 +-
 src/gva-preferences.h          | 2 +-
 src/gva-process.c              | 2 +-
 src/gva-process.h              | 2 +-
 src/gva-properties.c           | 2 +-
 src/gva-properties.h           | 2 +-
 src/gva-time.c                 | 2 +-
 src/gva-time.h                 | 2 +-
 src/gva-tree-view.c            | 2 +-
 src/gva-tree-view.h            | 2 +-
 src/gva-ui.c                   | 4 ++--
 src/gva-ui.h                   | 2 +-
 src/gva-util.c                 | 2 +-
 src/gva-util.h                 | 2 +-
 src/gva-wnck.c                 | 2 +-
 src/gva-wnck.h                 | 2 +-
 src/main.c                     | 2 +-
 60 files changed, 61 insertions(+), 61 deletions(-)

commit 4b3925fede74d9242802d2db72c055bb47b9f73e
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Fri Jan 15 17:01:26 2010 +0100

    Updated German translation

 po/de.po | 351 ++++++++++++++++++++++++++++-----------------------------------
 1 file changed, 154 insertions(+), 197 deletions(-)

commit 4c6e28d16ae70bc71fb80048a5c76e7c84253092
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Jan 15 08:34:07 2010 -0500

    Remove dead assignments found by clang.

 src/gva-audit.c       | 3 ---
 src/gva-main.c        | 4 ----
 src/gva-mame-common.c | 6 ------
 src/gva-play-back.c   | 2 --
 src/gva-properties.c  | 2 --
 5 files changed, 17 deletions(-)

commit beb7c55958d645722425fd9fdc00918732b09bca
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Jan 12 19:19:48 2010 -0500

    Use cached GTK-Doc API index if available.
    
    Per Stefan Kost: http://www.advogato.org/person/ensonic/diary/99.html

 docs/reference/gnome-video-arcade-docs.sgml | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

commit 80759146137fed7c2c109431974d5bfe22a7e0f7
Author: Petr Kovar <pknbe@volny.cz>
Date:   Tue Jan 12 01:41:08 2010 +0100

    Add Czech translation by Marek Cernocky

 po/LINGUAS |   1 +
 po/cs.po   | 823 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 824 insertions(+)

commit 06ccb385eb9be920e5000a0fc59259755f4a57e9
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jan 11 08:15:19 2010 -0500

    Whitespace cleanup.

 src/gva-properties.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

commit 4c2c8c7195bc65d5e48c1d4903dff6e0825e2d87
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jan 11 00:43:26 2010 -0500

    Support new -listxml attributes in MAME 0.136.

 src/gva-db.c | 70 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 70 insertions(+)

commit 73edf5eb45dd84fb64081d4a2c0818a03c80806a
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 10 23:42:08 2010 -0500

    Enable AM_SILENT_RULES for automake >= 1.11.

 configure.ac | 3 +++
 1 file changed, 3 insertions(+)

commit 4bc7233c0f09e88d645b3809fb1871430dd0c7da
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 10 23:28:59 2010 -0500

    Add a "Last Played" column.
    
    The "Last Played" column shows a timestamp indicating when emulation of
    the game was last terminated.  If the timestamp is for the current date,
    only the time is shown.  Otherwise only the date is shown.  Sorting the
    column remains accurate, however.

 docs/reference/tmpl/gva-game-store.sgml |  1 +
 src/gva-columns.c                       | 50 +++++++++++++++++++++++---
 src/gva-db.c                            | 11 +++++-
 src/gva-game-store.c                    | 11 ++++++
 src/gva-game-store.h                    |  3 ++
 src/gva-tree-view.c                     |  2 +-
 src/gva-ui.c                            | 62 +++++++++++++++++++++++++++++++--
 7 files changed, 132 insertions(+), 8 deletions(-)

commit 73ec8cdf3bb86d30e298285dfd6e9dd67dbab219
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 10 14:01:41 2010 -0500

    Add files under /m4 to MAINTAINERCLEANFILES.

 Makefile.am | 8 ++++++++
 1 file changed, 8 insertions(+)

commit 115e982401064c74e001f113556832b31ab74bc1
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 10 13:53:18 2010 -0500

    Generate a ChangeLog file in tarball releases.

 ChangeLog   |  4 ++++
 Makefile.am | 15 +++++++++++++++
 2 files changed, 19 insertions(+)

commit fcc4027a84c4c3115e240a68c32e142713e4dd1d
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jan 4 00:18:10 2010 -0500

    Remove ChangeLog files.
    
    Changes details are henceforth recorded in commit messages.

 ChangeLog    | 3533 ----------------------------------------------------------
 po/ChangeLog |   81 --
 2 files changed, 3614 deletions(-)

commit 6cd711cdd1da27ee192adb25bc5eefb380f1cf23
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jan 4 00:17:33 2010 -0500

    Bug 598038 - Remove old translation helper files

 po/Makevars            | 41 -----------------------------------------
 po/Rules-quot          |  1 -
 po/boldquot.sed        |  1 -
 po/en@boldquot.header  |  1 -
 po/en@quot.header      |  1 -
 po/insert-header.sin   |  1 -
 po/quot.sed            |  1 -
 po/remove-potcdate.sin |  1 -
 8 files changed, 48 deletions(-)

commit bbf8a01dfbe96dcd80c47a49a67eeb07821e3e91
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jan 4 00:02:03 2010 -0500

    Use UTF-8 bullets instead of UTF-8 codes in GtkBuilder file.
    
    Fixes bug #605766 - Non-translatable strings in the catalog

 data/gnome-video-arcade.builder | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

commit c5e8d607463da48e08b06de3e1a2913093697fb2
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 3 23:54:43 2010 -0500

    Honor "buttons_have_icons" setting for custom buttons.

 data/gnome-video-arcade.builder | 86 +++++++----------------------------------
 1 file changed, 14 insertions(+), 72 deletions(-)

commit 32ca8d5448ba857f95d9487d0b3fba91075e8cc4
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 3 23:11:21 2010 -0500

    Reorder main menu in GtkVBox after packing it.

 src/gva-main.c | 4 ++++
 1 file changed, 4 insertions(+)

commit ec81ce4ccfcd7fbfd8738014e66ea2eb10f7a8f9
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 3 23:07:34 2010 -0500

    Swap main-vbox childern in GtkBuilder file.

 data/gnome-video-arcade.builder | 62 ++++++++++++++++++++---------------------
 1 file changed, 30 insertions(+), 32 deletions(-)

commit 6001976eaf7b4277c8778936570e19eb1f0fac63
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 3 23:01:34 2010 -0500

    Open and save GtkBuilder file in Glade.
    
    Glade likes to discard object classes it doesn't understand, so manually
    filter those hunks out of the commit.

 data/gnome-video-arcade.builder | 291 ++++++++++++++++++++++++++--------------
 1 file changed, 194 insertions(+), 97 deletions(-)

commit 1e75fe6c327d93cdb3d70a579f020d87201e734e
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 3 22:53:04 2010 -0500

    Add "orientation" property to all GtkVBox widgets.

 data/gnome-video-arcade.builder | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

commit 51659aa9267dd998cccb2284332488e5e369a35c
Author: Joe Hansen <joedalton2@yahoo.dk>
Date:   Thu Nov 26 00:42:58 2009 +0100

    Updated Danish translation

 po/da.po | 102 +++++++++++++++++++++++++++++++--------------------------------
 1 file changed, 51 insertions(+), 51 deletions(-)

commit b7687d81e6c93920ee122472edf16a422374e3b7
Author: Andrej Žnidaršič <andrej.znidarsic@gmail.com>
Date:   Fri Nov 13 10:14:44 2009 +0100

    Updated Slovenian translation

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

commit c9809b27960f5fe137a074d86e9ff9cfdac8533a
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:   Fri Nov 13 10:14:39 2009 +0100

    Added sl for Slovenian translation

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

commit 58e9db7b0438883c0c0c44950e07c9441fce9675
Author: Joe Hansen <joedalton2@yahoo.dk>
Date:   Sat Nov 7 11:05:51 2009 +0100

    Updated Danish translation

 po/da.po | 443 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 246 insertions(+), 197 deletions(-)

commit 78897cf930bc80e19f379831f8d775706646198b
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Tue Nov 3 21:14:28 2009 +0100

    Updated Spanish translation

 po/es.po | 432 +++++++++++++++++++++++++++++++++++++--------------------------
 1 file changed, 251 insertions(+), 181 deletions(-)

commit 92daab53aff2cd31044f00ee06876538a85eb9c0
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Fri Oct 16 17:36:24 2009 +0200

    Updated German translation

 po/de.po | 342 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 193 insertions(+), 149 deletions(-)

commit 2266858e57692b3da574a137047a41c1fda3ac38
Author: Claude Paroz <claude@2xlibre.net>
Date:   Sat Oct 10 22:38:43 2009 +0200

    Updated French translation
    
    Contributed by Luc Rebert and Claude Paroz

 po/fr.po | 810 ++++++++++++++++++++++++++++++++++++++++++++++++++-------------
 1 file changed, 641 insertions(+), 169 deletions(-)

commit 16d8e775dcc0eb4b7a5f5fd59e1ffcc03f2c4a27
Author: Claude Paroz <claude@2xlibre.net>
Date:   Sat Oct 10 22:38:24 2009 +0200

    Do not mark stock label as translatable

 data/gnome-video-arcade.builder | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit dae15543a27b59d02af43f6943fe5878886385f0
Author: Claude Paroz <claude@2xlibre.net>
Date:   Sat Oct 10 22:35:51 2009 +0200

    Prefix GTKBuilder file in POTFILES.in

 po/POTFILES.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit a8c707039a8747b1d89e2af4dd544854db65c821
Author: Claude Paroz <claude@2xlibre.net>
Date:   Sat Oct 10 10:44:16 2009 -0500

    Bug 597947 - Missing no-c-format marker when string contains %

 src/gva-columns.c | 3 +++
 1 file changed, 3 insertions(+)

commit 197cfb6bcb630375035d974fe924057795dcfeaf
Author: Kostas Papadimas <pkst@gnome.org>
Date:   Sat Sep 12 18:52:48 2009 +0300

    Updated Greek translation.

 po/el.po | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

commit 7abb75dd01bb7c4bb8db43d74c3e2c9f22e88867
Author: Kostas Papadimas <pkst@gnome.org>
Date:   Sat Sep 12 18:51:12 2009 +0300

    Updated Greek translation.

 po/LINGUAS |   1 +
 po/el.po   | 736 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 737 insertions(+)

commit db25d1ceb250beac0c5cecaae0b66020e7f44a22
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sun Aug 30 12:10:06 2009 +0200

    Updated Spanish translation

 po/es.po | 488 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 228 insertions(+), 260 deletions(-)

commit 7d3fa65d8e7a850dc3a0430c967f4b9c6d88eba0
Author: Daniel Nylander <po@danielnylander.se>
Date:   Thu Aug 20 22:48:58 2009 +0200

    Updated Swedish translation

 po/sv.po | 3 ---
 1 file changed, 3 deletions(-)

commit eddb99cf562262f4fe3f92feeb76acafc15bdc76
Author: Daniel Nylander <po@danielnylander.se>
Date:   Thu Aug 20 22:44:37 2009 +0200

    Updated Swedish translation

 po/sv.po | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit ec1fc8cddd4c739b5cce32c0efcb69b94ac1ef91
Author: Daniel Nylander <po@danielnylander.se>
Date:   Thu Aug 20 22:32:10 2009 +0200

    Updated Swedish translation

 po/sv.po | 496 +++++++++++++++++++++++++++++----------------------------------
 1 file changed, 226 insertions(+), 270 deletions(-)

commit 5643ba6c1f2fd3f3dd7d080d60a150961e42d497
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Aug 14 13:19:54 2009 -0400

    Fix POTFILES.in.

 po/POTFILES.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 9c342916b019132543e809b93b6cff0fd1e8e7e5
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jul 19 16:37:30 2009 -0400

    Migrate from libglade to GtkBuilder.

 ChangeLog                       |   20 +
 NEWS                            |    1 +
 configure.ac                    |    5 -
 data/Makefile.am                |    5 +-
 data/gnome-video-arcade.builder | 1656 +++++++++++++++++++++++++++++++++++++
 data/gnome-video-arcade.glade   | 1705 ---------------------------------------
 data/gnome-video-arcade.gladep  |    9 -
 src/Makefile.am                 |    9 +-
 src/gva-columns.c               |    2 +-
 src/gva-ui.c                    |   37 +-
 10 files changed, 1696 insertions(+), 1753 deletions(-)

commit 8d6727b960dfbd1b6878b2665df11115a4fc0a43
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Sun Jul 19 11:25:19 2009 +0200

    Updated German translation

 po/de.po | 132 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 75 insertions(+), 57 deletions(-)

commit 6528525567f7ab6f08bdb4deec8387c9d2c52b53
Author: Omar Campagne <ocampagne@gmail.com>
Date:   Sat Jul 18 19:44:46 2009 +0200

    Updated Spanish translation

 help/es/es.po | 744 ++++++++++++++++++++++++++++++++++++++++++++++++----------
 1 file changed, 619 insertions(+), 125 deletions(-)

commit 4ccf09cd1319ef193506cd619a8becb87e91ccb1
Author: Omar Campagne <ocampagne@gmail.com>
Date:   Sat Jul 18 16:42:51 2009 +0200

    Updated Spanish translation

 po/es.po | 145 ++++++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 83 insertions(+), 62 deletions(-)

commit 85535b2306c9ab3a5f5528c159b2fa03fd58cfa2
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Jul 16 16:22:10 2009 -0400

    Inhibit the screen saver in fullscreen mode.
    
    Adds an optional dependency on dbus-glib-1.

 ChangeLog                                      |  29 ++++++
 NEWS                                           |  23 +++++
 README                                         |  21 ++++-
 configure.ac                                   |  39 ++++++--
 docs/reference/Makefile.am                     |   8 ++
 docs/reference/gnome-video-arcade-docs.sgml    |   1 +
 docs/reference/gnome-video-arcade-sections.txt |   6 ++
 docs/reference/tmpl/gva-dbus.sgml              |  39 ++++++++
 src/Makefile.am                                |  23 +++--
 src/gva-dbus.c                                 | 124 +++++++++++++++++++++++++
 src/gva-dbus.h                                 |  41 ++++++++
 src/gva-main.c                                 |   2 +-
 src/gva-mame-common.c                          |   6 +-
 src/gva-ui.c                                   |  43 +++++++++
 src/gva-util.c                                 |   4 +-
 src/gva-wnck.c                                 |   8 +-
 src/main.c                                     |  19 +++-
 17 files changed, 401 insertions(+), 35 deletions(-)

commit 13cc1c35a2103af30fa47dc941f216f3de7b121a
Author: Jorge González <jorgegonz@svn.gnome.org>
Date:   Sat Jul 11 14:15:48 2009 +0200

    Updated Spanish translation

 po/es.po | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

commit 48c443bce5d49625328004b0fbffdb3431222b8d
Author: Omar Campagne <ocampagne@gmail.com>
Date:   Sat Jul 11 14:01:58 2009 +0200

    Updated Spanish translation

 po/es.po | 234 +++++++++++++++++++++++++++++++++++----------------------------
 1 file changed, 132 insertions(+), 102 deletions(-)

commit e51b8ed747aaa75bad73c9b195a15725170c5855
Author: A S Alam <aalam@users.sf.net>
Date:   Sun Jun 14 07:23:17 2009 +0530

    Adding Punjabi (pa) Translation and Update LINGUAS file

 po/LINGUAS |   1 +
 po/pa.po   | 763 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 764 insertions(+)

commit 00ffa3c886e8ee6aebbef0340b50ec89ad5ab3e6
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Jun 12 21:03:53 2009 -0400

    Support new -listxml elements in MAME 0.132.

 ChangeLog                          |   9 ++
 configure.ac                       |   2 +-
 docs/reference/database-schema.xml |   4 +-
 src/gva-db.c                       | 297 +++++++++++++++++++++++++++----------
 4 files changed, 234 insertions(+), 78 deletions(-)

commit 593efc4c4f2abf490a9d04292198f81cf3ff69ce
Author: Diego Pierotto <ita.translations@tiscali.it>
Date:   Fri Jun 12 08:37:23 2009 -0400

    Added Italian help translation.

 help/ChangeLog                              |   5 +
 help/Makefile.am                            |   2 +-
 help/it/figures/gva_building_database.png   | Bin 0 -> 60461 bytes
 help/it/figures/gva_column_preferences.png  | Bin 0 -> 86009 bytes
 help/it/figures/gva_general_preferences.png | Bin 0 -> 101050 bytes
 help/it/figures/gva_main_window.png         | Bin 0 -> 177094 bytes
 help/it/figures/gva_recorded_games.png      | Bin 0 -> 51512 bytes
 help/it/figures/gva_search_window.png       | Bin 0 -> 80804 bytes
 help/it/it.po                               | 553 ++++++++++++++++++++++++++++
 9 files changed, 559 insertions(+), 1 deletion(-)

commit 63a3340b094cf70d14bb56361fe932b4cfea01bd
Author: Jorge Gonzalez <jorgegonz@svn.gnome.org>
Date:   Sun Jun 7 23:28:57 2009 +0200

    Added initial Spanish translation

 help/es/es.po | 604 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 604 insertions(+)

commit 4d1d38c368942601b4ab49727b9b928962fd8f86
Author: Jorge Gonzalez <jorgegonz@svn.gnome.org>
Date:   Sun Jun 7 23:28:49 2009 +0200

    Added initial Spanish translation

 po/es.po | 759 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 759 insertions(+)

commit e0025783d6d0703476f1a23bbcda3cbfe0e02c34
Author: Jorge Gonzalez <jorgegonz@svn.gnome.org>
Date:   Sun Jun 7 23:28:33 2009 +0200

    Added es to DOC_LINGUAS

 help/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 4d9f8c4bb51d2818e46336296c60923b49c44db2
Author: Jorge Gonzalez <jorgegonz@svn.gnome.org>
Date:   Sun Jun 7 23:27:58 2009 +0200

    Added es to LINGUAS

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

commit 82282d7fed0e53d144e14f417b66171723015e04
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Jun 3 16:45:03 2009 -0400

    Updated Italian translation.

 po/ChangeLog | 4 ++++
 po/it.po     | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)

commit 7a673be8c673739e307a8c1f9c30b51076bee063
Author: Diego Pierotto <ita.translations@tiscali.it>
Date:   Tue Jun 2 14:54:02 2009 -0400

    Added Italian translation.

 po/ChangeLog |   4 +
 po/LINGUAS   |   1 +
 po/it.po     | 770 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 775 insertions(+)

commit ca04038c8f819f97eb0db4acdcda8f6ebf375930
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Jun 2 12:44:55 2009 -0400

    Use Behdad's git.mk to generate .gitignore files.
    
    Also, add several generated build files to MAINTAINERCLEANFILES.

 .gitignore                 |  26 -----
 INSTALL                    | 236 ---------------------------------------------
 Makefile.am                |  26 ++++-
 data/.gitignore            |   1 -
 data/Makefile.am           |   2 +
 docs/Makefile.am           |   2 +
 docs/reference/.gitignore  |  15 ---
 docs/reference/Makefile.am |   2 +
 git.mk                     | 178 ++++++++++++++++++++++++++++++++++
 help/.gitignore            |   1 -
 help/Makefile.am           |   2 +
 m4/.gitignore              |   0
 maint/Makefile.am          |   2 +
 po/.gitignore              |   4 -
 src/.gitignore             |   1 -
 src/Makefile.am            |   2 +
 16 files changed, 211 insertions(+), 289 deletions(-)

commit 7beea46bc78a0dd9adb9b9664bceff1c6036f48d
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Jun 2 12:32:21 2009 -0400

    Whitespace cleanup.

 src/gva-columns.c    | 2 +-
 src/gva-db.c         | 2 +-
 src/gva-input-file.c | 2 +-
 src/main.c           | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

commit e42c534a6fb2f05547301b02aa98155ffa52c546
Author: Lars C. Jensen <lars@jink.dk>
Date:   Tue May 19 23:08:51 2009 +0200

    Added Danish Danish translation

 po/LINGUAS |   1 +
 po/da.po   | 790 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 791 insertions(+)

commit 4d2751a6f5f99f49822f61b86f3f634350dce3f8
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Wed Apr 29 16:18:28 2009 +0200

    Added some screenshots

 help/de/de.po                               |   8 ++++----
 help/de/figures/gva_building_database.png   | Bin 0 -> 24210 bytes
 help/de/figures/gva_column_preferences.png  | Bin 0 -> 27322 bytes
 help/de/figures/gva_general_preferences.png | Bin 0 -> 27994 bytes
 4 files changed, 4 insertions(+), 4 deletions(-)

commit bc80bf094e5344372c713e852e5964209a72ceee
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Apr 26 18:40:28 2009 -0400

    Final preparations for 0.6.7.
    
    2009-04-26  Matthew Barnes  <mbarnes@redhat.com>
    
    	* NEWS: Update for 0.6.7
    
    	* docs/reference:
    	Update developer documentation.
    
    	* src/gva-input-file.c:
    	Document the new functions.

 ChangeLog                                      |  10 ++
 NEWS                                           |  12 ++-
 docs/reference/gnome-video-arcade-docs.sgml    |   1 +
 docs/reference/gnome-video-arcade-sections.txt |  25 +++++
 docs/reference/gnome-video-arcade.types        |   2 +
 docs/reference/tmpl/gva-input-file.sgml        | 124 +++++++++++++++++++++++++
 src/gva-game-store.c                           |   2 +-
 src/gva-input-file.c                           |  70 ++++++++++++++
 8 files changed, 244 insertions(+), 2 deletions(-)

commit 177d47555d569e1604b8382977c7a5ec99cfa21c
Author: Daniel Nylander <po@danielnylander.se>
Date:   Thu Apr 23 17:50:18 2009 +0200

    Updated sv translation

 po/ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit fc353499cced63581a0d2c59604b46432dfda81e
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Apr 23 13:20:59 2009 -0400

    Add gva-input-file.c to POTFILES.in.
    
    2009-04-23  Matthew Barnes  <mbarnes@redhat.com>
    
    	* POTFILES.in: Add src/gva-input-file.c.

 docs/reference/tmpl/gva-error.sgml | 1 +
 docs/reference/tmpl/gva-util.sgml  | 1 +
 po/ChangeLog                       | 4 ++++
 3 files changed, 6 insertions(+)

commit 9ba534b12d4bc631045ef8fd5722fb2fdc991078
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Thu Apr 23 22:05:49 2009 +0200

    Added German translation

 po/ChangeLog |   4 +
 po/LINGUAS   |   1 +
 po/de.po     | 787 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 792 insertions(+)

commit f365a90bd2bdd9dd15f799aad848b9a4c305d578
Author: Mario Blättermann <mariobl@gnome.org>
Date:   Thu Apr 23 21:06:07 2009 +0200

    Added German doc translation

 help/ChangeLog   |    4 +
 help/Makefile.am |    2 +-
 help/de/de.po    | 1087 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 1092 insertions(+), 1 deletion(-)

commit 2bf86f087b2bde8c1d3dad4b073e5b44911730b2
Author: Daniel Nylander <po@danielnylander.se>
Date:   Thu Apr 23 19:52:19 2009 +0200

    Added sv translation

 help/Makefile.am                            |   2 +-
 help/sv/figures/gva_building_database.png   | Bin 0 -> 23883 bytes
 help/sv/figures/gva_column_preferences.png  | Bin 0 -> 32389 bytes
 help/sv/figures/gva_general_preferences.png | Bin 0 -> 31683 bytes
 help/sv/figures/gva_main_window.png         | Bin 0 -> 64430 bytes
 help/sv/figures/gva_recorded_games.png      | Bin 0 -> 25635 bytes
 help/sv/figures/gva_search_window.png       | Bin 0 -> 29485 bytes
 help/sv/sv.po                               | 552 ++++++++++++++++++++++++++++
 8 files changed, 553 insertions(+), 1 deletion(-)

commit 2234594a4e5d152facd0866b36f5b6c2e2435007
Author: Daniel Nylander <po@danielnylander.se>
Date:   Thu Apr 23 18:54:34 2009 +0200

    Updated sv translation

 po/sv.po | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

commit 8e4caaf76ece2f4d7198e8fafcef5324e5006cad
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Apr 23 13:37:03 2009 -0400

    Fix distcheck errors.

 docs/reference/Makefile.am | 1 +
 po/ChangeLog               | 4 ++++
 po/POTFILES.in             | 1 +
 3 files changed, 6 insertions(+)

commit be9c60f4dcc9c8ee2beb66c481ea99521138dac9
Author: Daniel Nylander <po@danielnylander.se>
Date:   Thu Apr 23 17:50:18 2009 +0200

    Updated sv translation

 po/ChangeLog |   4 +
 po/sv.po     | 668 +++++++++++++++++++++++++++++++++++++++++++++++------------
 2 files changed, 534 insertions(+), 138 deletions(-)

commit c658f0f6fc7415b5a14f623e6a066c9ca0e36931
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Apr 13 11:13:05 2009 -0400

    Make game play back work again with recent MAME releases.
    
    2009-04-13  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac:
    	Post-release version bump.
    
    	* src/Makefile.am:
    	Add gva-input-file.[ch].
    
    	* src/gva-error.h:
    	Add GVA_ERROR_FORMAT for file format errors.
    
    	* src/gva-input-file.c:
    	* src/gva-input-file.h:
    	New GvaInputFile class for parsing input file headers.
    	Knows about all header formats dating back to MAME 0.112.
    
    	* src/gva-mame-common.c (gva_mame_get_input_files):
    	Return a list of GvaInputFiles instead of a hash table of
    	filenames and ROM names.
    
    	* src/gva-play-back.c (play_back_add_input_file):
    	Take a GvaInputFile instead of a filename and ROM name.
    
    	* src/gva-play-back.c (gva_play_back_show):
    	Adapt to new gva_mame_get_input_files() signature.
    
    	* src/gva-util.c (gva_get_debug_flags):
    	* src/gva-util.h (GvaDebugFlags):
    	Add GVA_DEBUG_INP flag, which prints input file details.

 .gitignore            |   1 +
 ChangeLog             |  30 +++
 NEWS                  |  13 ++
 README                |   4 +-
 configure.ac          |   2 +-
 po/.gitignore         |   2 +
 src/Makefile.am       |   2 +
 src/gva-error.h       |   3 +
 src/gva-input-file.c  | 592 ++++++++++++++++++++++++++++++++++++++++++++++++++
 src/gva-input-file.h  |  89 ++++++++
 src/gva-mame-common.c |  45 +---
 src/gva-mame.h        |   2 +-
 src/gva-play-back.c   |  53 +++--
 src/gva-ui.c          |   4 +-
 src/gva-util.c        |   3 +-
 src/gva-util.h        |   5 +-
 16 files changed, 786 insertions(+), 64 deletions(-)

commit 0fc6f0e819c471c4cbd2333d7495c56669a408f2
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Apr 11 16:33:03 2009 -0400

    Ensure we don't get stuck in the process_stdout_ready() loop.
    
    2009-04-11  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-process.c (process_stdout_ready):
    	Break out of the loop immediately if the status is not
    	G_IO_STATUS_NORMAL.  Avoids potentially getting stuck in
    	the loop.

 ChangeLog         | 7 +++++++
 src/gva-process.c | 7 +++++++
 2 files changed, 14 insertions(+)

commit f7b520c0058d463618ef6910b144a4fd54187d6e
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Apr 11 15:29:00 2009 -0400

    Add a ChangeLog entry for Pierre's changes.

 ChangeLog | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

commit 8c1a7ba35568e915fd065b520ec8c900e77e4045
Author: Pierre Riteau <pierre.riteau@gmail.com>
Date:   Sat Apr 11 19:09:26 2009 +0200

    Make reading of child process output more portable.
    
    The code reading the output of the SDLMAME child process was
    non-functional on OpenBSD because of differences of behavior from
    poll(2). When poll(2) monitors output from a pipe which reaches EOF,
    the revents flags returned by poll(2) differ between implementations.
    Linux only sets the POLLHUP flag, while OpenBSD sets both the POLLIN and
    the POLLHUP flags.
    Since the condition variable given as argument to process_stdout_ready
    is partially derived from the revents flags, process_stdout_ready on
    OpenBSD is called with G_IO_IN|G_IO_HUP when we hit EOF. With these
    flags, the event source is not removed, and process_stdout_ready is
    called again and again.
    
    Modify the process_read_line function to return the status reported by
    g_io_channel_read_line. This makes it possible for process_stdout_ready
    and process_stderr_ready to remove the event source when the status is
    not G_IO_STATUS_NORMAL.

 src/gva-process.c | 23 ++++++++++++++++-------
 1 file changed, 16 insertions(+), 7 deletions(-)

commit fd4afe3088ef4e27854f4a1f566213265673ea02
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Apr 10 23:20:11 2009 -0400

    Remove empty <default> GConf schema tags.
    
    2009-04-10  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.schemas:
    	Remove empty <default> tags.

 ChangeLog                       | 9 +++++++--
 data/gnome-video-arcade.schemas | 4 ----
 2 files changed, 7 insertions(+), 6 deletions(-)

commit 7721e371982e374f92f0663b32e68c5a12c2769a
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Apr 6 20:12:14 2009 -0400

    Correctly handle the (G_IO_IN | G_IO_HUP) case.
    
    2009-04-06  Matthew Barnes  <mbarnes@redhat.com>
    
    	* gva-process.c (process_stdout_ready):
    	Correctly handle the (G_IO_IN | G_IO_HUP) case.

 ChangeLog         | 5 +++++
 src/gva-process.c | 5 +++--
 2 files changed, 8 insertions(+), 2 deletions(-)

commit d8094d3dcdbd6ee3592fe0def2edeea21bb036a3
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Apr 6 12:47:47 2009 -0400

    Remove overly strict assertion from process_read_line().
    
    2009-04-06  Matthew Barnes  <mbarnes@redhat.com>
    
    	* gva-process.c (process_read_line):
    	Remove the assertion before process_propagate_error(), since the
    	function can handle NULL GErrors.  Hopefully this fixes a crash on
    	OpenBSD, but I'd still like to know why g_io_channel_read_line()
    	returns G_IO_STATUS_ERROR without setting the GError.

 ChangeLog         |  8 +++++
 config.h.in       | 97 -------------------------------------------------------
 src/gva-process.c |  3 --
 3 files changed, 8 insertions(+), 100 deletions(-)

commit 0e8c1cd82e229c08db5d3bb696c3e188e2b17c42
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Apr 5 22:43:25 2009 -0400

    Add some .gitignore files.

 .gitignore                            | 25 ++++++++++++++++++
 data/.gitignore                       |  1 +
 docs/reference/.gitignore             | 15 +++++++++++
 docs/reference/tmpl/gva-nplayers.sgml | 50 +++++++++++++++++++++++++++++++++++
 help/.gitignore                       |  1 +
 po/.gitignore                         |  2 ++
 src/.gitignore                        |  1 +
 7 files changed, 95 insertions(+)

commit 6380c7ec09f34ede1093bc9a174e84620ea0ee45
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Apr 5 13:06:07 2009 -0400

    Actually release 0.6.6

 ChangeLog | 4 ++++
 1 file changed, 4 insertions(+)

commit aa83a1c9e613bff178dd966e7e11752a7d03de72
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Apr 5 12:50:38 2009 -0400

    Add ChangeLog entry for priteau's changes.

 ChangeLog | 7 +++++++
 1 file changed, 7 insertions(+)

commit 7456d94716b4c97fdcc8b3f8b426b3068cf606ed
Author: Pierre Riteau <pierre.riteau@gmail.com>
Date:   Sun Apr 5 15:29:40 2009 +0200

    Include sys/wait.h instead of wait.h which is specific to glibc.

 src/gva-mame-common.c  | 2 +-
 src/gva-mame-process.c | 2 +-
 src/gva-process.c      | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

commit 452816e3bc6f0ba8273aca0d71d72a3af524824f
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Mar 17 15:09:50 2009 -0400

    2009-03-17  Matthew Barnes  <mbarnes@redhat.com>
    
    	* MAINTAINERS:
    	New file to satisfy gnome.org requirements.

 ChangeLog   | 5 +++++
 MAINTAINERS | 3 +++
 2 files changed, 8 insertions(+)

commit 221b9b9cbd47a3bb8659cbfa97852c4217a7cbae
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Mar 16 07:48:06 2009 -0400

    2009-03-16  Matthew Barnes  <mbarnes@redhat.com>
    
    	* po/POTFILES.in: Add src/gva-nplayers.c.

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 1 +
 2 files changed, 5 insertions(+)

commit b0374f8672c2bb743c38667a7a02777bc8692fd7
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Mar 15 23:27:05 2009 -0400

    2009-03-15  Matthew Barnes  <mbarnes@redhat.com>
    
    	* NEWS: Update for 0.6.6

 ChangeLog |  4 ++++
 NEWS      | 28 +++++++++++++++++++++++-----
 2 files changed, 27 insertions(+), 5 deletions(-)

commit 9a8ec1092991d29ca1353943c0b473041a99167b
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Mar 3 23:15:19 2009 -0500

    2009-03-03  Matthew Barnes  <mbarnes@redhat.com>
    
    	* docs/reference:
    	Update developer documentation.
    
    	* src/gva-columns.c:
    	Add "Player (Alt.)" and "Player (Sim.)" columns (if NPLAYERS_FILE
    	is defined), which shows only the number of alternating players or
    	simultaneous players a game supports (respectively).
    
    	* src/gva-db.c:
    	Add "input_players_alt" and "input_players_sim" columns (if
    	NPLAYERS_FILE is defined).
    
    	* src/gva-db.c (db_parser_start_element_input):
    	If NPLAYERS_FILE is defined, fetch player information from the
    	NPLAYERS_FILE for the "input_players_alt" and "input_players_sim"
    	columns.  Also override "input_players" with the maximum of the
    	"alt" and "sim" columns.  Surprisingly, the file seems to be more
    	accurate than MAME's own XML data.
    
    	* src/gva-game-store.c:
    	* src/gva-game-store.h:
    	Add GVA_GAME_STORE_COLUMN_INPUT_PLAYERS_ALT.
    	Add GVA_GAME_STORE_COLUMN_INPUT_PLAYERS_SIM.
    
    	* src/gva-nplayers.c (gva_nplayers_describe):
    	New function returns a human-readable description of the number of
    	players a game supports.  Description is used as the tooltip in all
    	"Players" columns, whether NPLAYERS_FILE is defined or not.

 ChangeLog                                      |  31 ++++
 config.h.in                                    |   3 +
 docs/reference/Makefile.am                     |   1 +
 docs/reference/gnome-video-arcade-docs.sgml    |   1 +
 docs/reference/gnome-video-arcade-sections.txt |   7 +
 docs/reference/tmpl/gva-game-store.sgml        |   2 +
 src/gva-columns.c                              | 110 +++++++++----
 src/gva-db.c                                   |  56 +++++++
 src/gva-game-store.c                           |   2 +
 src/gva-game-store.h                           |   6 +
 src/gva-nplayers.c                             | 212 +++++++++++++++++++++----
 src/gva-nplayers.h                             |   6 +
 12 files changed, 377 insertions(+), 60 deletions(-)

commit 8330f348e11c91c6aac4935c0297a1ad66e4cde0
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Mar 2 08:18:03 2009 -0500

    2009-03-02  Matthew Barnes  <mbarnes@redhat.com>
    
    	* README:
    	Update the build instructions.
    
    	* configure.ac:
    	Add a --with-nplayers-file option.
    
    	* src/Makefile.am:
    	Add gva-nplayers.[ch].
    
    	* src/main.c (main):
    	Call gva_nplayers_init().
    
    	* src/gva-nplayers.c:
    	* src/gva-nplayers.h:
    	New source files parse an nplayers.ini file.

 ChangeLog            |  18 +++++++
 README               |  14 +++++
 configure.ac         |  13 +++++
 m4/.gitignore        |   0
 src/Makefile.am      |   2 +
 src/gva-categories.c |   3 +-
 src/gva-nplayers.c   | 149 +++++++++++++++++++++++++++++++++++++++++++++++++++
 src/gva-nplayers.h   |  39 ++++++++++++++
 src/main.c           |   4 ++
 9 files changed, 241 insertions(+), 1 deletion(-)

commit 9b54255241434aa6499b201ab3ce801990a6cc48
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Feb 27 11:44:25 2009 -0500

    2009-02-27  Matthew Barnes  <mbarnes@redhat.com>
    
    	* README: Add a note about GTK+ and --with-gnome.

 ChangeLog      |  4 ++++
 README         |  5 +++++
 src/gva-util.c | 48 ++++++++++++++++++++++++------------------------
 3 files changed, 33 insertions(+), 24 deletions(-)

commit 5feaf81bd2f615efcf04dd83ce0ed240a644682c
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Feb 27 10:53:10 2009 -0500

    2009-02-27  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac:
    	Post-release version bump.
    	If GTK+ >= 2.14 is installed, ignore --with-gnome.
    
    	* src/gva-columns.c (columns_factory_sampleset):
    	Use 'audio-x-generic' instead of deprecated 'emblem-sound'
    	for the icon in the samples column.
    
    	* src/main.c (warn_if_no_roms):
    	* src/gva-main.c (gva_main_init):
    	Test for both GTK_CHECK_VERSION(2,14,0) and WITH_GNOME.
    
    	* src/gva-util.c (gva_help_display):
    	Use gtk_show_uri() if we have GTK+ >= 2.14, else fall back to
    	gnome_help_display().

 ChangeLog         | 18 ++++++++++++++++++
 configure.ac      | 11 +++++++----
 src/gva-columns.c |  2 +-
 src/gva-main.c    |  2 +-
 src/gva-util.c    | 38 +++++++++++++++++++++++++++++++++++++-
 src/main.c        |  2 +-
 6 files changed, 65 insertions(+), 8 deletions(-)

commit ea20f908756a299ba84b7891cb0632fd114bdef5
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Jan 2 03:52:29 2009 +0000

    2009-01-01  Matthew Barnes  <mbarnes@redhat.com>
    
    	* Update copyright notices on source files.

 ChangeLog                      | 4 ++++
 docs/gnome-video-arcade.1      | 2 +-
 src/gva-audit.c                | 2 +-
 src/gva-audit.h                | 2 +-
 src/gva-categories.c           | 2 +-
 src/gva-categories.h           | 2 +-
 src/gva-cell-renderer-pixbuf.c | 2 +-
 src/gva-cell-renderer-pixbuf.h | 2 +-
 src/gva-column-manager.c       | 2 +-
 src/gva-column-manager.h       | 2 +-
 src/gva-columns.c              | 2 +-
 src/gva-columns.h              | 2 +-
 src/gva-common.h               | 2 +-
 src/gva-db.c                   | 2 +-
 src/gva-db.h                   | 2 +-
 src/gva-error.c                | 2 +-
 src/gva-error.h                | 2 +-
 src/gva-favorites.c            | 2 +-
 src/gva-favorites.h            | 2 +-
 src/gva-game-store.c           | 2 +-
 src/gva-game-store.h           | 2 +-
 src/gva-history.c              | 2 +-
 src/gva-history.h              | 2 +-
 src/gva-link-button.c          | 2 +-
 src/gva-link-button.h          | 2 +-
 src/gva-main.c                 | 2 +-
 src/gva-main.h                 | 2 +-
 src/gva-mame-common.c          | 2 +-
 src/gva-mame-common.h          | 2 +-
 src/gva-mame-process.c         | 2 +-
 src/gva-mame-process.h         | 2 +-
 src/gva-mame-sdlmame.c         | 2 +-
 src/gva-mame-xmame.c           | 2 +-
 src/gva-mame.h                 | 2 +-
 src/gva-mute-button.c          | 2 +-
 src/gva-mute-button.h          | 2 +-
 src/gva-play-back.c            | 2 +-
 src/gva-play-back.h            | 2 +-
 src/gva-preferences.c          | 2 +-
 src/gva-preferences.h          | 2 +-
 src/gva-process.c              | 2 +-
 src/gva-process.h              | 2 +-
 src/gva-properties.c           | 2 +-
 src/gva-properties.h           | 2 +-
 src/gva-time.c                 | 2 +-
 src/gva-time.h                 | 2 +-
 src/gva-tree-view.c            | 2 +-
 src/gva-tree-view.h            | 2 +-
 src/gva-ui.c                   | 4 ++--
 src/gva-ui.h                   | 2 +-
 src/gva-util.c                 | 2 +-
 src/gva-util.h                 | 2 +-
 src/gva-wnck.c                 | 2 +-
 src/gva-wnck.h                 | 2 +-
 src/main.c                     | 2 +-
 55 files changed, 59 insertions(+), 55 deletions(-)

commit af97b22596ea34d48e0278edcffd099875a9fd9e
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Nov 21 12:30:56 2008 +0000

    2008-11-21  Matthew Barnes  <mbarnes@redhat.com>
    
    	* NEWS: Update for 0.6.5

 ChangeLog |  4 ++++
 NEWS      | 12 ++++++++++++
 README    |  4 ++--
 3 files changed, 18 insertions(+), 2 deletions(-)

commit 3df0a3e9d6e2ce15d93ede5af56f210606984a32
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Nov 21 01:32:23 2008 +0000

    2008-11-20  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-audit.c (audit_build_model):
    	Fix a crash that occurs when the first audited romset is bad,
    	which causes an unsigned integer to rollover.  (SF #2314490,
    	Daniel Rammelt)

 ChangeLog       |  7 +++++++
 src/gva-audit.c | 12 ++++++++----
 2 files changed, 15 insertions(+), 4 deletions(-)

commit 273567262107f8c16a3908ddfa8b1c578e280088
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Nov 20 03:38:45 2008 +0000

    2008-11-19  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-process.c (process_debug_message):
    	New function prints communication between GVA and MAME as a
    	debug message.
    
    	* src/gva-process.c (gva_process_write_stdin),
    	(gva_process_write_stdout), (gva_process_write_stderr):
    	Call process_debug_message() if the GVA_DEBUG_IO flag is set.
    
    	* src/gva-mame-process.c (mame_process_exited),
    	(gva_mame_process_spawn):
    	Include the process ID in the debug message.
    
    	* src/gva-util.c (gva_get_debug_flags):
    	* src/gva-util.h (GvaDebugFlags):
    	Add GVA_DEBUG_IO flag, which generates verbose debug output.

 ChangeLog                         | 18 ++++++++++++++++++
 docs/reference/tmpl/gva-util.sgml |  1 +
 src/gva-mame-process.c            | 13 +++++++++----
 src/gva-process.c                 | 36 ++++++++++++++++++++++++++++++++++--
 src/gva-util.c                    |  3 ++-
 src/gva-util.h                    | 11 +++++++----
 6 files changed, 71 insertions(+), 11 deletions(-)

commit 6917e643427d38b2c5f2f02f80bdedec145c1258
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Oct 8 02:41:13 2008 +0000

    2008-10-07  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac: Post-release version bump.
    
    	* src/gva-tree-view.c (gva_tree_view_update):
    	When switching to the Search Results view with no results,
    	automatically show the search entry.

 ChangeLog           |  8 ++++++++
 configure.ac        |  2 +-
 src/gva-tree-view.c | 12 ++++++++++++
 3 files changed, 21 insertions(+), 1 deletion(-)

commit b90ae8316ddc6454408ffb16e04978b073ff2a0f
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Sep 27 21:41:08 2008 +0000

    2008-09-27  Matthew Barnes  <mbarnes@redhat.com>
    
    	* NEWS: Update for 0.6.4
    
    	* data/gnome-video-arcade.glade:
    	Add a mute button to the top-right corner of the main window.
    
    	* data/gnome-video-arcade.schemas:
    	Add sound-muted key.
    
    	* docs/reference/gnome-video-arcade.types:
    	* docs/reference/gnome-video-arcade-docs.sgml:
    	* docs/reference/gnome-video-arcade-sections.txt:
    	Add developer documentation for GvaMuteButton.
    
    	* src/Makefile.am:
    	Add gva-mute-button.[ch].
    
    	* src/gva-common.h:
    	Add GVA_GCONF_SOUND_MUTED_KEY.
    
    	* src/gva-db.c (db_parser_start_element_game):
    	Fix a compiler error when CATEGORY_FILE is not defined.
    
    	* src/gva-main.c (gva_main_init):
    	Bind the mute button to the "sound-muted" GConf key.
    
    	* src/gva-mame.h (gva_mame_supports_sound):
    	New macro returns TRUE if MAME supports the -sound option.
    
    	* src/gva-mame-common.c (gva_mame_run_game), (gva_mame_record_game),
    	(gva_mame_playback_game):
    	Append a "-sound" or "-nosound" command-line argument depending on
    	the state of the mute button.
    
    	* src/gva-mute-button.c:
    	* src/gva-mute-button.h:
    	New source files implement a button that can toggle between an
    	"audio-volume-muted" and "audio-volume-high" icon.

 ChangeLog                                      |  40 ++++
 NEWS                                           |   5 +-
 README                                         |   4 +-
 configure.ac                                   |   2 +-
 data/gnome-video-arcade.glade                  | 251 ++++++++++++++-----------
 data/gnome-video-arcade.schemas                |  12 ++
 docs/reference/Makefile.am                     |   1 +
 docs/reference/gnome-video-arcade-docs.sgml    |   1 +
 docs/reference/gnome-video-arcade-sections.txt |  22 +++
 docs/reference/gnome-video-arcade.types        |   2 +
 docs/reference/tmpl/gva-mame.sgml              |   7 +
 docs/reference/tmpl/gva-mute-button.sgml       |  56 ++++++
 maint/Makefile.am                              |   6 +-
 maint/gva.xml                                  |   7 +
 maint/widget-gva-mute-button.png               | Bin 0 -> 898 bytes
 po/ChangeLog                                   |   4 +
 po/POTFILES.in                                 |   1 +
 src/Makefile.am                                |   2 +
 src/gva-common.h                               |   1 +
 src/gva-db.c                                   |   5 +-
 src/gva-main.c                                 |  10 +-
 src/gva-mame-common.c                          |  35 ++++
 src/gva-mame.h                                 |  14 +-
 src/gva-mute-button.c                          | 242 ++++++++++++++++++++++++
 src/gva-mute-button.h                          |  81 ++++++++
 src/gva-ui.c                                   |   2 +
 src/gva-ui.h                                   |  12 +-
 27 files changed, 698 insertions(+), 127 deletions(-)

commit 57a92cde3beabad6e0c89ba71e478e10794a2082
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Jul 19 10:18:16 2008 +0000

    2008-07-19  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac: Post-release version bump.
    
    	* data/gnome-video-arcade.ui:
    	* src/gva-columns.c (columns_show_popup_menu),
    	(columns_button_press_event_cb), (columns_popup_menu_cb),
    	(columns_setup_popup_menu), (gva_columns_load):
    	* src/gva-tree-view.c (tree_view_show_popup_menu):
    	Move the add/remove column popup menu items to a new popup menu
    	that's triggered by right-clicking on the column headers in the
    	game list.  Thanks to Jonathan Blandford for showing me how.
    
    	* src/gva-ui.c (gva_ui_add_column_actions):
    	Add "add-column" actions to "column-popup" menu.

 ChangeLog                  | 16 +++++++++
 NEWS                       | 10 ++++++
 configure.ac               |  2 +-
 data/gnome-video-arcade.ui |  3 +-
 src/gva-columns.c          | 82 +++++++++++++++++++++++++++++++++++++++++++---
 src/gva-tree-view.c        | 23 -------------
 src/gva-ui.c               |  2 +-
 7 files changed, 108 insertions(+), 30 deletions(-)

commit f4e2341c895c3fc70ed96809981d5fbef65b8d8a
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jun 29 17:54:00 2008 +0000

    2008-06-29  Matthew Barnes  <mbarnes@redhat.com>
    
    	* NEWS: Update for 0.6.3

 ChangeLog                                      | 4 ++++
 NEWS                                           | 4 +++-
 docs/reference/gnome-video-arcade-sections.txt | 2 +-
 docs/reference/tmpl/gva-properties.sgml        | 4 ++--
 src/gva-properties.h                           | 2 +-
 src/gva-tree-view.c                            | 1 -
 6 files changed, 11 insertions(+), 6 deletions(-)

commit 1b08f0dd4b4cd6c81946392a6e0af98df9367cc7
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jun 29 11:44:26 2008 +0000

    2008-06-29  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac:
    	Add a summary message to the end of configuration output.
    	Note, not showing Glade Catalog because that's for me only.

 ChangeLog    |  6 ++++++
 configure.ac | 11 +++++++++++
 2 files changed, 17 insertions(+)

commit 7cf17c2bbff5aa558f45847784936220bfa48947
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Jun 28 23:50:42 2008 +0000

    2008-06-28  Matthew Barnes  <mbarnes@redhat.com>
    
    	* docs/reference/gnome-video-arcade-sections.txt:
    	Add new symbols to the developer documentation.
    
    	* src/gva-db.c (gva_db_get_table):
    	Allow the output arguments to be NULL.  This is more convenient
    	for callers if they don't need all the output values.
    
    	* src/main.c (warn_if_no_roms):
    	* src/gva-play-back.c (play_back_add_input_file):
    	Take advantage of this in calls to gva_db_get_table().
    
    	* src/gva-properties.c:
    	Modify the SELECT_PARENT/CLONES queries to also return whether the
    	game is available.  properties_add_game_label() will use this to
    	decide what kind of widget to create -- a label or a link label.
    
    	* src/gva-properties.c (gva_properties_show_game):
    	Move the update logic from properties_update_timeout_cb() to this
    	new function.  This allows us to bypass the "tree view selection
    	changed" delay when the user clicks on a link label.
    
    	* src/gva-tree-view.c (gva_tree_view_set_selected_game):
    	If the requested game is not visible in the current view, unselect
    	all rows rather than arbitrarily selecting the first row.

 ChangeLog                                      |  27 ++++++
 docs/reference/gnome-video-arcade-sections.txt |   1 +
 docs/reference/tmpl/gva-properties.sgml        |   8 ++
 src/gva-db.c                                   |  32 ++++---
 src/gva-play-back.c                            |   5 +-
 src/gva-properties.c                           | 116 +++++++++++++++----------
 src/gva-properties.h                           |   1 +
 src/gva-tree-view.c                            |  28 +++---
 src/main.c                                     |   3 +-
 9 files changed, 144 insertions(+), 77 deletions(-)

commit 613536e20ae397451bf5945248037db52993d550
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Jun 28 13:59:29 2008 +0000

    2008-06-28  Matthew Barnes  <mbarnes@redhat.com>
    
    	* docs/reference/gnome-video-arcade-sections.txt:
    	Add new symbols to the developer documentation.
    
    	* src/gva-properties.c (properties_scroll_to_top):
    	Rename function from properties_technical_scroll_to_top().
    	Scroll both the Technical and History tabs to the top.
    
    	* src/gva-ui.h:
    	Add GVA_WIDGET_PROPERTIES_HISTORY_SCROLLED_WINDOW.

 ChangeLog                                      | 12 ++++++++++++
 docs/reference/gnome-video-arcade-sections.txt |  1 +
 docs/reference/tmpl/gva-link-button.sgml       |  3 +--
 src/gva-link-button.h                          |  2 +-
 src/gva-properties.c                           | 13 +++++++++----
 src/gva-ui.h                                   |  2 ++
 6 files changed, 26 insertions(+), 7 deletions(-)

commit bceda8da618b9c4a027ab9b59c0b3775a044d4e2
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Jun 28 00:14:49 2008 +0000

 docs/reference/tmpl/gva-link-button.sgml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

commit 69f24e290bdfbd1ecd564492ab9385461e6b940a
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Jun 28 00:07:59 2008 +0000

    2008-06-27  Matthew Barnes  <mbarnes@redhat.com>
    
    	* README: List intltool as a dependency.
    
    	* data/gnome-video-arcade.glade:
    	Add an information icon to the Audit dialog.
    	Move parents to the bottom of the Technical Properties tab.
    
    	* docs/reference/gnome-video-arcade-sections.txt:
    	Add new symbols to the developer documentation.
    
    	* src/gva-properties.c (properties_technical_scroll_to_top):
    	New function scrolls the Technical Properties viewport to the top.

 ChangeLog                                      |  14 ++
 README                                         |   6 +
 data/gnome-video-arcade.glade                  | 180 +++++++++++++++----------
 docs/reference/gnome-video-arcade-sections.txt |   1 +
 docs/reference/tmpl/gva-properties.sgml        |   8 ++
 src/gva-properties.c                           |  28 ++++
 src/gva-properties.h                           |   1 +
 7 files changed, 167 insertions(+), 71 deletions(-)

commit 5da673fe01da0e6e8a6891c83844541238232f5a
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Jun 26 02:21:51 2008 +0000

    Missed a few things in the developer documentation.

 docs/reference/gnome-video-arcade-sections.txt |  7 +++++
 docs/reference/gnome-video-arcade.types        |  2 ++
 docs/reference/tmpl/gva-link-button.sgml       | 36 ++++++++++++++++++++++++++
 3 files changed, 45 insertions(+)

commit ff7bff09059ef8ee8780940bddd473f516545371
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Jun 26 01:51:30 2008 +0000

    2008-06-25  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.glade:
    	Move clones to the bottom of the Technical Properties tab.
    
    	* docs/reference/gnome-video-arcade-sections.txt:
    	Add new symbols to the developer documentation.
    
    	* maint/Makefile.am:
    	* maint/gva.xml:
    	Create a Glade catalog for GvaLinkButton.
    
    	* src/Makefile.am:
    	Add gva-link-button.[ch].
    
    	* src/gva-link-button.c:
    	* src/gva-link-button.h:
    	New subclass of GtkLinkButton.  Works the same but eliminates the
    	shadow and extra padding around the button label.
    
    	* src/gva-properties.c (properties_label_clicked_cb),
    	(properties_add_game_label), (properties_update_clones):
    	Add parent/clone information to the Technical Properties tab.
    	Games that are present in the current main window view look like
    	hypertext links.  Clicking one will jump to that game in the main
    	window and consequently update the Properties dialog.
    
    	* gva-ui.h:
    	More widget macros.

 ChangeLog                                      |  30 +++++
 NEWS                                           |   9 ++
 README                                         |   4 +-
 data/gnome-video-arcade.glade                  |  55 ++++++--
 docs/reference/Makefile.am                     |   1 +
 docs/reference/gnome-video-arcade-docs.sgml    |   1 +
 docs/reference/gnome-video-arcade-sections.txt |  20 ++-
 maint/Makefile.am                              |   7 +-
 maint/gva.xml                                  |   3 +
 maint/widget-gva-link-button.png               | Bin 0 -> 150 bytes
 src/Makefile.am                                |   2 +
 src/gva-link-button.c                          | 122 ++++++++++++++++++
 src/gva-link-button.h                          |  76 +++++++++++
 src/gva-properties.c                           | 171 ++++++++++++++++++++++++-
 src/gva-ui.h                                   |  10 ++
 15 files changed, 491 insertions(+), 20 deletions(-)

commit ea421484000db61eab5ba4eff62354d3836e7498
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Jun 25 14:06:28 2008 +0000

    2008-06-25  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac:
    	AC_SUBST(abs_top_builddir)
    
    	* data/gnome-video-arcade.glade:
    	Add a frame and event box around the status area in the Technical
    	Properties tab.  The event box allows us to color the background
    	to make it stand out more.  Also add some placeholder widgets for
    	displaying parent/clone relationships in the Technical Properties.
    	Not even remotely complete yet.
    
    	* src/gva-properties.c (properties_update_status):
    	Set visibility of the new GtkFrame in the status area.
    	Make the status icon smaller.  It now matches the tooltip.
    
    	* src/gva-properties.c (gva_properties_init):
    	Dig up the tooltip background color from GtkSettings and set
    	the status area background color to match.  Looks better.
    
    	* src/gva-ui.h:
    	Add macros to fetch the status GtkEventBox and GtkFrame in the
    	Technical Properties tab.

 ChangeLog                     |  24 ++++
 configure.ac                  |   2 +
 data/gnome-video-arcade.glade | 307 +++++++++++++++++++++++++-----------------
 src/gva-properties.c          |  19 ++-
 src/gva-ui.c                  |   1 +
 src/gva-ui.h                  |   6 +-
 6 files changed, 232 insertions(+), 127 deletions(-)

commit bb24f2f2468f661b8ae27839f5f3960c09571b19
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jun 16 21:52:40 2008 +0000

    2008-06-16  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac: Post-release version bump.
    
    	* docs/reference/database-schema.xml:
    	Add documentation for the 'window' table.
    
    	* src/Makefile.am:
    	Add TOPSRCDIR definition to AM_CPPFLAGS.
    
    	* src/gva-main.c (gva_main_init_search_completion):
    	Fix a compilation error when building against GTK+ >= 2.13.1.
    
    	* src/gva-util.c (gva_file_data_file):
    	When running directly from the source tree, use TOPSRCDIR
    	rather than '..' when constructing the file path.

 ChangeLog                          | 17 +++++++++++++++++
 configure.ac                       |  2 +-
 docs/reference/database-schema.xml | 13 +++++++++++++
 src/Makefile.am                    |  1 +
 src/gva-main.c                     |  4 ++++
 src/gva-util.c                     |  2 +-
 6 files changed, 37 insertions(+), 2 deletions(-)

commit 3e1b5843cdf716f96a861d57fa6728a9a974961a
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jun 16 19:46:04 2008 +0000

    2008-06-16  Matthew Barnes  <mbarnes@redhat.com>
    
    	* NEWS: Update for 0.6.2

 ChangeLog | 4 ++++
 NEWS      | 5 +++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit 5c4c0ed73242bc9089bd410b0429f61319243547
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat May 31 23:52:29 2008 +0000

    2008-05-31  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac:
    	Make libwnck optional.  Use --without-wnck to disable it.
    
    	* docs/reference/gnome-video-arcade-sections.txt:
    	Add new symbols to the developer documentation.
    
    	* src/gva-main.c (gva_main_cursor_busy), (gva_main_cursor_normal):
    	New functions set the mouse cursor to busy or normal, respectively.
    
    	* src/gva-main.c (gva_main_progress_bar_show),
    	(gva_main_progress_bar_hide):
    	* src/gva-tree-view.c (gva_tree_view_run_query):
    	Let gva_main_cursor_busy() and gva_main_cursor_normal() manage the
    	mouse cursor.  Simplifies the logic.
    
    	* src/gva-mame.h (gva_mame_supports_maximize):
    	New macro returns TRUE if MAME supports the -maximize option.
    
    	* src/gva-mame-common.c (gva_mame_run_game), (gva_mame_record_game),
    	(gva_mame_playback_game):
    	Add a -nomaximize argument if supported and we're linking against
    	libwnck.  Allowing MAME to maximize the window seems to confuse the
    	window management logic and/or libwnck for some reason.
    
    	* src/gva-wnck.c (wnck_weak_notify_cb), (wnck_window_opened_cb),
    	(gva_wnck_listen_for_new_window):
    	Set the mouse cursor to busy until the game window appears.

 ChangeLog                                      | 30 ++++++++++++++
 config.h.in                                    |  3 ++
 configure.ac                                   | 12 ++++++
 docs/reference/gnome-video-arcade-sections.txt |  3 ++
 docs/reference/tmpl/gva-main.sgml              | 14 +++++++
 docs/reference/tmpl/gva-mame.sgml              |  7 ++++
 src/gva-main.c                                 | 56 +++++++++++++++++---------
 src/gva-main.h                                 |  2 +
 src/gva-mame-common.c                          | 15 +++++++
 src/gva-mame.h                                 | 12 ++++++
 src/gva-tree-view.c                            | 12 +-----
 src/gva-wnck.c                                 | 12 ++++++
 12 files changed, 150 insertions(+), 28 deletions(-)

commit 27bc71fd6d82154fc5a06dbfdca320b57779ac86
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri May 30 22:57:09 2008 +0000

    2008-05-30  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac:
    	Require libwnck-1.0 >= 2.16.0.
    	TODO: Make this optional before releasing.
    
    	* README:
    	Mention libwnck as an optional dependency.
    
    	* data/gnome-video-arcade.glade:
    	Don't set a title in the audit results window.
    
    	* docs/reference/Makefile.am:
    	Add WNCK_CFLAGS to INCLUDES.
    	Add WNCK_LIBS to GTKDOC_LIBS.
    	Add gva-wnck.o to GTKDOC_LIBS.
    
    	* docs/reference/gnome-video-arcade-docs.sgml:
    	* docs/reference/gnome-video-arcade-sections.txt:
    	Add new symbols to the developer documentation.
    
    	* src/Makefile.am:
    	Add gva-wnck.[ch].
    	Add WNCK_CFLAGS to AM_CFLAGS.
    	Add WNCK_LIBS to gnome_video_arcade_LDADD.
    
    	* src/gva-db.c (gva_db_create_tables):
    	Add a "window" table to hold game window geometry.
    
    	* src/gva-db.c (gva_db_needs_rebuilt):
    	Rebuild the database if the categories file changed.
    
    	* src/gva-process.c (gva_process_get_pid):
    	New function returns the process ID of a GvaProcess.
    
    	* src/gva-wnck.c (gva_wnck_listen_for_new_window):
    	New function implements "spatial" MAME windows using libwnck.
    
    	* src/gva-ui.c (action_play_back_cb), (action_record_cb),
    	(action_start_cb):
    	Call gva_wnck_listen_for_new_window() immediately after
    	successfully spawning a MAME process.

 ChangeLog                                      |  49 +++-
 NEWS                                           |  18 +-
 README                                         |  16 ++
 configure.ac                                   |   5 +
 data/gnome-video-arcade.glade                  | 171 +++++++-------
 docs/reference/Makefile.am                     |   7 +-
 docs/reference/gnome-video-arcade-docs.sgml    |   1 +
 docs/reference/gnome-video-arcade-sections.txt |   5 +
 docs/reference/tmpl/gva-process.sgml           |   9 +
 docs/reference/tmpl/gva-wnck.sgml              |  28 +++
 src/Makefile.am                                |   7 +-
 src/gva-db.c                                   |  18 ++
 src/gva-process.c                              |  16 ++
 src/gva-process.h                              |   1 +
 src/gva-ui.c                                   |  10 +
 src/gva-wnck.c                                 | 311 +++++++++++++++++++++++++
 src/gva-wnck.h                                 |  35 +++
 17 files changed, 611 insertions(+), 96 deletions(-)

commit d300f6eca830f7c596a07e77a4cd45f599c1f744
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed May 28 13:13:02 2008 +0000

    2008-05-28  Matthew Barnes  <mbarnes@redhat.com>
    
    	* docs/references/gnome-video-arcade-sections.txt:
    	Add new symbols to the developer documentation.
    
    	* src/gva-mame-common.c (gva_mame_get_config_value):
    	* src/gva-mame-sdlmame.c (gva_mame_get_version),
    	(gva_mame_get_total_supported):
    	* src/gva-mame-xmame.c (gva_mame_get_version),
    	(gva_mame_get_total_supported):
    	Prevent passing a NULL string array to g_strv_length().
    
    	* src/gva-util.c (gva_spawn_with_pipes):
    	New convenience function spawns a process from a command line
    	string and opens stdin/stdout/stderr pipes.
    
    	* src/gva-process.c (gva_process_spawn):
    	* src/gva-mame-process.c (gva_mame_process_spawn):
    	Call gva_spawn_with_pipes() to actually spawn the process.
    
    	* src/gva-mame-process.c (mame_process_exited):
    	The old logic was never used, and was broken anyway.  Rewrite the
    	method to simply emit a debugging message showing the exit status.
    
    	* src/gva-mame-process.c (gva_mame_process_new):
    	New function creates a new GvaMameProcess instance.

 ChangeLog                                      | 27 ++++++++++
 docs/reference/gnome-video-arcade-sections.txt |  2 +
 docs/reference/tmpl/gva-mame-process.sgml      | 13 +++++
 docs/reference/tmpl/gva-util.sgml              | 14 +++++
 src/gva-mame-common.c                          |  2 +-
 src/gva-mame-process.c                         | 75 ++++++++++++++++++++------
 src/gva-mame-process.h                         |  5 ++
 src/gva-mame-sdlmame.c                         |  4 +-
 src/gva-mame-xmame.c                           |  4 +-
 src/gva-process.c                              | 21 ++------
 src/gva-util.c                                 | 45 ++++++++++++++++
 src/gva-util.h                                 |  6 +++
 12 files changed, 180 insertions(+), 38 deletions(-)

commit bc7868a81822dc90b13b5351cac6191fa614280c
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue May 27 23:49:16 2008 +0000

    2008-05-27  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-mame-common.c (gva_mame_get_search_paths):
    	Revert the previous commit.  It didn't work right.
    
    	* src/main.c (main):
    	The correct solution is to change our working directory to that
    	which contains the MAME executable.  Documented the rationale in
    	the code, since otherwise it seems like an odd thing to do.

 ChangeLog             | 10 ++++++++++
 src/gva-mame-common.c | 30 +-----------------------------
 src/main.c            | 11 +++++++++++
 3 files changed, 22 insertions(+), 29 deletions(-)

commit 958ddf523b1496967593c09763f9afe8eca6a431
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue May 27 20:27:27 2008 +0000

    2008-05-27  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac: Post-release version bump.
    
    	* src/gva-mame-common.c (gva_mame_get_search_paths):
    	Convert relative paths to absolute paths, using the location of
    	the MAME executable as the base directory.  Should allow GNOME
    	Video Arcade to work with the default SDLMAME configuration.

 ChangeLog             |  9 +++++++++
 README                |  4 ++--
 configure.ac          |  2 +-
 src/gva-mame-common.c | 30 +++++++++++++++++++++++++++++-
 4 files changed, 41 insertions(+), 4 deletions(-)

commit 117366f7ff2106536dc938cac52ffc6bf9afa50d
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun May 25 06:04:58 2008 +0000

    2008-05-25  Matthew Barnes  <mbarnes@redhat.com>
    
    	* NEWS: Update for 0.6.1.1
    
    	* src/gva-main.c (gva_main_get_last_selected_match):
    	Fix a crash reported by Damion Manuel and Taylor Easum in the SF.net
    	Help forum.  I didn't take into account the fact that the GConf key
    	may not be set, in which case the string values will remain NULL.
    	Rewrote the logic to handle that case.
    
    	Unfortunately the bug is pretty severe and requires a new release.

 ChangeLog      | 12 ++++++++++++
 NEWS           | 10 ++++++++++
 README         |  4 ++--
 configure.ac   |  2 +-
 src/gva-main.c | 40 +++++++++++++++++++++++-----------------
 5 files changed, 48 insertions(+), 20 deletions(-)

commit 68eb8dbb729baeb60f429ae56707703517e7711a
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed May 21 18:03:43 2008 +0000

    2008-05-21  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac: Post-release version bump.
    
    	* src/gva-db.c (db_parser_start_element_game):
    	* src/gva-process.c (gva_process_spawn):
    	Fix a couple memory leaks.

 ChangeLog         | 8 ++++++++
 README            | 4 ++--
 configure.ac      | 2 +-
 src/gva-db.c      | 2 ++
 src/gva-process.c | 2 ++
 5 files changed, 15 insertions(+), 3 deletions(-)

commit 433a85f1ffd408c2539eddbb7119291ac3578bd1
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat May 17 19:31:07 2008 +0000

    2008-05-17  Matthew Barnes  <mbarnes@redhat.com>
    
    	* NEWS: Update for 0.6.1
    
    	* docs/references/gnome-video-arcade-sections.txt:
    	Add new symbols to the developer documentation.
    
    	* src/main.c (start):
    	Remove the status bar logic.
    
    	* src/gva-tree-view.c (gva_tree_view_update_status_bar):
    	New function shows the MAME version and game count in the status
    	bar of the main window.
    
    	* src/gva-tree-view.c (gva_tree_view_init),
    	(gva_tree_view_run_query):
    	Call gva_tree_view_update_status_bar().

 ChangeLog                                      | 18 ++++++
 NEWS                                           |  3 +-
 docs/reference/gnome-video-arcade-sections.txt |  1 +
 docs/reference/tmpl/gva-tree-view.sgml         |  7 +++
 src/gva-tree-view.c                            | 80 ++++++++++++++++++++++++++
 src/gva-tree-view.h                            |  1 +
 src/main.c                                     | 12 ----
 7 files changed, 109 insertions(+), 13 deletions(-)

commit 6ebdee0d37bbd20df694aea36281d72c7a870dd3
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat May 17 13:47:26 2008 +0000

    2008-05-17  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-tree-view.c (tree_view_show_popup_menu):
    	* src/gva-ui.c (gva_ui_add_column_actions):
    	The add/remove column menu items look better without quotes.

 ChangeLog           | 6 ++++++
 src/gva-tree-view.c | 2 +-
 src/gva-ui.c        | 2 +-
 3 files changed, 8 insertions(+), 2 deletions(-)

commit 6907fec3fa15bb2b8e3a6b9a8418ef994a83b85f
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat May 17 13:41:00 2008 +0000

    2008-05-17  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.ui:
    	Add an "add-column" placeholder and a "remove-column" menu item to
    	the popup menu.
    
    	* docs/references/gnome-video-arcade-sections.txt:
    	Add new symbols to the developer documentation.
    
    	* src/gva-column-manager.c (column_manager_hide_selected),
    	(column_manager_show_selected):
    	Just set the column visbility.  Signal callbacks will take care of
    	updating the show/hide buttons and the toggle cell renderer.
    
    	* src/gva-column-manager.c (column_manager_row_changed_cb):
    	New "row-changed" signal handler updates the show/hide button
    	sensitivity when the selected tree model row changes.
    
    	* src/gva-column-manager.c (column_manager_notify_visible_cb):
    	New "notify::visible" signal handler emits a "row-changed" signal
    	when a game list column's visibility changes.
    
    	* src/gva-column-manager.c (column_manager_update_view):
    	Connect the new signal handlers mentioned above.
    
    	* src/gva-tree-view.c (tree_view_show_popup_menu):
    	Embed the selected game list column in the main tree view widget
    	under the "popup-menu-column" key.
    	Update the "remove-column" action's label and tooltip to reflect
    	the selected game list column.
    
    	* src/gva-tree-view.c (gva_tree_view_init):
    	Call gva_ui_add_column_actions() after loading the columns.
    
    	* src/gva-tree-view.c (gva_tree_view_button_press_event_cb),
    	(gva_tree_view_popup_menu_cb):
    	Pass the selected game list column to tree_view_show_popup_menu().
    
    	* src/gva-ui.c (action_add_column_cb):
    	Callback for any of the "add-column-xxx" actions.  Extracts the
    	selected game list column via the "popup-menu-column" key in the
    	tree view, moves the desired column after the selected column,
    	and makes the desired column visible.
    
    	* src/gva-ui.c (action_remove_column_cb):
    	Callback for the "remove-column" action.  Extracts the selected
    	game list column via the "popup-menu-column" key in the tree view,
    	and makes the selected column invisible.
    
    	* src/gva-ui.c (gva_ui_add_column_actions):
    	Adds an "add-column-xxx" action for each of the columns in the
    	given tree view, whether visible or invisible (where "xxx" is the
    	column's name).  This is called during initialization of the main
    	tree view, after the columns are loaded.

 ChangeLog                                      |  55 +++++++++
 NEWS                                           |   1 +
 data/gnome-video-arcade.ui                     |   4 +
 docs/reference/gnome-video-arcade-sections.txt |   2 +
 docs/reference/tmpl/gva-ui.sgml                |  15 +++
 src/gva-column-manager.c                       |  91 ++++++++++-----
 src/gva-tree-view.c                            |  40 ++++++-
 src/gva-ui.c                                   | 151 ++++++++++++++++++++++++-
 src/gva-ui.h                                   |   2 +
 9 files changed, 326 insertions(+), 35 deletions(-)

commit 7ae8e4d8c70700eee2e0c3e8dba7d7908498f1b8
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun May 11 23:51:58 2008 +0000

    2008-05-11  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-game-store.c (gva_game_store_new_from_query):
    	Use gtk_tree_store_set_valuesv() to cut model construction time
    	almost in half.  On my machine, construction of the Available
    	Games model (6255 rows) dropped from ~5 seconds to ~2.75 seconds.

 ChangeLog            |  7 +++++++
 src/gva-game-store.c | 14 +++++++-------
 2 files changed, 14 insertions(+), 7 deletions(-)

commit 0723c7d0500a9866c406a6c81ab57717379a5866
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Apr 29 03:32:10 2008 +0000

    Fix a missing tag.

 data/gnome-video-arcade.schemas | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit e008445ccb9319ae2139b12091ce2cde8e388229
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Apr 28 16:30:22 2008 +0000

    2008-04-28  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac: Post-release version bump.
    
    	* data/gnome-video-arcade.schemas:
    	Add selected-match key.
    
    	* docs/reference/gnome-video-arcade-sections.txt:
    	Add new symbols to the developer documentation and alphabetize
    	the sections.  Yes, I'm that anal.
    
    	* src/gva-common.h:
    	Add GVA_GCONF_SELECTED_MATCH_KEY.
    
    	* src/gva-main.c (gva_main_init_search_completion):
    	Add a "column name" column to the completion model.
    	Always use enum values when referring to columns.
    
    	* src/gva-main.c (gva_main_execute_search):
    	New function handles all the high-level details of executing a
    	search in the main window.  Note this function does not interact
    	directly with the games database.  The actual database search is
    	triggered by simply switching to or forcing a refresh on the
    	Search Results view.
    
    	* src/gva-main.c (gva_main_get_last_selected_match),
    	(gva_main_set_last_selected_match):
    	New functions get/set the new "selected-match" GConf key.
    	The get function also validates the strings (somewhat) before
    	returning them.
    
    	* src/gva-main.c (gva_main_search_entry_activate_cb):
    	Most of the logic here has been outsourced.  The function now
    	just calls gva_main_set_last_selected_match(NULL, NULL) and
    	gva_main_execute_search().
    
    	* src/gva-main.c (main_entry_completion_match_selected_cb):
    	Instead of copying the completion match to the search entry and
    	activating it, save the matched text and associated column name
    	to the new "selected-match" GConf key and execute a search.
    
    	* src/gva-main.c (gva_main_get_last_search):
    	Rename the function to gva_main_get_last_search_text().
    
    	* src/gva-tree-view.c (tree_view_add_search_expression):
    	New function adds an SQL "where" expression to a GString.  This
    	used to reside inside gva_tree_view_update() but the logic is a
    	bit more complicated now so it deserves its own function.

 ChangeLog                                      |  49 +++
 NEWS                                           |  10 +
 README                                         |   4 +-
 configure.ac                                   |   2 +-
 data/gnome-video-arcade.schemas                |  19 +-
 docs/reference/gnome-video-arcade-sections.txt | 393 +++++++++++++------------
 docs/reference/tmpl/gva-main.sgml              |  30 +-
 docs/reference/tmpl/gva-tree-view.sgml         |   2 +-
 src/gva-common.h                               |   1 +
 src/gva-main.c                                 | 256 +++++++++++-----
 src/gva-main.h                                 |   9 +-
 src/gva-tree-view.c                            |  77 +++--
 src/gva-tree-view.h                            |   2 +-
 13 files changed, 550 insertions(+), 304 deletions(-)

commit c3fb73e5af40a2e23ca7dc52b0d5ee40eb119d75
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Apr 19 21:46:17 2008 +0000

    2008-04-19  Matthew Barnes  <mbarnes@redhat.com>
    
    	* NEWS: Update for 0.6.0
    
    	* src/gva-columns.c (columns_tooltip_input_players):
    	New tooltip callback for the Players column.

 ChangeLog         |  7 +++++++
 NEWS              |  2 +-
 src/gva-columns.c | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 3 files changed, 66 insertions(+), 2 deletions(-)

commit 211f34c12cf31bae146397de396f0692b65f1d15
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Apr 17 00:35:43 2008 +0000

    2008-04-16  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.glade:
    	Add a couple more warning labels to the Technical tab.
    
    	* docs/reference/gnome-video-arcade-sections.txt:
    	Add new symbols to the developer documentation.
    
    	* src/gva-columns.c (columns_driver_status_set_properties):
    	Be more conservative about showing the error icon.  Only show it
    	if the game doesn't work or if the protection is not emulated.
    
    	* src/gva-columns.c (columns_tooltip_driver_status):
    	* src/gva-properties.c (properties_update_status):
    	Same as above.  Also, add stronger warnings for when we /do/ show
    	the error icon.
    
    	* src/gva-ui.h:
    	Add more GVA_WIDGET_PROPERTIES_xxx widgets.

 ChangeLog                                      |  20 ++
 data/gnome-video-arcade.glade                  | 223 ++++++++++++---------
 docs/reference/gnome-video-arcade-sections.txt |   5 +-
 src/gva-columns.c                              | 265 +++++++++++++++----------
 src/gva-properties.c                           |  32 ++-
 src/gva-ui.h                                   |  10 +-
 6 files changed, 344 insertions(+), 211 deletions(-)

commit f14985e543c092588b2fa36b4205be60c33db438
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Apr 15 18:59:06 2008 +0000

    2008-04-15  Matthew Barnes  <mbarnes@redhat.com>
    
    	* docs/reference/gnome-video-arcade-sections.txt:
    	Add new symbols to the developer documentation.
    
    	* src/gva-columns.c (columns_tooltip_driver_status):
    	Finish the tooltip; make the icon smaller.
    
    	* data/gnome-video-arcade.glade:
    	* src/gva-properties.c (properties_update_status):
    	Add a warning to the Technical tab if emulation is imperfect.
    	It's meant to look the same as the 'Status' column tooltip.
    
    	* src/gva-properties.c (properties_update_timeout_cb):
    	We're piling a lot of work on the Properties window.  Add a short
    	delay to the update to keep the tree view scrolling smoothly.
    
    	* src/gva-ui.h:
    	Add a bunch of GVA_WIDGET_PROPERITES_xxx_LABEL widgets.

 ChangeLog                                      |  20 ++
 data/gnome-video-arcade.glade                  | 292 +++++++++++++++++--------
 docs/reference/gnome-video-arcade-sections.txt |   7 +
 src/gva-columns.c                              |  36 +--
 src/gva-properties.c                           |  85 ++++++-
 src/gva-ui.h                                   |  14 ++
 6 files changed, 347 insertions(+), 107 deletions(-)

commit 4b3efe1ba997d4b376bb5a08610538abccee0005
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Apr 15 12:03:42 2008 +0000

    2008-04-15  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-columns.c (columns_tooltip_driver_status):
    	Start adding a fancy tooltip to the 'Status' column.
    	Not done with it yet, just committing progress so far.

 ChangeLog         |   6 +++
 src/gva-columns.c | 137 ++++++++++++++++++++++++++++++++++++++++++++++++++++--
 2 files changed, 139 insertions(+), 4 deletions(-)

commit 3dd7141d3c00516bb9300cf398e728348684fc48
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Apr 14 15:11:42 2008 +0000

    2008-04-14  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.schemas:
    	Add properties-page key.
    
    	* src/gva-common.h:
    	Add GVA_GCONF_PROPERTIES_PAGE_KEY.
    
    	* src/gva-properties.c (gva_properties_init):
    	Bind the "properties-page" GConf key to the Properties notebook.

 ChangeLog                       | 11 +++++++++++
 data/gnome-video-arcade.schemas | 12 ++++++++++++
 src/gva-common.h                |  1 +
 src/gva-properties.c            |  4 ++++
 4 files changed, 28 insertions(+)

commit 140c8d7a9d63cda6a93d0770b5af0fb7310806e4
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Apr 14 04:30:29 2008 +0000

    2008-04-14  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/main.c (start):
    	* src/gva-audit.c (audit_show_dialog):
    	* src/gva-game-store.c (gva_game_store_new_from_query):
    	* src/gva-tree-view.c (gva_tree_view_run_query):
    	Avoid crashing when the application is closed while it's busy doing
    	something.  This usually happens in places where we manually iterate
    	GTK's main loop.  The user closes the main window, destroying it and
    	taking most of the Glade-loaded widgets with it.  Then we return
    	from some function and attempt to fetch a destroyed widget, which
    	causes gva_ui_get_widget() to trip its non-NULL assertion.
    	Fortunately we can avoid this scenario by checking the return value
    	of gtk_main_iteration() or gtk_main_iteration_do(), which indicates
    	whether the application is shutting down.
    
    	* src/gva-mame-process.c (mame_process_check_for_error):
    	Use GVA_ERROR_MAME instead of GVA_ERROR_SYSTEM.

 ChangeLog              | 19 +++++++++++++++++++
 NEWS                   |  2 ++
 src/gva-audit.c        |  3 +++
 src/gva-game-store.c   |  3 ++-
 src/gva-mame-process.c |  2 +-
 src/gva-tree-view.c    | 12 +++++++++---
 src/main.c             | 31 +++++++++++++++----------------
 7 files changed, 51 insertions(+), 21 deletions(-)

commit 808743fa89b958c3b789e2e45afb265a6c30ca1b
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Apr 13 21:46:37 2008 +0000

    2008-04-13  Matthew Barnes  <mbarnes@redhat.com>
    
    	* docs/reference/gnome-video-arcade-sections.txt:
    	Add new symbols to the developer documentation.
    
    	* data/gnome-video-arcade.glade:
    	* src/gva-properties.c (properties_update_bios):
    	Add a BIOS section to the Technical Properties tab.
    
    	* src/gva-properties.c (properties_update_cpu),
    	(properties_update_sound), (properties_update_video):
    	Hide the entire section when there are no rows to display.
    	I've only actually seen this for sound, but might as well do it
    	for all sections.
    
    	* src/gva-ui.c:
    	Remove the GTK_CHECK_VERSION(2,12,0) since we require it now.
    
    	* src/gva-ui.h:
    	Add a bunch of GVA_WIDGET_PROPERITES_xxx_VBOX widgets.
    	Also add GVA_WIDGET_PROPERTIES_BIOS_LABEL.

 ChangeLog                                      |  22 +++
 data/gnome-video-arcade.glade                  | 213 +++++++++++++++----------
 docs/reference/gnome-video-arcade-sections.txt |   5 +
 src/gva-properties.c                           |  49 ++++++
 src/gva-ui.c                                   |   4 -
 src/gva-ui.h                                   |  10 ++
 6 files changed, 212 insertions(+), 91 deletions(-)

commit 0f9a1f2cec5d663494149e32df5382af4e081a80
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Apr 13 18:05:58 2008 +0000

    2008-04-13  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-properties.c (properties_cpu_description),
    	(properties_update_video):
    	Some minor simplifications having read the MAME source code.

 ChangeLog            |  6 ++++++
 src/gva-properties.c | 23 ++++++-----------------
 2 files changed, 12 insertions(+), 17 deletions(-)

commit 6034fed19ba73f58229c58e31adcbe0ee4103161
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Apr 13 15:44:28 2008 +0000

    2008-04-13  Matthew Barnes  <mbarnes@redhat.com>
    
    	** Add some basic information to the Technical Properties tab.
    
    	* data/gnome-video-arcade.glade:
    	Create an initial design for the Technical Properties tab.
    
    	* src/gva-db.c (db_parser_start_element), (db_parser_end_element):
    	Enable the 'chip' and 'display' table parsing routines.
    
    	* src/gva-properties.c (properties_update_cpu),
    	(properties_update_sound), (properties_update_video):
    	New functions populate labels in the 'CPU', 'Sound', and 'Video'
    	sections of the 'Technical' tab with hardware specifications for
    	the selected game.  The data attempts to match what MAME shows
    	on the initial screen when starting a game.

 ChangeLog                     |  17 ++
 NEWS                          |  15 +-
 data/gnome-video-arcade.glade | 468 ++++++++++++++++++++++++++++++++----------
 src/gva-db.c                  |  18 +-
 src/gva-properties.c          | 264 ++++++++++++++++++++++++
 5 files changed, 663 insertions(+), 119 deletions(-)

commit 0ce8b7261d3d973410ac24952f44d7136ac3aa8a
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Apr 12 22:51:08 2008 +0000

    2008-04-12  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac:
    	* Makefile.am:
    	Add a --with-glade-catalog configure option that determines whether
    	the Glade 3 catalog files get built and installed.  It used to be
    	based on whether maintainer mode was enabled, but that proved too
    	problematic.

 ChangeLog    |  9 +++++++++
 Makefile.am  |  2 +-
 configure.ac | 13 ++++++++++---
 3 files changed, 20 insertions(+), 4 deletions(-)

commit 770ca6d599429cbf8fc896e3821b8a4d675d392f
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Mar 26 17:47:37 2008 +0000

    2008-03-26  Matthew Barnes  <mbarnes@redhat.com>
    
    	* docs/reference/gnome-video-arcade-sections.txt:
    	Add GVA_GAME_STORE_COLUMN_BIOS to the developer documentation.
    
    	* src/gva-columns.c:
    	Add "BIOS" column that shows the name of the BIOS ROM set required
    	for a game, if any.  (e.g. "Neo-Geo")
    
    	* src/gva-db.c (SQL_CREATE_VIEW_AVAILABLE):
    	Form a "bios" column in the available view by doing a left join
    	on BIOS ROM sets (where isbios='yes').  This is getting to be a
    	pretty complex SELECT statement.
    
    	* src/gva-main.c (gva_main_search_query_tooltip_cb):
    	* src/gva-tree-view (gva_tree_view_update):
    	Add the "bios" column to the search criteria.
    	Add "BIOS Name" to the search entry tooltip.
    
    	* src/gva-game-store.c:
    	* src/gva-game-store.h:
    	Add GVA_GAME_STORE_COLUMN_BIOS.

 ChangeLog                               | 23 ++++++++++++++++
 NEWS                                    |  7 +++--
 docs/reference/tmpl/gva-game-store.sgml |  1 +
 src/gva-columns.c                       | 48 +++++++++++++++++++++++++++++++++
 src/gva-db.c                            |  5 +++-
 src/gva-game-store.c                    |  1 +
 src/gva-game-store.h                    |  3 +++
 src/gva-main.c                          | 12 +++++++--
 src/gva-tree-view.c                     |  5 ++--
 9 files changed, 98 insertions(+), 7 deletions(-)

commit 7c7da1ecaaf2185935fcf1cdae3bf8f2d66dce5c
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Mar 25 15:18:00 2008 +0000

    2008-03-25  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-tree-view.c (gva_tree_view_query_tooltip_cb):
    	Handle keyboard tooltips.  And just for my own reference,
    	keyboard tooltips are activiated/deactivated with Ctrl+F1.

 ChangeLog           |  6 ++++++
 src/gva-tree-view.c | 19 ++++++++++---------
 2 files changed, 16 insertions(+), 9 deletions(-)

commit 709763230c7fbe05396a25b0e2997734efdea5d4
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Mar 25 13:38:33 2008 +0000

    2008-03-25  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-db.c:
    	Store category information directly in the database instead of
    	dynamically looking it up in a GKeyFile each time it's needed.
    	Profiling suggests user-defined database functions are expensive,
    	and may be contributing to the performance issue when switching
    	to a view with a large number of games.  Category information
    	will be refreshed when the database is rebuilt.

 ChangeLog    | 10 +++++++++
 src/gva-db.c | 73 +++++++++++++++++++++++++-----------------------------------
 2 files changed, 40 insertions(+), 43 deletions(-)

commit 9d96ba48cce8676d055749bcc2aa1b41b73bd432
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Mar 25 01:08:57 2008 +0000

    2008-03-24  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-main.c (gva_main_search_entry_activate_cb):
    	After searching, focus the tree view and select a row.

 ChangeLog      |  5 +++++
 src/gva-main.c | 25 +++++++++++++++++++++++++
 2 files changed, 30 insertions(+)

commit bcfcecd4741ae5969ab76d5ac1f04977e158340f
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Mar 24 04:26:25 2008 +0000

 src/gva-ui.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

commit 4d61c871af845e1bbb6869aa27a2e19b7036d7af
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Mar 24 02:37:50 2008 +0000

    2008-03-23  Matthew Barnes  <mbarnes@redhat.com>
    
    	* docs/reference/gnome-video-arcade-sections.txt:
    	Add new symbols to the developer documentation.
    
    	* src/gva-db.c (db_function_match):
    	New function implements the SQLite MATCH operator.
    	Calls gva_search_collate_key() on the operands and does a
    	substring comparison.
    
    	* src/gva-columns.c:
    	Add a 'title' field to the column_info table so translated
    	column titles can be looked up easily.
    
    	* src/gva-columns.c (gva_columns_new_from_id):
    	Assign column titles here instead of in the factory functions.
    
    	* src/gva-columns.c (gva_columns_lookup_title):
    	New function... self-explanatory.
    
    	* src/gva-main.c (gva_main_init_search_completion):
    	Add a collation key field to the completion model for better
    	performance.  Use gva_columns_lookup_title() and get rid of
    	the silly column title hash table.
    
    	* src/gva-tree-view.c (tree_view_update):
    	Use MATCH instead of LIKE for fuzzy comparisons.
    
    	* src/gva-ui.c (action_search_cb):
    	Emit a "changed" signal on the search entry to start the
    	completion timeout.  The purpose is to show completions
    	automatically when we show the search entry with preset
    	text.
    
    	* src/gva-util.c (gva_normalize_for_search):
    	Rename the function to 'gva_search_collate_key'.

 ChangeLog                                      | 37 ++++++++++++
 docs/reference/gnome-video-arcade-sections.txt |  3 +-
 docs/reference/tmpl/gva-columns.sgml           |  9 +++
 docs/reference/tmpl/gva-util.sgml              |  2 +-
 src/gva-columns.c                              | 70 +++++++++++++++--------
 src/gva-columns.h                              |  1 +
 src/gva-db.c                                   | 39 +++++++++++++
 src/gva-main.c                                 | 78 ++++++++++++--------------
 src/gva-tree-view.c                            | 12 ++--
 src/gva-ui.c                                   |  1 +
 src/gva-util.c                                 | 17 +++---
 src/gva-util.h                                 |  2 +-
 12 files changed, 190 insertions(+), 81 deletions(-)

commit bb15a96ffd8647c9b7e68e12f64587c2e66024c6
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Mar 22 20:04:11 2008 +0000

    2008-03-22  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-db.c:
    	* docs/reference/database-schema.xml:
    	Support new display attributes in MAME 0.124: 'pixclock',
    	'htotal', 'hbend', 'hbstart', 'vtotal', 'vbend' and 'vbstart'
    	Also new display types: 'lcd' and 'unknown'

 ChangeLog                          |  8 ++++++++
 docs/reference/database-schema.xml | 11 +++++++++--
 src/gva-db.c                       | 39 ++++++++++++++++++++++++++++++++++++--
 3 files changed, 54 insertions(+), 4 deletions(-)

commit 9bb1cc313d300103984fc9df362846a476ae8b6d
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Mar 22 18:29:42 2008 +0000

    2008-03-22  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/main.c (start):
    	Call gva_main_init_search_completion() after ROMs are analyzed.
    
    	* src/gva-main.c (gva_main_init_search_completion):
    	New function adds autocompletion to the inline search entry.
    
    	* src/gva-tree-view.c (tree_view_search_equal):
    	Move normalizing logic to gva_normalize_for_search(), and
    	normalize both the game title /and/ user input.
    
    	* src/gva-util.c (gva_normalize_for_search):
    	Normalizes a string for easier comparison with what a human is
    	likely to type in an interactive search.

 ChangeLog                                      |  16 +++
 docs/reference/gnome-video-arcade-sections.txt |   2 +
 docs/reference/tmpl/gva-main.sgml              |   9 ++
 docs/reference/tmpl/gva-util.sgml              |   9 ++
 src/gva-main.c                                 | 160 +++++++++++++++++++++++++
 src/gva-main.h                                 |   1 +
 src/gva-tree-view.c                            |  22 ++--
 src/gva-util.c                                 |  34 ++++++
 src/gva-util.h                                 |   1 +
 src/main.c                                     |   7 ++
 10 files changed, 246 insertions(+), 15 deletions(-)

commit 9b09fa95687b9fb4c27a9e071283d2348d08191c
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Mar 21 19:41:42 2008 +0000

    2008-03-21  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.glade:
    	Add an inline search interface to the main window.
    	Remove the search dialog.
    
    	* docs/reference/gnome-video-arcade-sections.txt:
    	Add new symbols to the developer documentation.
    
    	* src/Makefile.am:
    	Remove gva-search.[ch]
    
    	* src/main.c (main):
    	Remove call to gva_search_init().
    
    	* src/gva-columns.c (gva_columns_query_tooltip):
    	* src/gva-mame-common.c (gva_mame_get_input_directory),
    	(gva_mame_get_snapshot_directory), (gva_mame_get_state_directory):
    	Document these functions.
    
    	* src/gva-main.c:
    	Move the logic from gva-search.c to here to support the new
    	inline search interface.  Add appropriate signal handlers.
    
    	* src/gva-search.c:
    	* src/gva-search.h:
    	Remove these files.
    
    	* src/gva-ui.c (action_search_cb):
    	Show and give focus to the inline search entry.
    
    	* src/gva-ui.h:
    	Add GVA_WIDGET_MAIN_SEARCH_ENTRY, GVA_WIDGET_MAIN_SEARCH_HBOX.
    	Remove the old search dialog widgets.
    
    	* src/gva-ui.c (view_radio_entries):
    	Add accelerators to the view actions.

 ChangeLog                                      |  54 +++-
 NEWS                                           |   5 +-
 data/gnome-video-arcade.glade                  | 354 ++++++++++---------------
 docs/reference/Makefile.am                     |   1 -
 docs/reference/gnome-video-arcade-docs.sgml    |   1 -
 docs/reference/gnome-video-arcade-sections.txt |  18 +-
 docs/reference/tmpl/gva-main.sgml              |  46 ++++
 docs/reference/tmpl/gva-search.sgml            |  32 ---
 src/Makefile.am                                |   2 -
 src/gva-categories.c                           |   2 +
 src/gva-columns.c                              |   4 +-
 src/gva-main.c                                 | 188 +++++++++++++
 src/gva-main.h                                 |  10 +
 src/gva-mame-common.c                          |  30 +++
 src/gva-search.c                               | 141 ----------
 src/gva-search.h                               |  45 ----
 src/gva-tree-view.c                            |   3 +-
 src/gva-ui.c                                   |  14 +-
 src/gva-ui.h                                   |  12 +-
 src/main.c                                     |   2 -
 20 files changed, 483 insertions(+), 481 deletions(-)

commit fc208441535ce5eb94879e248b6934b2d37bddb6
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Mar 21 02:17:26 2008 +0000

    2008-03-20  Matthew Barnes  <mbarnes@redhat.com>
    
    	* docs/references/gnome-video-arcade-sections.txt:
    	Add new symbols to the developer documentation.
    
    	* src/gva-columns.c (columns_get_icon_name):
    	Cache the scaled icon in a static hash table.
    	This should make switching between views faster.
    
    	* src/gva-mame-common.c (gva_mame_get_input_directory):
    	* src/gva-util.c (gva_choose_inpname):
    	New function caches the "input_directory" config value.
    
    	* src/gva-mame-common.c (gva_mame_get_snapshot_directory):
    	New function caches the "snapshot_directory" config value.
    
    	* src/gva-mame-common.c (gva_mame_get_state_directory):
    	New function caches the "state_directory" config value.
    
    	* src/gva-mame-common.c (gva_mame_get_input_files):
    	Use gva_mame_get_input_directory().
    
    	* src/gva-mame-common.c (gva_mame_get_save_state_file):
    	Use gva_mame_get_state_directory().

 ChangeLog                                      | 25 +++++++++
 docs/reference/gnome-video-arcade-sections.txt |  3 ++
 docs/reference/tmpl/gva-mame.sgml              | 27 ++++++++++
 src/gva-columns.c                              | 29 ++++++-----
 src/gva-mame-common.c                          | 71 ++++++++++++++++++--------
 src/gva-mame.h                                 |  3 ++
 src/gva-util.c                                 | 14 +++--
 7 files changed, 132 insertions(+), 40 deletions(-)

commit 25c69ac5376c13579c7989f7eae46fbf760215ec
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Mar 17 01:53:58 2008 +0000

    2008-03-16  Matthew Barnes  <mbarnes@redhat.com>
    
    	* docs/references/gnome-video-arcade-sections.txt:
    	Add new symbols to the developer documentation.
    
    	* src/gva-columns.c:
    	Mess with the tooltip callback signature again.
    
    	* src/gva-columns.c (columns_tooltip_summary):
    	New tooltip callback for the Description, Manufacturer, and Year
    	columns.  Displays a summary similar to the Properties window.
    
    	* src/gva-columns.c (gva_columns_get_names_full):
    	Add dependency: any of the "description", "manufacturer", or
    	"year" columns pull in the other two.
    
    	* src/gva-properties.c (properties_update_header):
    	Check if strings are either NULL or empty.

 ChangeLog                                      | 19 +++++++
 NEWS                                           |  2 +
 docs/reference/gnome-video-arcade-sections.txt |  2 +
 docs/reference/tmpl/gva-columns.sgml           | 11 ++++
 docs/reference/tmpl/gva-tree-view.sgml         | 13 +++++
 src/gva-columns.c                              | 79 +++++++++++++++++++++-----
 src/gva-properties.c                           |  6 +-
 7 files changed, 115 insertions(+), 17 deletions(-)

commit 951f504ad88bc1be918690ffc95abbf3df098e8f
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Mar 16 01:41:47 2008 +0000

    2008-03-15  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac:
    	Bump GTK+ requirement to 2.12 and GVA version to 0.6.0.
    
    	* data/gnome-video-arcade.glade:
    	Set "has_tooltip" property on main tree view to TRUE, and
    	register a handler for the "query_tooltip" signal (see below).
    
    	* src/gva-columns.c (columns_favorite_clicked_cb),
    	(columns_comment_edited_cb):
    	Remove workarounds for GTK+ < 2.12.0.
    
    	* src/gva-columns.c (columns_tooltip_favorite):
    	New tooltip callback for the Favorite column.
    
    	* src/gva-columns.c (gva_columns_query_tooltip):
    	New function configures a GtkTooltip for a given
    	GtkTreeViewColumn and GtkTreePath.
    
    	* src/gva-tree-view.c (gva_tree_view_query_tooltip_cb):
    	New handler for "query-tooltip" signals on the main tree view.

 ChangeLog                               | 23 +++++++++
 configure.ac                            |  4 +-
 data/gnome-video-arcade.glade           |  2 +
 docs/reference/tmpl/gva-game-store.sgml |  1 +
 src/gva-columns.c                       | 86 +++++++++++++++++++++++++++++----
 src/gva-columns.h                       |  3 ++
 src/gva-tree-view.c                     | 43 +++++++++++++++++
 src/gva-tree-view.h                     |  5 ++
 8 files changed, 155 insertions(+), 12 deletions(-)

commit 8d735a944a9b87e6b0845a6123af6135fff8dda3
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Mar 14 03:38:18 2008 +0000

    2008-03-13  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-util.c (gva_get_monospace_font_name):
    	Fallback to a default monospace font name if we can't get one
    	from GConf (currently using "Monospace 10").

 ChangeLog      | 6 ++++++
 src/gva-util.c | 6 ++++++
 2 files changed, 12 insertions(+)

commit d46965b37fd20242aa5f33035df00a79206d88aa
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Mar 14 03:17:37 2008 +0000

    2008-03-13  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac: Post-release version bump.
    
    	* README: List gnome-doc-utils as a dependency.
    
    	* src/gva-columns.c:
    	Add "isbios" column (not shown in game list).
    
    	* src/gva-columns.c (gva_columns_get_names_full):
    	Add column dependency: "name" pulls in "isbios"
    
    	* src/gva-db.c:
    	Add "isbios" field to the game database.
    	Filter BIOS ROM sets from the "available" view.
    
    	* src/gva-game-store.c:
    	* src/gva-game-store.h:
    	Add GVA_GAME_STORE_COLUMN_ISBIOS.

 ChangeLog                          | 20 ++++++++++++++++++++
 NEWS                               | 10 ++++++++++
 README                             |  6 ++++++
 configure.ac                       |  2 +-
 docs/reference/database-schema.xml |  4 +++-
 src/gva-columns.c                  |  7 +++----
 src/gva-db.c                       | 11 ++++++++++-
 src/gva-game-store.c               |  1 +
 src/gva-game-store.h               |  3 +++
 9 files changed, 57 insertions(+), 7 deletions(-)

commit 8072a7d72b03dc848f0e7e5d872abac123f65bd3
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Mar 1 23:47:58 2008 +0000

    2008-03-01  Matthew Barnes  <mbarnes@redhat.com>
    
    	* NEWS: Update for 0.5.6
    
    	* help/C/gnome-video-arcade.xml:
    	Remove <orgname class="corporation"> tags to satisfy DocBook 4.5
    	validation (tried reverting to <corpname> but it didn't like that
    	either).  Fix some other cryptic validation errors.
    
    	* src/gva-columns.c (columns_driver_status_set_properties):
    	Decided I like the stock "Apply" icon better than "emblem-default"
    	for displaying "good" emulation status.
    
    	* src/gva-utils.c (gva_help_display):
    	Document this function.

 ChangeLog                     | 16 ++++++++++++++++
 NEWS                          |  4 +++-
 help/C/gnome-video-arcade.xml | 29 ++++++++++-------------------
 src/gva-columns.c             |  9 ++++-----
 src/gva-util.c                | 10 ++++++++++
 src/main.c                    |  1 +
 6 files changed, 44 insertions(+), 25 deletions(-)

commit 7d0572faccac662bbe2552711009371626dd1959
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Feb 29 05:38:10 2008 +0000

    2008-02-29  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-util.c (inpname_exists):
    	Check for files with and without the ".inp" extension.
    	xmame uses the extension, recent versions of sdlmame do not.

 ChangeLog      |  6 ++++++
 src/gva-util.c | 14 ++++++++++++++
 2 files changed, 20 insertions(+)

commit 2eb3e9c6e3d46b01684e3886e8dba7f90d3e1a3d
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Feb 25 05:29:56 2008 +0000

    2008-02-25  Matthew Barnes  <mbarnes@redhat.com>
    
    	* help/C/gnome-video-arcade.xml:
    	Add a Troubleshooting section.
    
    	* help/C/figures/gva_building_database.png:
    	* help/C/figures/gva_column_preferences.png:
    	* help/C/figures/gva_general_preferences.png:
    	* help/C/figures/gva_main_window.png:
    	* help/C/figures/gva_recorded_games.png:
    	* help/C/figures/gva_search_window.png:
    	Update the screenshots and add a couple new ones.
    
    	* src/main.c (warn_if_no_roms):
    	Call gva_help_display() if the user requests help.
    
    	* src/gva-ui.c:
    	Reword the "show-clones" option.
    
    	* src/gva-ui.c (action_contents_cb):
    	Just call gva_help_display().
    
    	* src/gva-util.c (gva_help_display):
    	Display the help file for GNOME Video Arcade at the given location.
    	If help cannot be opened, displays an error dialog explaining why.

 ChangeLog                                      |  26 +++
 NEWS                                           |   2 +
 docs/reference/gnome-video-arcade-sections.txt |   1 +
 docs/reference/tmpl/gva-util.sgml              |   9 +
 help/C/figures/gva_building_database.png       | Bin 24603 -> 23297 bytes
 help/C/figures/gva_column_preferences.png      | Bin 0 -> 30813 bytes
 help/C/figures/gva_general_preferences.png     | Bin 0 -> 27909 bytes
 help/C/figures/gva_main_window.png             | Bin 53124 -> 51885 bytes
 help/C/figures/gva_recorded_games.png          | Bin 28991 -> 29673 bytes
 help/C/figures/gva_search_window.png           | Bin 8940 -> 16695 bytes
 help/C/gnome-video-arcade.xml                  | 233 +++++++++++++++++++++++--
 help/Makefile.am                               |   2 +
 src/gva-ui.c                                   |  29 +--
 src/gva-util.c                                 |  31 ++++
 src/gva-util.h                                 |   2 +
 src/main.c                                     |   4 +-
 16 files changed, 296 insertions(+), 43 deletions(-)

commit 94a572d2f1e974cfad7c726c5208c469c5e9e743
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Feb 24 04:50:01 2008 +0000

    2008-02-23  Matthew Barnes  <mbarnes@redhat.com>
    
    	* help/C/gnome-video-arcade.xml:
    	Reword some parts.
    
    	* src/gva-game-store.h (GvaGameStoreColumn):
    	Document the enumeration values.

 ChangeLog                     |  8 +++++
 help/C/gnome-video-arcade.xml | 61 ++++++++++++++++++-------------------
 src/gva-game-store.h          | 71 +++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 109 insertions(+), 31 deletions(-)

commit ea78edb30acc2fc11d905787ce0a9398c0675593
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Feb 22 14:39:46 2008 +0000

    2008-02-22  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-db.c (db_function_getcategory):
    	Silence "key not found" warnings.
    
    	* src/gva-db.c (gva_db_is_older_than):
    	New function compares a file was updated more recently than the
    	games database.
    
    	* src/gva-audit.c (gva_audit_detect_changes):
    	Call gva_db_is_older_than() for each directory.

 ChangeLog                                      | 12 ++++++++
 docs/reference/gnome-video-arcade-sections.txt |  1 +
 docs/reference/tmpl/gva-db.sgml                |  9 ++++++
 src/gva-audit.c                                | 12 ++------
 src/gva-db.c                                   | 40 ++++++++++++++++++++++++++
 src/gva-db.h                                   |  1 +
 6 files changed, 65 insertions(+), 10 deletions(-)

commit 3ea88f85f8c15a8285834114dad81043ab819084
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Feb 5 04:42:25 2008 +0000

    2008-02-04  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/main.c (warn_if_no_roms), (start):
    	Detect the absence of ROMs at startup and display a helpful
    	dialog.  Still some things to do.  The Help button does not
    	work and the troubleshooting section of the user docs does
    	not exist.

 ChangeLog  |  8 ++++++++
 src/main.c | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 76 insertions(+)

commit 2ab4d0db864f95d5515d79e0a735f402ec7b08b4
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Feb 5 02:20:59 2008 +0000

    2008-02-04  Matthew Barnes  <mbarnes@redhat.com>
    
    	* docs/references/database-schema.xml:
    	* docs/references/gnome-video-arcade-docs.sgml:
    	Add an appendix to the developer documentation showing the
    	game database schema in SQL notation.  Needs to be fleshed
    	out more.

 ChangeLog                                   |   8 ++
 docs/reference/Makefile.am                  |   1 +
 docs/reference/database-schema.xml          | 172 ++++++++++++++++++++++++++++
 docs/reference/gnome-video-arcade-docs.sgml |   2 +
 4 files changed, 183 insertions(+)

commit 8b431c08dab7220969d3121b2fe3b2af502fb7a0
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Feb 4 17:05:43 2008 +0000

    2008-02-04  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.glade:
    	Add a "show-clones" checkbox to the Preferences dialog.
    	Reorganize the container widgets in the Preferences dialog to
    	handle a second section ("Game List") in the General tab.
    
    	* data/gnome-video-arcade.schemas:
    	Add show-clones key.
    
    	* docs/references/gnome-video-arcade-sections.txt:
    	Add new symbols to the developer documentation.
    
    	* src/gva-common.h:
    	Add GVA_GCONF_SHOW_CLONES_KEY.
    
    	* src/main.c (start):
    	* src/gva-main.c (gva_main_init):
    	Desensitize the "show-clones" user preference until we've
    	loaded the initial view.
    
    	* src/gva-categories.c (gva_categories_init):
    	* src/gva-history.c (history_file_open):
    	If the program is not configured to show category information,
    	emit an informational message saying so rather than a warning.
    	We don't want to abort if we're running with fatal warnings.
    	Same goes for history information.
    
    	* src/gva-columns.c:
    	Alter how we handle the Category column when the program is
    	not configured to show category information.  Avoid causing
    	any warnings on the terminal.
    
    	* src/gva-preferences.c (gva_preferences_init):
    	Wire up the "show-clones" user preference.
    
    	* src/gva-preferences.c (gva_preferences_get_show_clones),
    	(gva_preferences_set_show_clones):
    	New functions get/set the "show-clones" user preference.
    
    	* src/gva-properties.c (properties_update_history):
    	Make this function a no-op if the program is not configured
    	to show history information.  Doing it this way avoids having
    	the compiler complain about the function being unused.
    
    	* src/gva-properties.c (gva_properties_init):
    	Hide the history page if the program is not configured to
    	show history information.
    
    	* src/gva-tree-view.c (gva_tree_view_update):
    	Exclude cloned games from the database query if the user prefers
    	not to see them ("show-clones" == FALSE).
    
    	* src/gva-ui.h:
    	Add GVA_WIDGET_PROPERTIES_NOTEBOOK.
    
    	* src/gva-ui.h:
    	* src/gva-ui.c:
    	Add GVA_ACTION_SHOW_CLONES.  If the action is sensitive (i.e.
    	we're not loading the initial value from GConf), force a tree
    	view update.  GConfBridge handles the rest.

 ChangeLog                                      |  62 +++++++++
 NEWS                                           |  11 ++
 data/gnome-video-arcade.glade                  | 168 +++++++++++++++++--------
 data/gnome-video-arcade.schemas                |  13 ++
 docs/reference/gnome-video-arcade-sections.txt |   5 +
 docs/reference/tmpl/gva-preferences.sgml       |  16 +++
 docs/reference/tmpl/gva-ui.sgml                |   7 ++
 src/gva-categories.c                           |   8 +-
 src/gva-columns.c                              |  19 ++-
 src/gva-common.h                               |   1 +
 src/gva-history.c                              |   7 +-
 src/gva-main.c                                 |   1 +
 src/gva-preferences.c                          |  42 +++++++
 src/gva-preferences.h                          |   2 +
 src/gva-properties.c                           |  22 ++++
 src/gva-tree-view.c                            |  29 +++--
 src/gva-ui.c                                   |  30 +++++
 src/gva-ui.h                                   |   5 +
 src/main.c                                     |   5 +-
 19 files changed, 368 insertions(+), 85 deletions(-)

commit 76ebcce99b6c2dcf2e49a3bd494db4752f19a573
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 27 18:05:57 2008 +0000

    2008-01-27  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-categories.c (gva_categories_init):
    	Handle Window INI-style comments in the category file.

 ChangeLog            |  5 +++++
 src/gva-categories.c | 23 +++++++++++++++++++++--
 2 files changed, 26 insertions(+), 2 deletions(-)

commit 3c19484f08ca1f25fcfd2e8010475f21ed01ef44
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 27 04:35:02 2008 +0000

    2008-01-26  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac:
    	Check for gnome-icon-theme >= 2.18.0.  The version corresponds to
    	the introduction of the 'emblem-default' icon.
    
    	* src/Makefile.am:
    	* docs/references/Makefile.am:
    	Add GIT_CFLAGS and GIT_LIBS even though they are empty at this time.

 ChangeLog                  | 10 ++++++++++
 configure.ac               |  5 +++++
 docs/reference/Makefile.am |  2 ++
 src/Makefile.am            | 11 ++++++-----
 4 files changed, 23 insertions(+), 5 deletions(-)

commit 155670917bd459ce866f5354c01c6b62955bba20
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Jan 26 22:26:20 2008 +0000

    2008-01-26  Matthew Barnes  <mbarnes@redhat.com>
    
    	* README: List GConf as a dependency.

 ChangeLog |  4 ++++
 README    | 19 +++++++++++++++----
 2 files changed, 19 insertions(+), 4 deletions(-)

commit 4652c4d89223dab6c95a17381fb54504531090c6
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jan 13 00:55:46 2008 +0000

    2008-01-12  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.glade:
    	Center the "Recorded Games" window over the main window.

 ChangeLog                     |   5 ++
 data/gnome-video-arcade.glade | 171 +++++++++++++++++++++---------------------
 2 files changed, 91 insertions(+), 85 deletions(-)

commit 7152b5d0f677fc8a8d615dbba389316970e86045
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Jan 11 17:46:56 2008 +0000

    2008-01-11  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac: Post-release version bump.

 ChangeLog    | 4 ++++
 README       | 4 ++--
 configure.ac | 2 +-
 3 files changed, 7 insertions(+), 3 deletions(-)

commit 2444be80261b9e10dc55c538a866299e8dd72e99
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Jan 11 17:30:51 2008 +0000

    2008-01-11  Matthew Barnes  <mbarnes@redhat.com>
    
    	* NEWS: Update for 0.5.5
    
    	* data/gnome-video-arcade.glade:
    	Don't show expanders in the main and play back tree views.
    
    	* docs/reference/gnome-video-arcade-sections.txt:
    	Add new symbols to the developer documentation.
    
    	* src/main.c (start):
    	Sensitize the "search" action after database construction.
    
    	* src/gva-audit.c (gva_audit_detect_changes):
    	Document this function.
    
    	* src/gva-columns.c (columns_comment_edited_cb):
    	New function gets called the user finishes editing a comment.
    	Writes the new comment back into the tree model.
    
    	* src/gva-columns.c (columns_time_set_properties):
    	New function, formerly known as play_back_render_time().
    
    	* src/gva-columns.c:
    	Add "comment" and "time" columns.
    
    	* src/gva-db.c:
    	Add a "playback" table to the game database that remembers user
    	comments for recorded games.  This table MUST survive a database
    	rebuild!
    
    	* src/gva-db.c (db_parser_bind_text):
    	Improve error handling.
    
    	* src/gva-db.c (gva_db_reset):
    	Do NOT destroy the game database file.  Instead, drop all the
    	tables that will be rebuilt (not including the "playback" table).
    
    	* src/gva-db.c (gva_db_get_table):
    	New function is a thin wrapper for sqlite3_get_table(), which
    	is a convenient way to execute short queries.
    
    	* src/gva-db.c (gva_db_set_error):
    	Prefix SQLite error messages with "(SQL)".
    
    	* src/gva-game-store.c:
    	* src/gva-game-store.h:
    	Add GVA_GAME_STORE_COLUMN_COMMENT.
    	Add GVA_GAME_STORE_COLUMN_INODE.
    
    	* src/gva-main.c:
    	Desensitize the "search" action on startup.
    
    	* src/gva-play-back.c (play_back_render_time):
    	Move this function over to gva-columns.c.
    
    	* src/gva-play-back.c (play_back_add_input_file):
    	Fetch the user comment for a recorded game from the game database,
    	and if that doesn't work just use the game title.  This is how new
    	game recordings get picked up.  Also, write inode values to the
    	tree model so we can retrieve them later.
    
    	* src/gva-play-back.c (gva_play_back_init):
    	Move the GtkTreeViewColumn configuration over to gva-columns.c, and
    	just ask for the tree view columns using gva_columns_new_from_id().
    
    	* src/gva-play-back.c (gva_play_back_window_hide_cb):
    	New function saves the recorded game entries to the game database
    	when the "Recorded Games" window is closed.

 ChangeLog                                      |  70 +++++++
 NEWS                                           |   5 +-
 data/gnome-video-arcade.glade                  |   3 +
 docs/reference/gnome-video-arcade-sections.txt |   2 +
 docs/reference/tmpl/gva-db.sgml                |  13 ++
 docs/reference/tmpl/gva-game-store.sgml        |   2 +
 docs/reference/tmpl/gva-play-back.sgml         |   8 +
 src/gva-audit.c                                |  10 +
 src/gva-columns.c                              | 104 +++++++++-
 src/gva-db.c                                   | 106 +++++++++--
 src/gva-db.h                                   |   5 +
 src/gva-game-store.c                           |   2 +
 src/gva-game-store.h                           |   2 +
 src/gva-main.c                                 |   1 +
 src/gva-play-back.c                            | 250 +++++++++++++++++++------
 src/gva-play-back.h                            |   1 +
 src/main.c                                     |   1 +
 17 files changed, 507 insertions(+), 78 deletions(-)

commit 3d19c72aa2c78ec182a32f71acd158a19c98f924
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Jan 9 03:46:55 2008 +0000

    2008-01-08  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-mame-sdlmame.c (gva_mame_get_version),
    	(gva_get_total_supported):
    	* src/gva-mame-xmame.c (gva_mame_get_version),
    	(gva_get_total_supported):
    	Changed my mind about the caching.  Might be better suited for a
    	MAME initialization function if I ever decide to add one.
    
    	* src/main.c (start):
    	* src/gva-audit.c (audit_data_new):
    	* src/gva-db.c (gva_db_needs_rebuilt):
    	Revert changes for gva_mame_get_version().

 ChangeLog              | 14 ++++++++++++++
 NEWS                   |  6 +++---
 src/gva-audit.c        |  7 +++----
 src/gva-db.c           |  3 ++-
 src/gva-mame-sdlmame.c | 15 +++------------
 src/gva-mame-xmame.c   | 15 +++------------
 src/gva-mame.h         |  2 +-
 src/main.c             |  5 ++++-
 8 files changed, 33 insertions(+), 34 deletions(-)

commit b545ceb6c41419efe6e4d561ae3663bf9a708fcc
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Jan 9 03:11:13 2008 +0000

    2008-01-08  Matthew Barnes  <mbarnes@redhat.com>
    
    	Detecting fine-grained changes gets really hairy when dealing with
    	split or merged ROM sets so I'm backing away from my "Quick Audit"
    	idea and taking a simpler approach: if any of the directories in
    	"rompath" or "samplepath" have been modified (i.e. the timestamps
    	are more recent than the database timestamp), do a full audit.
    
    	* src/main.c (start):
    	Call gva_audit_detect_changes() instead of gva_quick_audit().
    	If it returns TRUE, run a full ROM file audit.
    
    	* src/gva-audit.c (gva_quick_audit):
    	Revert this function and all related support functions.
    
    	* src/gva-audit.c (gva_audit_detect_changes):
    	New function compare the timestamp of the games database against
    	the various ROM and sample directories.  Return TRUE if any of the
    	directories have been updated since the last database modification.
    
    	* src/gva-error.h:
    	Revert GVA_ERROR_LIMIT.
    
    	* src/gva-ui.c:
    	Reword documentation for actions that present a window.

 ChangeLog                                      |  26 ++
 docs/reference/gnome-video-arcade-sections.txt |   3 +-
 docs/reference/tmpl/gva-audit.sgml             |   3 +-
 docs/reference/tmpl/gva-error.sgml             |   1 -
 src/gva-audit.c                                | 433 ++++---------------------
 src/gva-audit.h                                |   2 +-
 src/gva-error.h                                |   3 -
 src/gva-ui.c                                   |   8 +-
 src/main.c                                     |  21 +-
 9 files changed, 114 insertions(+), 386 deletions(-)

commit 48945f59060bb165e0331bd622d18ca5985ca9ea
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jan 7 03:28:54 2008 +0000

    2008-01-06  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-error.h:
    	Add GVA_ERROR_LIMIT.
    
    	* src/gva-audit.c (gva_quick_audit):
    	Return a boolean instead of GvaAuditResult.  If too many files
    	have changed to proceed with the quick-audit, set the GError to
    	GVA_ERROR_LIMIT and return FALSE.  Eliminates the need for the
    	GvaAuditResult enumeration.
    
    	* src/gva-main (start):
    	Deal with gva_quick_audit()'s new semantics.
    
    	* src/gva-ui.c:
    	Add a tooltip for Help->Contents.

 ChangeLog                          | 17 +++++++++++++++++
 docs/reference/tmpl/gva-audit.sgml |  9 ---------
 docs/reference/tmpl/gva-error.sgml |  1 +
 src/gva-audit.c                    | 14 +++++++-------
 src/gva-audit.h                    | 10 +---------
 src/gva-error.h                    |  3 +++
 src/gva-ui.c                       |  2 +-
 src/main.c                         | 19 ++++++++++++-------
 8 files changed, 42 insertions(+), 33 deletions(-)

commit 20ec195bddd0031b9137e61cf8d2db16c158c7c9
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jan 7 00:22:10 2008 +0000

    2008-01-06  Matthew Barnes  <mbarnes@redhat.com>
    
    	* docs/reference/gnome-video-arcade-sections.txt:
    	Add new symbols to the developer documentation.
    
    	* src/main.c (start):
    	If we're not rebuilding the game database, check for changed ROM
    	or sample files and either do a quick or full audit, depending on
    	the extent of the changes.
    
    	* src/main.c (start):
    	* src/gva-audit.c (gva_audit_save_errors):
    	* src/gva-db.c (gva_db_needs_rebuilt):
    	gva_mame_get_version() now returns a const string.
    
    	* src/gva-audit.c (gva_quick_audit):
    	New function (and a bunch of supporting private functions and
    	refactoring work) detects new or changed ROM and sample files
    	and tries to quickly verify them and update the game database.
    	If the changes are too extensive for a quick update, it
    	recommends a full audit.
    
    	* src/gva-audit.c (gva_audit_roms):
    	Call gva_mame_verify_all_roms() (renamed function).
    
    	* src/gva-audit.c (gva_audit_samples):
    	Call gva_mame_verify_all_samples() (renamed function).
    
    	* src/gva-main.c (main_build_database_progress_cb):
    	Use gva_main_progress_bar_set_fraction().
    
    	* src/gva-main.c (gva_main_build_database):
    	Break this into smaller pieces.  Do not show the progress bar.
    	Do not change the mouse cursor.  Do not analyze ROMS.
    
    	* src/gva-main.c (gva_main_analyze_roms):
    	New function analyses ROM files, as gva_main_build_database()
    	used to do.
    
    	* src/gva-main.c (gva_main_progress_bar_show):
    	New function shows the progress bar in the main window and changes
    	the mouse cursor to busy, as gva_main_build_database() used to do.
    
    	* src/gva-main.c (gva_main_progress_bar_hide):
    	New function hides the progress bar in the main window and changes
    	the mouse cursor to normal, as gva_main_build_database() used to do.
    
    	* src/gva-main.c (gva_main_progress_bar_set_fraction):
    	New function updates the main window's progress bar using a cached
    	widget pointer for better performance.
    
    	* src/gva-mame-common.c (gva_mame_command):
    	Set process->error to NULL after propagating it.
    
    	* src/gva-mame-common.c (gva_mame_get_search_paths):
    	New function returns a configuration value as an ordered list
    	of search paths.  Useful for keys like "rompath" and "samplepath".
    
    	* src/gva-mame-common.c (gva_mame_verify_all_roms):
    	Renamed from gva_mame_verify_roms().
    
    	* src/gva-mame-common.c (gva_mame_verify_roms):
    	New function (sort of) verifies an individual ROM set.
    
    	* src/gva-mame-common.c (gva_mame_verify_all_samples):
    	Renamed from gva_mame_verify_samples().
    
    	* src/gva-mame-common.c (gva_mame_verify_samples):
    	New function (sort of) verifies an individual sample set.
    
    	* src/gva-mame-common.c (gva_mame_verify_parse):
    	New function attempts to extract a status from a line of output
    	from a "MAME -verifyroms" or "MAME -verifysamples" command.
    
    	* src/gva-mame-sdlmame.c (gva_mame_get_path_sep):
    	* src/gva-mame-xmame.c (gva_mame_get_path_sep):
    	New function returns the delimiter used in search paths.
    
    	* src/gva-mame-sdlmame.c (gva_mame_get_version),
    	(gva_mame_get_total_supported):
    	* src/gva-mame-xmame.c (gva_mame_get_version),
    	(gva_mame_get_total_supported):
    	If successful, cache the result for subsequent calls.

 ChangeLog                                      |  84 +++++
 NEWS                                           |  17 +-
 docs/reference/gnome-video-arcade-sections.txt |  12 +
 docs/reference/tmpl/gva-audit.sgml             |  18 +
 docs/reference/tmpl/gva-game-store.sgml        |  37 ++
 docs/reference/tmpl/gva-main.sgml              |  31 ++
 docs/reference/tmpl/gva-mame.sgml              |  49 +++
 docs/reference/tmpl/gva-util.sgml              |   9 +
 src/gva-audit.c                                | 466 ++++++++++++++++++++-----
 src/gva-audit.h                                |   9 +
 src/gva-db.c                                   |   3 +-
 src/gva-game-store.h                           |   5 +-
 src/gva-main.c                                 | 142 ++++++--
 src/gva-main.h                                 |  30 +-
 src/gva-mame-common.c                          | 233 ++++++++++++-
 src/gva-mame-sdlmame.c                         |  21 +-
 src/gva-mame-xmame.c                           |  21 +-
 src/gva-mame.h                                 |  16 +-
 src/gva-util.c                                 |   2 +-
 src/gva-util.h                                 |   8 +-
 src/main.c                                     |  26 +-
 21 files changed, 1090 insertions(+), 149 deletions(-)

commit 86ae4cb450959899f05b4278b34e2eac3bd18ba9
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Jan 4 02:09:36 2008 +0000

    Remove tab characters.

 src/gconf-bridge.c     |  2 +-
 src/gva-db.c           | 10 +++++-----
 src/gva-mame-process.c |  4 ++--
 src/gva-search.c       |  2 +-
 src/gva-util.c         |  2 +-
 5 files changed, 10 insertions(+), 10 deletions(-)

commit 363aa5b1c3a80e95ecaae7a71774c8eb10e4f4ac
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Jan 4 01:56:17 2008 +0000

    2008-01-03  Matthew Barnes  <mbarnes@redhat.com>
    
    	* Update copyright notices on source files.

 ChangeLog                      | 4 ++++
 README                         | 4 ++--
 docs/gnome-video-arcade.1      | 2 +-
 src/gva-audit.c                | 2 +-
 src/gva-audit.h                | 2 +-
 src/gva-categories.c           | 2 +-
 src/gva-categories.h           | 2 +-
 src/gva-cell-renderer-pixbuf.c | 2 +-
 src/gva-cell-renderer-pixbuf.h | 2 +-
 src/gva-column-manager.c       | 2 +-
 src/gva-column-manager.h       | 2 +-
 src/gva-columns.c              | 2 +-
 src/gva-columns.h              | 2 +-
 src/gva-common.h               | 2 +-
 src/gva-db.c                   | 2 +-
 src/gva-db.h                   | 2 +-
 src/gva-error.c                | 2 +-
 src/gva-error.h                | 2 +-
 src/gva-favorites.c            | 2 +-
 src/gva-favorites.h            | 2 +-
 src/gva-game-store.c           | 2 +-
 src/gva-game-store.h           | 2 +-
 src/gva-history.c              | 2 +-
 src/gva-history.h              | 2 +-
 src/gva-main.c                 | 2 +-
 src/gva-main.h                 | 2 +-
 src/gva-mame-common.c          | 2 +-
 src/gva-mame-common.h          | 2 +-
 src/gva-mame-process.c         | 2 +-
 src/gva-mame-process.h         | 2 +-
 src/gva-mame-sdlmame.c         | 2 +-
 src/gva-mame-xmame.c           | 2 +-
 src/gva-mame.h                 | 2 +-
 src/gva-play-back.c            | 2 +-
 src/gva-play-back.h            | 2 +-
 src/gva-preferences.c          | 2 +-
 src/gva-preferences.h          | 2 +-
 src/gva-process.c              | 2 +-
 src/gva-process.h              | 2 +-
 src/gva-properties.c           | 2 +-
 src/gva-properties.h           | 2 +-
 src/gva-search.c               | 2 +-
 src/gva-search.h               | 2 +-
 src/gva-time.c                 | 2 +-
 src/gva-time.h                 | 2 +-
 src/gva-tree-view.c            | 2 +-
 src/gva-tree-view.h            | 2 +-
 src/gva-ui.c                   | 5 +++--
 src/gva-ui.h                   | 2 +-
 src/gva-util.c                 | 2 +-
 src/gva-util.h                 | 2 +-
 src/main.c                     | 2 +-
 52 files changed, 58 insertions(+), 53 deletions(-)

commit 4346ea8a2d4556b5c4cf7ec90cfb81f660819b21
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Dec 29 03:28:47 2007 +0000

    2007-12-28  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-mame-common.c (gva_mame_has_config_value):
    	Remove the assertion and make the logic more forgiving.

 ChangeLog             |  5 +++++
 src/gva-mame-common.c | 12 +++---------
 2 files changed, 8 insertions(+), 9 deletions(-)

commit 85620e9092710eb631bef9978130ecc56d5ff5b6
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Dec 29 03:19:55 2007 +0000

    2007-12-28  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac: Post-release version bump.

 ChangeLog    | 4 ++++
 configure.ac | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit cc71a1849f307e4963cb2e44523b72d93640a918
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Dec 27 21:35:44 2007 +0000

    2007-12-27  Matthew Barnes  <mbarnes@redhat.com>
    
    	* po/POTFILES.in: Specify the encoding as UTF-8.

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 1 +
 2 files changed, 5 insertions(+)

commit f2fd172b0c4937a176db8feaefb1598a9267d081
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Dec 27 19:47:05 2007 +0000

    2007-12-27  Matthew Barnes  <mbarnes@redhat.com>
    
    	* NEWS: Update for 0.5.4

 ChangeLog | 4 ++++
 NEWS      | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit b643aaa6813bd52b036ff885cf022511fe6d0879
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Dec 24 20:06:01 2007 +0000

    2007-12-24  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-audit.c (audit_show_dialog):
    	* src/gva-main.c (gva_main_init):
    	* src/gva-play-back.c (gva_play_back_show):
    	* src/gva-ui.c (action_preferences_cb), (action_properties_cb),
    	(action_search_cb):
    	Use gtk_window_present() instead of gtk_widget_show().

 ChangeLog           | 9 +++++++++
 NEWS                | 1 +
 src/gva-audit.c     | 2 +-
 src/gva-main.c      | 2 +-
 src/gva-play-back.c | 2 +-
 src/gva-ui.c        | 6 +++---
 6 files changed, 16 insertions(+), 6 deletions(-)

commit aff8cbb71c4cd810651e896be47740b8f437df11
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Dec 22 20:55:02 2007 +0000

    2007-12-22  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.glade:
    	Add some helpful text to the search dialog.

 ChangeLog                     |   5 +
 data/gnome-video-arcade.glade | 236 ++++++++++++++++++++++++++----------------
 2 files changed, 154 insertions(+), 87 deletions(-)

commit 3cf63acc0bdea97d76b1c1a1558a0b4cdf6625d4
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Dec 16 14:01:41 2007 +0000

    2007-12-16  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-util.c (gva_get_debug_flags):
    	Don't pass a NULL string to g_parse_debug_string().

 ChangeLog      | 5 +++++
 src/gva-util.c | 4 +++-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 6ceda5c7ed055b03be03c8c6d57d4b203fc6781b
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Dec 11 04:16:23 2007 +0000

    2007-12-10  Matthew Barnes  <mbarnes@redhat.com>
    
    	* README:
    	Update the build instructions.
    
    	* configure.ac:
    	Add a --with-category-file option.
    
    	* data/gnome-video-arcade.desktop.in:
    	Change the category from ArcadeGame to Emulator.
    
    	* docs/reference:
    	Update developer documentation.
    
    	* src/Makefile.am:
    	Add gva-categories.[ch].
    
    	* src/gva-audit.c (audit_exit):
    	Don't delete unavailable games from the database.
    	Retaining that information might prove useful in the future.
    
    	* src/gva-categories.c:
    	* src/gva-categories.h:
    	New source files parse a catver.ini file.
    
    	* src/gva-columns.c:
    	Add a "Category" column (if CATEGORY_FILE is defined).
    
    	* src/gva-db.c (gva_db_init):
    	Print debug messages when the GVA_DEBUG_SQL flag is set.
    
    	* src/gva-db.c (db_create_tables):
    	Create a database view of available games, which also provides
    	virtual columns "category" and "favorite".  Use this view when
    	querying the database for game information.
    
    	* src/gva-db.c (db_function_getcategory):
    	Callback for database function getcategory().
    
    	* src/gva-game-store.c:
    	* src/gva-game-store.h:
    	Add GVA_GAME_STORE_COLUMN_CATEGORY.
    
    	* src/gva-history.c (gva_history_init):
    	Fix some mistakes in the documentation.
    
    	* src/gva-mame-process.c (gva_mame_process_spawn):
    	Print debug messages when the GVA_DEBUG_MAME flag is set.
    
    	* src/gva-properties.c:
    	Select database rows from the "available" view.
    
    	* src/gva-tree-view.c (gva_tree_view_update):
    	Simplify the "Favorite Games" search expression.
    	Add "category" to the "Search Results" search expression.
    
    	* src/gva-tree-view.c (gva_tree_view_run_query):
    	Select database rows from the "available" view.
    	No need to special-case the "favorite" column anymore.
    
    	* src/gva-util.c (gva_get_debug_flags):
    	New function parses the GVA_DEBUG environment variable.

 ChangeLog                                      | 63 ++++++++++++++++++
 NEWS                                           | 27 ++++++--
 README                                         | 18 +++++-
 config.h.in                                    |  3 +
 configure.ac                                   | 15 +++++
 data/gnome-video-arcade.desktop.in             |  2 +-
 docs/reference/Makefile.am                     |  1 +
 docs/reference/gnome-video-arcade-docs.sgml    |  1 +
 docs/reference/gnome-video-arcade-sections.txt |  9 +++
 docs/reference/tmpl/gva-audit.sgml             |  2 +-
 docs/reference/tmpl/gva-categories.sgml        | 48 ++++++++++++++
 docs/reference/tmpl/gva-util.sgml              |  8 +++
 po/ChangeLog                                   |  4 ++
 po/POTFILES.in                                 |  1 +
 src/Makefile.am                                |  2 +
 src/gva-audit.c                                |  8 ---
 src/gva-categories.c                           | 88 ++++++++++++++++++++++++++
 src/gva-categories.h                           | 42 ++++++++++++
 src/gva-columns.c                              | 30 +++++++++
 src/gva-db.c                                   | 55 ++++++++++++++--
 src/gva-game-store.c                           |  1 +
 src/gva-game-store.h                           |  1 +
 src/gva-history.c                              |  4 +-
 src/gva-mame-process.c                         |  4 ++
 src/gva-properties.c                           |  2 +-
 src/gva-tree-view.c                            | 14 ++--
 src/gva-util.c                                 | 29 +++++++++
 src/gva-util.h                                 | 23 +++++++
 src/main.c                                     |  6 ++
 29 files changed, 476 insertions(+), 35 deletions(-)

commit 5ac08ab4f70e0c38a908b0916ad646b497698235
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Dec 3 23:10:25 2007 +0000

    2007-12-03  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac: Post-release version bump.

 ChangeLog    |  8 ++++++++
 NEWS         | 17 ++++++++++++++---
 configure.ac |  2 +-
 3 files changed, 23 insertions(+), 4 deletions(-)

commit dc9ef0953c22d8e16ab1ec7550522bdea1b598fd
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Dec 3 17:41:42 2007 +0000

    2007-12-03  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac:
    	Rework how we find the MAME program.  The problem is some distros
    	install sdlmame or xmame as /usr/bin/mame, and our configure script
    	cannot handle that because:
    
    	  a) We place requirements on the name of the MAME binary.
    
    	  b) Defining "MAME=/usr/bin/mame" does not tell us which
    	     MAME backend to compile.
    
    	The solution is to specify program location using either an XMAME
    	or SDLMAME environment variable, instead of just MAME.  This tells
    	us both program location and which MAME backend to compile.
    
    	* README: Update the build instructions.

 ChangeLog    | 18 ++++++++++++++++++
 README       | 21 +++++++++++++++------
 configure.ac | 31 ++++++++++++++++++++-----------
 3 files changed, 53 insertions(+), 17 deletions(-)

commit 25f438e8f1647c7be2c3009029f7e9b75d1d8719
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Nov 18 04:01:14 2007 +0000

    2007-11-17  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-column-manager.c (column_manager_init):
    	Use a GtkVButtonBox instead of a GtkVBox to hold the buttons.
    	Eliminates the need for a GtkAlignment.

 ChangeLog                |  6 ++++++
 src/gva-column-manager.c | 10 ++++------
 2 files changed, 10 insertions(+), 6 deletions(-)

commit d65eb05e4c68c7b148b12a2704e0ce3b411cb7ca
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Nov 14 21:37:29 2007 +0000

    2007-11-14  Matthew Barnes  <mbarnes@redhat.com>
    
    	Remove trailing whitespace from source code via
    	$ find -name "*.[ch]" -exec sed -ie 's/[ ^t]*//' {} \;

 ChangeLog                |  5 +++++
 src/gconf-bridge.c       | 38 +++++++++++++++++++-------------------
 src/gconf-bridge.h       |  6 +++---
 src/gva-audit.c          |  2 +-
 src/gva-column-manager.h |  2 +-
 src/gva-db.c             |  2 +-
 src/gva-error.h          |  2 +-
 src/gva-mame-common.c    |  2 +-
 src/main.c               |  2 +-
 9 files changed, 33 insertions(+), 28 deletions(-)

commit 98ba3c1478bcd2687dd217476bff5c7a024144fe
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Nov 8 20:03:43 2007 +0000

    2007-11-08  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-columns.c:
    	* src/gva-history.c:
    	Sparse warning cleanups.

 ChangeLog         | 6 ++++++
 src/gva-columns.c | 2 +-
 src/gva-history.c | 2 +-
 3 files changed, 8 insertions(+), 2 deletions(-)

commit e95b0725b9365133737bf3e9c059ecd0a2963827
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Nov 6 18:35:51 2007 +0000

    2007-11-06  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac: Post-release version bump.

 ChangeLog    | 4 ++++
 configure.ac | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit aa184a552b1c1ef8d9071dea5e2863ea97c76f4d
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Nov 6 18:32:16 2007 +0000

    2007-11-06  Matthew Barnes  <mbarnes@redhat.com>
    
    	* NEWS: Update for 0.5.2
    
    	Remember the previous filename used to save audit results, and
    	suggest that again next time.
    
    	* data/gnome-video-arcade.glade:
    	Increase the height of the audit results windows.
    
    	* data/gnome-video-arcade.schemas:
    	Add error-file key.
    
    	* src/gva-common.h:
    	Add GVA_GCONF_ERROR_FILE_KEY.
    
    	* src/gva-audit.c (audit_run_save_dialog):
    	Move the save dialog logic here from action_save_errors_cb().
    	It was getting too complicated for an action handler.
    
    	* src/gva-audit.c (gva_audit_save_error):
    	Remove the filename argument; it's all self-contained now.
    
    	* src/gva-tree-view.c (gva_tree_view_run_query):
    	Reset the tree view search column each time a new model is loaded.
    	Fixes a common crash when using the interactive search.
    
    	* src/gva-ui.c (action_save_errors_cb):
    	Move all the save dialog logic to audit_run_save_dialog().
    	Just call gva_audit_save_error() now.
    
    	* po/POTFILES.in: Add src/gva-audit.c.

 ChangeLog                          |  31 +++++++
 NEWS                               |   3 +-
 data/gnome-video-arcade.glade      | 171 +++++++++++++++++++------------------
 data/gnome-video-arcade.schemas    |  12 +++
 docs/reference/tmpl/gva-audit.sgml |   1 -
 po/ChangeLog                       |   4 +
 po/POTFILES.in                     |   1 +
 src/gva-audit.c                    |  88 +++++++++++++++++--
 src/gva-audit.h                    |   2 +-
 src/gva-common.h                   |   1 +
 src/gva-tree-view.c                |   8 +-
 src/gva-ui.c                       |  27 +-----
 12 files changed, 224 insertions(+), 125 deletions(-)

commit a7f14e7f3d690d154d17d3e16fee972575d6b2fc
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Nov 6 03:11:31 2007 +0000

    2007-11-05  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.glade:
    	* src/gva-audit.c:
    	* src/gva-audit.h:
    	Finish implementing the audit results dialog.
    
    	* src/main.c (main):
    	Call gva_audit_init().
    
    	* src/gva-ui.h:
    	* src/gva-ui.c:
    	Define WIDGET macros for audit window.
    	Add GVA_ACTION_SAVE_ERRORS, which displays a "Save As" dialog and
    	calls gva_audit_save_errors().

 ChangeLog                                      |  16 ++
 NEWS                                           |   9 ++
 data/gnome-video-arcade.glade                  | 198 +++++++++++--------------
 docs/reference/gnome-video-arcade-sections.txt |   7 +-
 docs/reference/tmpl/gva-audit.sgml             |  15 ++
 docs/reference/tmpl/gva-ui.sgml                |   7 +
 src/gva-audit.c                                | 148 ++++++++++++++++--
 src/gva-audit.h                                |   6 +-
 src/gva-ui.c                                   |  44 ++++++
 src/gva-ui.h                                   |   9 ++
 src/main.c                                     |   2 +
 11 files changed, 333 insertions(+), 128 deletions(-)

commit 18caadb3b2924275d5c639fdd3070f64f3a83f93
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Nov 5 21:00:55 2007 +0000

    2007-11-05  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/Makefile.am:
    	Add gva-audit.[ch].
    
    	* src/gva-audit.h:
    	* src/gva-audit.c:
    	New source files for auditing ROM and sample sets.
    
    	* src/gva-main.c (gva_main_build_database):
    	Call gva_audit_roms() and gva_audit_samples().
    
    	* src/gva-db.c (gva_db_verify_romsets), (gva_db_verify_samplesets),
    	(db_verify_read), (db_verify_foreach), (db_verify_exit),
    	(db_verify_string_free):
    	* src/gva-mame-common.c (mame_verify_read), (mame_verify_exit):
    	Move these functions to gva-audit.c.
    
    	* src/gva-game-store.h:
    	* src/gva-game-store.c:
    	Inherit from GtkTreeStore instead of GtkListStore.
    
    	* src/gva-play-back.c: Adapt.
    	* src/gva-ui.c: Adapt.
    
    	* data/gnome-video-arcade.glade:
    	Early prototype for an audit results dialog.
    
    	* docs/reference:
    	Update developer documentation.

 ChangeLog                                      |  31 +++
 data/gnome-video-arcade.glade                  | 201 ++++++++++++++--
 docs/reference/Makefile.am                     |   1 +
 docs/reference/gnome-video-arcade-docs.sgml    |   1 +
 docs/reference/gnome-video-arcade-sections.txt |   9 +-
 docs/reference/tmpl/gva-audit.sgml             |  37 +++
 docs/reference/tmpl/gva-db.sgml                |  18 --
 docs/reference/tmpl/gva-mame.sgml              |   4 -
 src/Makefile.am                                |   2 +
 src/gva-audit.c                                | 309 +++++++++++++++++++++++++
 src/gva-audit.h                                |  40 ++++
 src/gva-db.c                                   | 155 -------------
 src/gva-db.h                                   |   2 -
 src/gva-game-store.c                           |  22 +-
 src/gva-game-store.h                           |   4 +-
 src/gva-main.c                                 |   5 +-
 src/gva-mame-common.c                          | 126 +---------
 src/gva-mame.h                                 |   8 +-
 src/gva-play-back.c                            |   8 +-
 src/gva-ui.c                                   |   8 +-
 20 files changed, 649 insertions(+), 342 deletions(-)

commit 79af787f54c40eab3616cb9d7d2b93d637a1b5a0
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Oct 27 20:21:37 2007 +0000

    2007-10-27  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gconf-bridge.c:
    	Use dashes instead of underscores in GConf key names.

 ChangeLog          |  5 +++++
 src/gconf-bridge.c | 22 +++++++++++-----------
 2 files changed, 16 insertions(+), 11 deletions(-)

commit 988ab7026a0c23364ec45c892744206d61d3aeb3
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Oct 27 17:19:56 2007 +0000

    2007-10-27  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac: Post-release version bump.

 ChangeLog    | 4 ++++
 configure.ac | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

commit 04f2f043868dd0370f8b449bfd62c60e1fa88378
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Oct 25 17:30:55 2007 +0000

    2007-10-25  Matthew Barnes  <mbarnes@redhat.com>
    
    	NEWS: Update for 0.5.1
    
    	These changes fix a deadlock condition that occurred when running
    	--verifyroms on sdlmame versions 0.114 and earlier, which printed
    	progress messages on stderr.  The GvaProcess read logic would get
    	stuck reading these progress messages, causing the stdout pipe to
    	overflow.  The child process would then block in a write() call
    	to stdout, and we would be blocked in a read() call to stderr.
    
    	* src/gva-mame-common.c (gva_mame_verify_roms),
    	(gva_mame_verify_samples):
    	Bump the prioritiy to G_PRIORITY_DEFAULT_IDLE, since these
    	tasks no longer run in the background during XML parsing.
    
    	* src/gva-process.c (process_read_line):
    	New function reads a line from the GIOChannel and appends it to the
    	input queue.  Replaces process_data_ready().
    
    	* src/gva-process.c (process_stdout_ready):
    	Call process_read_line() for as long as the G_IO_IN condition is set.
    	The looping is a performance enhancement for XML parsing.
    
    	* src/gva-process.c (process_stderr_ready):
    	Call process_read_line() once if the G_IO_IN condition is set.

 ChangeLog             | 27 +++++++++++++++
 NEWS                  | 10 ++++++
 configure.ac          |  2 +-
 src/gva-mame-common.c |  4 +--
 src/gva-process.c     | 91 ++++++++++++++++++++++++++++++---------------------
 5 files changed, 94 insertions(+), 40 deletions(-)

commit 2bcec9eb3942c59beeca362b10264a5259fb73b8
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Oct 20 16:02:08 2007 +0000

    2007-10-20  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-columns.c (columns_favorite_clicked_cb):
    	Use gtk_tree_view_column_get_tree_view(), if available.
    
    	* src/gva-ui.c (action_about_cb):
    	Fix the program name when using GTK+ 2.12.

 ChangeLog         | 8 ++++++++
 src/gva-columns.c | 5 ++++-
 src/gva-ui.c      | 4 ++++
 3 files changed, 16 insertions(+), 1 deletion(-)

commit 0acedddf7d8d2af0c3aed31efdf642400b2dfcc2
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Oct 17 20:47:20 2007 +0000

    2007-10-17  Matthew Barnes  <mbarnes@redhat.com>
    
    	* NEWS: Update for 0.5.0
    
    	* README:
    	Talk about new package requirements.
    	Reword some parts now that we have a user manual.
    
    	* configure.ac:
    	Add a --with-gnome option.
    
    	* Makefile.am:
    	Don't distribute the m4 directory.
    
    	* docs/reference/Makefile.am:
    	Add flags for linking to libgnomeui.
    
    	* help/C/gnome-video-arcade.xml:
    	Fix some validation errors.
    
    	* src/Makefile.am:
    	Add flags for linking to libgnomeui.
    
    	* src/main.c (main):
    	Call gnome_program_init() if we are linking to GNOME libraries,
    	otherwise call gtk_init_with_args().
    
    	* src/gva-main.c (gva_main_init):
    	Desensitize GVA_ACTION_CONTENTS if we are NOT linking to GNOME
    	libraries.
    
    	* src/gva-ui.c (action_contents_cb):
    	Call gnome_help_display() if we are linking to GNOME libraries,
    	otherwise do nothing (should be desensitized anyway).

 ChangeLog                     | 35 ++++++++++++++++++++++++++++
 Makefile.am                   |  1 -
 NEWS                          |  9 ++++----
 README                        | 54 ++++++++++++++++++++++++++++++-------------
 config.h.in                   |  3 +++
 configure.ac                  | 25 ++++++++++++++++----
 docs/reference/Makefile.am    |  2 ++
 help/C/gnome-video-arcade.xml | 44 ++++++++++++++++++++---------------
 src/Makefile.am               | 15 ++++++++----
 src/gva-main.c                |  5 +++-
 src/gva-ui.c                  | 29 +++++++++++++++++++++--
 src/main.c                    | 28 ++++++++++++++++++++--
 12 files changed, 198 insertions(+), 52 deletions(-)

commit 14e3d8166db7f5226524809d7b30ea61feacdeaf
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Oct 17 02:10:25 2007 +0000

    2007-10-16  Matthew Barnes  <mbarnes@redhat.com>
    
    	* help/C/figures/gva_recorded_games.png:
    	* help/C/figures/gva_search_window.png:
    	* help/C/gnome-video-arcade.xml:
    	* help/C/Makefile.am:
    	Finish the user documentation (first draft, anyway).

 ChangeLog                             |   8 ++
 help/C/figures/gva_recorded_games.png | Bin 0 -> 28991 bytes
 help/C/figures/gva_search_window.png  | Bin 0 -> 8940 bytes
 help/C/gnome-video-arcade.xml         | 200 ++++++++++++++++++++++++++++++++--
 help/Makefile.am                      |   4 +-
 5 files changed, 202 insertions(+), 10 deletions(-)

commit c5cf39615a47ce43786dcf979c6ef73fb15cbb49
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Oct 15 19:31:25 2007 +0000

    2007-10-15  Matthew Barnes  <mbarnes@redhat.com>
    
    	* help/C/gnome-video-arcade.xml:
    	Start on the "Usage" section of the user documentation.

 ChangeLog                     |   5 ++
 help/C/gnome-video-arcade.xml | 115 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 120 insertions(+)

commit 28adf7ed6329792a9ef2a3a33dc9366ea52d1d7a
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Oct 14 15:18:38 2007 +0000

    2007-10-14  Matthew Barnes  <mbarnes@redhat.com>
    
    	* help/C/figures/gva_building_database.png
    	* help/C/figures/gva_main_window.png
    	* help/C/gnome-video-arcade.xml
    	* help/Makefile.am:
    	Finish the "Getting Started" section of the user documentation.

 ChangeLog                                |   8 +++
 NEWS                                     |   3 +-
 help/C/figures/gva_building_database.png | Bin 0 -> 24603 bytes
 help/C/figures/gva_main_window.png       | Bin 0 -> 53124 bytes
 help/C/gnome-video-arcade.xml            | 113 +++++++++++++++++++++++++++++--
 help/Makefile.am                         |   6 +-
 6 files changed, 124 insertions(+), 6 deletions(-)

commit 3547946f8d1d96877232165a74a2a6880535ea34
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Oct 14 02:17:47 2007 +0000

    2007-10-13  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-history.c (gva_history_lookup):
    	Recent revisions of history.dat have added lines containing an
    	"Edit this entry at Arcade-History.com" HTML link between the $info
    	and $bio lines.  These new lines also start with '$', so modify the
    	parsing logic to ignore any lines starting with '$' that are not
    	$info or $end markers.  (Previously we were just checking for $bio
    	markers, so the raw HTML code got displayed in the UI.)
    
    	Perhaps in a future version we could actually display these links
    	as clickable widgets or text.

 ChangeLog         | 13 +++++++++++++
 src/gva-history.c |  7 ++++---
 2 files changed, 17 insertions(+), 3 deletions(-)

commit a68a08a4a185197bed379d052982ac9afd8ac337
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Oct 13 20:02:25 2007 +0000

    2007-10-13  Matthew Barnes  <mbarnes@redhat.com>
    
    	* AUTHORS: Add myself.
    
    	* src/gva-cell-renderer-pixbuf.h:
    	* src/gva-column-manager.h:
    	* src/gva-db.h:
    	* src/gva-game-store.h:
    	* src/gva-mame-process.h:
    	* src/gva-mame.h:
    	* src/gva-process.h:
    	Finish developer documentation (100% coverage).

 AUTHORS                        |  1 +
 ChangeLog                      | 13 +++++++++++++
 src/gva-cell-renderer-pixbuf.h |  6 ++++++
 src/gva-column-manager.h       |  7 +++++++
 src/gva-db.h                   |  2 ++
 src/gva-game-store.h           |  9 +++++++++
 src/gva-mame-process.h         |  9 +++++++++
 src/gva-mame.h                 |  6 ++++++
 src/gva-process.h              |  9 +++++++++
 9 files changed, 62 insertions(+)

commit aa9203e13ac3657a7b614616b3d65be5d39c5371
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Oct 13 17:12:54 2007 +0000

    Forgot to add help/Makefile.am.

 help/Makefile.am | 10 ++++++++++
 1 file changed, 10 insertions(+)

commit f0c6585b9fbabdc64625d5207453a5d652ca62f7
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Oct 13 16:14:42 2007 +0000

    2007-10-13  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-db.c:
    	* docs/reference:
    	Add more developer documentation (94% coverage).
    
    	* configure.ac:
    	* Makefile.am:
    	* help/C/gnome-video-arcade.xml:
    	* help/C/legal.xml:
    	* help/gnome-video-arcade.omf.in:
    	Set up a gnome-doc-utils framework and begin writing user
    	documentation for Yelp.
    
    	* src/gva-columns (gva_columns_load):
    	Fall back to the default columns if the visible column list in
    	GConf is empty to ensure that *something* gets displayed at startup.
    
    	* src/main.c:
    	* src/gva-common.h:
    	* docs/gnome-video-arcade.1:
    	Add --inspect=NAME command-line option.
    	Prints the value of the given MAME configuration key and exits.
    
    	* src/gva-main.c (gva_main_init):
    	Desensitize GVA_ACTION_CONTENTS for now.  Making this work is going
    	to require linking against libgnome, which is unfortunate.  I plan to
    	make it optional by providing a --without-help configure option, which
    	would desensitize GVA_ACTION_CONTENTS as I'm doing now.

 ChangeLog                      |  30 +++++++++
 Makefile.am                    |   9 ++-
 NEWS                           |  16 +++++
 configure.ac                   |   3 +
 docs/gnome-video-arcade.1      |   3 +
 help/C/gnome-video-arcade.xml  | 139 ++++++++++++++++++++++++++++++++++++++
 help/C/legal.xml               |  76 +++++++++++++++++++++
 help/ChangeLog                 |   0
 help/gnome-video-arcade.omf.in |   9 +++
 src/gva-columns.c              |   9 +++
 src/gva-common.h               |   1 +
 src/gva-db.c                   | 148 +++++++++++++++++++++++++++++++++++++++++
 src/gva-main.c                 |   2 +
 src/gva-util.c                 |   1 +
 src/main.c                     |  23 +++++++
 15 files changed, 467 insertions(+), 2 deletions(-)

commit e81512517a7c74612e17f9a686813f35cab6b566
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Oct 10 23:33:53 2007 +0000

    Forgot to commit the ChangeLog.

 ChangeLog | 12 ++++++++++++
 1 file changed, 12 insertions(+)

commit 66dd46eb95aa7da0b95fa377337e8d68eadc90cd
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Oct 10 23:17:19 2007 +0000

    2007-10-10  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-error.h:
    	* src/gva-game-store.c:
    	* src/gva-mame-common.c:
    	* src/gva-mame-common.h:
    	* src/gva-mame.h:
    	* src/gva-search.c:
    	* src/gva-tree-view.c:
    	* src/gva-util.c:
    	Add more developer documentation (88% coverage).

 src/gva-error.h       |  15 +++--
 src/gva-game-store.c  |   3 +-
 src/gva-mame-common.c | 181 ++++++++++++++++++++++++++++++++++++++++++++++++++
 src/gva-mame-common.h |   8 +++
 src/gva-mame.h        |  34 +++++++++-
 src/gva-search.c      |   6 +-
 src/gva-tree-view.c   |  15 +++--
 src/gva-util.c        |   8 ++-
 8 files changed, 249 insertions(+), 21 deletions(-)

commit 1857f8d4b13863a33d2a4c7166da7c51d1d9545c
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Oct 10 17:46:36 2007 +0000

    2007-10-10  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-game-store.c:
    	* src/gva-mame-process.c:
    	* src/gva-process.c:
    	* src/gva-util.c:
    	* docs/reference:
    	Add more developer documentation (79% coverage).

 ChangeLog                                      |   9 +
 docs/reference/gnome-video-arcade-sections.txt |   2 +-
 docs/reference/tmpl/gva-process.sgml           |   6 -
 src/gva-game-store.c                           |  48 ++++++
 src/gva-mame-process.c                         |  13 ++
 src/gva-process.c                              | 219 +++++++++++++++++++++++++
 src/gva-util.c                                 |   2 +
 7 files changed, 292 insertions(+), 7 deletions(-)

commit adc9bcee92a5f14b9019eb9bd2711db3ed60c788
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Oct 8 21:15:14 2007 +0000

    2007-10-08  Matthew Barnes  <mbarnes@redhat.com>
    
    	Revert the previous changes.  I ran into too many complications
    	trying to get cursor movement from the Properties window to work
    	right.  Maybe try again at some later date.
    
    	* docs/Makefile.am:
    	* docs/gnome-video-arcade.1:
    	Add a manual page.

 ChangeLog                                      | 10 ++++++
 data/gnome-video-arcade.glade                  | 43 +++++++++-----------------
 data/gnome-video-arcade.schemas                | 14 ---------
 docs/Makefile.am                               |  4 +++
 docs/gnome-video-arcade.1                      | 40 ++++++++++++++++++++++++
 docs/reference/gnome-video-arcade-sections.txt |  4 ---
 docs/reference/tmpl/gva-preferences.sgml       | 16 ----------
 docs/reference/tmpl/gva-ui.sgml                |  7 -----
 src/gva-columns.c                              | 23 +-------------
 src/gva-common.h                               |  1 -
 src/gva-preferences.c                          | 43 --------------------------
 src/gva-preferences.h                          |  2 --
 src/gva-ui.c                                   | 18 -----------
 src/gva-ui.h                                   |  3 --
 14 files changed, 70 insertions(+), 158 deletions(-)

commit ade139aa06c147fd3ba88ae890a885418086c400
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Oct 7 17:47:26 2007 +0000

    2007-10-07  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.glade:
    	Add a new check button in the Preferences window for grouping
    	cloned games underneath the original game in the main window.
    	Doesn't do anything quite yet.
    
    	* data/gnome-video-arcade.schemas:
    	Add group-clones key.
    
    	* docs/reference:
    	Add docs for new symbols.
    
    	* src/gva-common.h:
    	Add GVA_GCONF_GROUP_CLONES_KEY.
    
    	* src/gva-columns.c:
    	Add a "Clone Of" column.
    
    	* src/gva-preferences.c (gva_preferences_init):
    	Wire up the "group-clones" action, widget, and GConf key.
    
    	* src/gva-preferences.c (gva_preferences_get_group_clones),
    	(gva_preferences_set_group_clones):
    	New functions for getting and setting the "group-clones" user
    	preference.
    
    	* src/gva-ui.h:
    	Add GVA_ACTION_GROUP_CLONES and GVA_WIDGET_PREFERENCES_GROUP_CLONES.
    
    	* src/gva-ui.c:
    	Define a GtkToggleAction named "group-clones".

 ChangeLog                                      | 33 ++++++++++++++++++++
 data/gnome-video-arcade.glade                  | 43 +++++++++++++++++---------
 data/gnome-video-arcade.schemas                | 14 +++++++++
 docs/reference/gnome-video-arcade-sections.txt |  4 +++
 docs/reference/tmpl/gva-preferences.sgml       | 16 ++++++++++
 docs/reference/tmpl/gva-ui.sgml                |  7 +++++
 src/gva-columns.c                              | 23 +++++++++++++-
 src/gva-common.h                               |  1 +
 src/gva-preferences.c                          | 43 ++++++++++++++++++++++++++
 src/gva-preferences.h                          |  2 ++
 src/gva-ui.c                                   | 18 +++++++++++
 src/gva-ui.h                                   |  3 ++
 12 files changed, 191 insertions(+), 16 deletions(-)

commit fadd95a903f016aba6f28f057252035504820992
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Sep 28 20:59:01 2007 +0000

    2007-09-28  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.glade:
    	Some minor UI tweaks.

 ChangeLog                     |  5 ++++
 data/gnome-video-arcade.glade | 53 +++++++++++++++----------------------------
 2 files changed, 23 insertions(+), 35 deletions(-)

commit 9cddc363ef30cd56539e0ea99ea48f0a8a8d9628
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Sep 27 11:29:49 2007 +0000

    2007-09-27  Matthew Barnes  <mbarnes@redhat.com>
    
    	* po/LINGUAS: Add French (fr).
    
    	* po/fr.po: French translation from ElGeneralMidi.

 configure.ac |   2 +-
 po/ChangeLog |   6 +
 po/LINGUAS   |   1 +
 po/fr.po     | 387 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 395 insertions(+), 1 deletion(-)

commit fcc1199456b51c7a0fa7f1c405e755aae3b3a115
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Sep 21 14:47:37 2007 +0000

    2007-09-21  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/Makefile.am:
    	Replace -Werror with -Wall (SF bug #1799564).
    
    	* src/main.c:
    	* src/gva-columns.c:
    	* src/gva-db.c:
    	* src/gva-game-store.c:
    	* src/gva-main.c:
    	* src/gva-mame-common.c:
    	* src/gva-properties.c:
    	* src/gva-tree-view.c:
    	* src/gva-ui.c:
    	* src/gva-util.c:
    	Fix a bunch of compiler warnings caught by -Wall.  Most of them
    	were just unused variables or missing #includes.

 ChangeLog             | 18 ++++++++++++++++++
 src/Makefile.am       |  2 +-
 src/gva-columns.c     |  5 +++--
 src/gva-db.c          |  6 ++----
 src/gva-game-store.c  | 10 +++++++---
 src/gva-main.c        |  5 +++--
 src/gva-mame-common.c |  2 +-
 src/gva-properties.c  |  2 +-
 src/gva-tree-view.c   |  1 -
 src/gva-ui.c          |  1 -
 src/gva-util.c        |  1 -
 src/main.c            |  3 ++-
 12 files changed, 38 insertions(+), 18 deletions(-)

commit 88d4f74f752df2b005d9545f6ce7ce9baeb9b9c6
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Sep 21 02:07:23 2007 +0000

    2007-09-20  Matthew Barnes  <mbarnes@redhat.com>
    
    	* NEWS: Update for 0.4.5.1
    
    	* src/gva-columns.c (columns_driver_status_set_properties):
    	Use "emblem-default" for working games (status == "good").

 ChangeLog         |  7 +++++++
 NEWS              |  9 +++++++++
 configure.ac      |  2 +-
 src/gva-columns.c | 10 +++++++++-
 4 files changed, 26 insertions(+), 2 deletions(-)

commit 7bd1423e01e0fdd1ae633b75d36ff7ab49bd00ef
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Sep 20 19:33:04 2007 +0000

    2007-09-20  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-db.c (db_parser_start_element):
    	Parse <input> elements to make the Players column work again.

 ChangeLog    | 9 +++++++--
 src/gva-db.c | 4 ++++
 2 files changed, 11 insertions(+), 2 deletions(-)

commit f42505b0ba1d8060e582ae39be9d00610e2665b5
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Sep 20 16:40:33 2007 +0000

    2007-09-18  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-ui.c:
    	Make Ctrl-P an accelerator for Properties.

 ChangeLog    | 5 +++++
 src/gva-ui.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

commit a17ef652ad25bb1087315a229790bfa9dc516c6e
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Sep 20 14:56:47 2007 +0000

    2007-09-18  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-db.c (db_parser_start_element):
    	Parse <driver> elements to make the Status column work again.

 ChangeLog    | 5 +++++
 src/gva-db.c | 6 +++++-
 2 files changed, 10 insertions(+), 1 deletion(-)

commit 08bdcbd949742d6a6aeec2684ccc6923fc908b13
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Sep 20 04:33:05 2007 +0000

    2007-09-18  Matthew Barnes  <mbarnes@redhat.com>
    
    	* NEWS: Update for 0.4.5
    
    	* docs/reference:
    	Add docs for new functions.
    
    	* src/main.c (start):
    	Adapt to new gva_main_build_database() behavior.
    
    	* src/gva-db.c (gva_db_verify_romsets), (gva_db_verify_samplesets):
    	New functions separate the verification phase of the game database
    	construction from the XML parsing phase so they can be serialized.
    
    	* src/gva-db.c (db_parser_start_element), (gva_db_parser_end_element):
    	Skip over unused elements to speed up XML parsing.
    
    	* src/gva-db.c (db_parser_end_element_game):
    	Call gva_process_inc_progress() instead of gva_process_set_progress()
    	so that we don't have to maintain our own progress counter.
    
    	* src/gva-process.c (gva_process_inc_progress):
    	New function increments the progress property.
    
    	* src/gva-main (gva_main_build_database):
    	This is now a *synchronous* function that more accurately reports
    	database construction progress.  Construction is now broken into
    	two separate phases -- XML parsing and ROM verification -- and the
    	status and progress bars are updated accordingly for each phase.

 ChangeLog                                      |  30 +++
 NEWS                                           |  13 +-
 README                                         |   4 +-
 configure.ac                                   |   2 +-
 docs/reference/gnome-video-arcade-sections.txt |   3 +
 docs/reference/tmpl/gva-db.sgml                |  18 ++
 docs/reference/tmpl/gva-process.sgml           |   8 +
 src/gva-db.c                                   | 257 +++++++++++++++----------
 src/gva-db.h                                   |   2 +
 src/gva-main.c                                 | 101 +++++++---
 src/gva-main.h                                 |   2 +-
 src/gva-mame-common.c                          |   1 +
 src/gva-process.c                              |  11 +-
 src/gva-process.h                              |   1 +
 src/main.c                                     |  16 +-
 15 files changed, 321 insertions(+), 148 deletions(-)

commit be338635b1f4220a54dc76c3d2eeef85ec0bc1dd
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Sep 19 13:54:19 2007 +0000

    2007-09-18  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-columns.c:
    	Add a "Status" column showing a warning or error symbol as
    	described below.  Putting an icon next to the game title is
    	too distracting, but at least now there's infrastructure for
    	doing fancy things like that.

 ChangeLog         |  8 ++++++++
 src/gva-columns.c | 49 +++++++++++++++++++++++++++++++++----------------
 2 files changed, 41 insertions(+), 16 deletions(-)

commit 303695f434428268397e25c4aac37c0a07685780
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Sep 19 11:27:59 2007 +0000

    2007-09-18  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-search.c:
    	Allow an empty search entry to clear the Search Results view.

 ChangeLog                     |  5 +++++
 data/gnome-video-arcade.glade | 51 +++++++++++++++++++++++++++++--------------
 src/gva-columns.c             |  1 +
 src/gva-search.c              | 23 +++++--------------
 4 files changed, 47 insertions(+), 33 deletions(-)

commit 04588878e8d8c2d62694eebc58e6207207730bfc
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Sep 19 04:18:33 2007 +0000

    2007-09-18  Matthew Barnes  <mbarnes@redhat.com>
    
    	* docs/reference:
    	Add docs for gva_columns_get_names_full().
    
    	* src/gva-columns.c:
    	Add an icon next to the game title indicating if emulation of the
    	game has known issues.  Use a warning symbol for minor issues and
    	an error symbol for major issues.
    
    	* src/gva-columns.c (gva_columns_get_names_full):
    	New function returns a list of tree view column names from the
    	given GtkTreeView, plus any additional column names from the game
    	database necessary to render the tree view cells.
    
    	* src/gva-tree-view.c (gva_tree_view_run_query):
    	Call gva_columns_get_names_full().

 ChangeLog                                      |  18 +++
 docs/reference/gnome-video-arcade-sections.txt |   1 +
 docs/reference/tmpl/gva-columns.sgml           |   9 ++
 src/gva-columns.c                              | 191 +++++++++++++++++--------
 src/gva-columns.h                              |  15 +-
 src/gva-tree-view.c                            |   2 +-
 6 files changed, 171 insertions(+), 65 deletions(-)

commit 12e705eef7de294f459911763661b82f0df8ea54
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Sep 19 03:38:27 2007 +0000

    2007-09-18  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-tree-view.c (gva_tree_view_init):
    	Make searching work again; this broke at some point.
    
    	* src/gva-tree-view.c (gva_tree_view_update):
    	Tinker with the search query, add 'sourcefile' field.

 ChangeLog           |  8 ++++++++
 src/gva-tree-view.c | 13 ++++++++++---
 2 files changed, 18 insertions(+), 3 deletions(-)

commit c89748340f7d7807392f714e956fc8b02c0fff82
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Sep 18 18:52:55 2007 +0000

    2007-09-18  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-columns.c:
    	Add a "Driver" column.
    
    	* src/gva-game-store.c (game_store_compare):
    	General-purpose sort function for any column.
    	Falls back to default sort column if values are equal.
    
    	* src/gva-game-store.c (game_store_description_compare),
    	(game_store_time_compare): Removed.
    
    	* src/gva-game-store.c (game_store_constructor):
    	Register a sort function for all columns.

 ChangeLog            |  15 +++++
 NEWS                 |  10 +++
 src/gva-columns.c    |  23 ++++++-
 src/gva-game-store.c | 177 ++++++++++++++++++++++++++++-----------------------
 4 files changed, 144 insertions(+), 81 deletions(-)

commit baf16dd12324cd615c377957cebd918a05d536b7
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Sep 16 06:05:05 2007 +0000

    2007-09-16  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-mame-common.c (gva_mame_playback_game):
    	Make playback work with SDLMAME.

 ChangeLog             | 5 +++++
 src/gva-mame-common.c | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

commit ade0627f8ecf92b2440125445a61d50f275f0214
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Sep 16 03:48:27 2007 +0000

    2007-09-15  Matthew Barnes  <mbarnes@redhat.com>
    
    	* NEWS: Update for 0.4.4
    
    	* data/gnome-video-arcade.glade:
    	Simplify the search window for basic searching.
    
    	* data/gnome-video-arcade.schemas:
    	Add search key.
    
    	* docs/reference/gnome-video-arcade-docs.sgml:
    	* docs/reference/gnome-video-arcade-sections.txt:
    	Add search documentation.
    
    	* src/Makefile.am:
    	Add gva-search.[ch].
    
    	* src/main.c (main):
    	Call gva_search_init().
    
    	* src/gva-common.h:
    	Add GVA_GCONF_SEARCH_KEY.
    
    	* src/gva-search.[ch]:
    	New source files implement the search window.
    
    	* src/gva-tree-view.c (gva_tree_view_update):
    	Build a query for the "Search Results" view.
    
    	* src/gva-ui.h:
    	Add GVA_WIDGET_SEARCH_ENTRY and GVA_WIDGET_SEARCH_FIND_BUTTON.

 ChangeLog                                      |  32 +++++
 NEWS                                           |  10 ++
 README                                         |   4 +-
 configure.ac                                   |   2 +-
 data/gnome-video-arcade.glade                  | 174 ++-----------------------
 data/gnome-video-arcade.schemas                |  12 ++
 docs/reference/Makefile.am                     |   1 +
 docs/reference/gnome-video-arcade-docs.sgml    |   1 +
 docs/reference/gnome-video-arcade-sections.txt |  10 ++
 docs/reference/tmpl/gva-search.sgml            |  51 ++++++++
 src/Makefile.am                                |   2 +
 src/gva-common.h                               |   3 +-
 src/gva-search.c                               | 152 +++++++++++++++++++++
 src/gva-search.h                               |  45 +++++++
 src/gva-tree-view.c                            |  29 ++++-
 src/gva-ui.h                                   |   4 +
 src/main.c                                     |   8 +-
 17 files changed, 366 insertions(+), 174 deletions(-)

commit e55e0ec9b32ae0184f2986ce5ab5c755282b3007
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Sep 15 21:57:17 2007 +0000

    2007-09-15  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-columns.c:
    	Add a "Players" column.

 ChangeLog         |  5 +++++
 src/gva-columns.c | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++-
 2 files changed, 61 insertions(+), 1 deletion(-)

commit 4d321ababbffda169c6e639cc54c88d6cbea5e4c
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Sep 1 14:02:02 2007 +0000

    2007-09-01  Matthew Barnes  <mbarnes@redhat.com>
    
    	* NEWS: Update for 0.4.3
    
    	* src/main.c:
    	* src/gva-common.h:
    	Add --version command-line option.
    	Prints the program version and exits.
    
    	* po/POTFILES.in: Add src/gconf-bridge.c.

 ChangeLog        |  9 +++++++++
 NEWS             | 19 +++++++++++--------
 configure.ac     |  2 +-
 po/ChangeLog     |  4 ++++
 po/POTFILES.in   |  1 +
 src/gva-common.h |  1 +
 src/gva-util.c   |  1 +
 src/main.c       | 10 ++++++++++
 8 files changed, 38 insertions(+), 9 deletions(-)

commit 91543bdae999a7ad140dd6ef26956988f5c565aa
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Sep 1 04:50:20 2007 +0000

    2007-09-01  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-tree-view.c (gva_tree_view_run_query):
    	Resize the columns after setting a new tree model.

 ChangeLog           | 5 +++++
 src/gva-tree-view.c | 1 +
 2 files changed, 6 insertions(+)

commit 2793b25730a4214775d515a251358f8770381f9c
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Sep 1 04:27:10 2007 +0000

    2007-09-01  Matthew Barnes  <mbarnes@redhat.com>
    
    	* Add some more developer documentation.

 ChangeLog                                      |  4 ++
 docs/reference/gnome-video-arcade-sections.txt |  2 +-
 docs/reference/tmpl/gva-column-manager.sgml    |  6 ---
 src/gva-cell-renderer-pixbuf.c                 | 15 ++++++
 src/gva-cell-renderer-pixbuf.h                 |  4 ++
 src/gva-column-manager.c                       | 24 +++++++++
 src/gva-column-manager.h                       |  3 ++
 src/gva-columns.c                              | 72 ++++++++++++++++++++++++++
 src/gva-columns.h                              |  2 +
 src/gva-error.h                                | 15 ++++--
 src/gva-favorites.h                            |  2 +
 src/gva-history.h                              |  3 ++
 src/gva-main.h                                 |  5 ++
 src/gva-mame-common.h                          |  4 +-
 src/gva-mame.h                                 |  3 ++
 src/gva-play-back.h                            |  2 +
 src/gva-preferences.h                          |  2 +
 src/gva-properties.h                           |  2 +
 src/gva-time.h                                 | 13 +++--
 src/gva-tree-view.h                            |  2 +
 src/gva-ui.h                                   |  3 ++
 src/gva-util.h                                 |  3 ++
 22 files changed, 171 insertions(+), 20 deletions(-)

commit 7826b520ea530644360e5fd42dea2d38faaf3274
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Sep 1 01:41:43 2007 +0000

    2007-08-31  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/main.c (start):
    	Bind to "selected-view" GConf key after database is built.
    
    	* src/gva-main (gva_main_init):
    	Move "selected-view" GConf key binding to start().

 ChangeLog      | 8 ++++++++
 src/gva-main.c | 5 -----
 src/main.c     | 4 ++++
 3 files changed, 12 insertions(+), 5 deletions(-)

commit 162deb970b8f6efbc3ddf6617e68f9225a59a678
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Aug 31 23:20:49 2007 +0000

    Remove intltool-extract.in and intltool-update.in from version control.

 intltool-extract.in |  861 -------------------------------------
 intltool-update.in  | 1164 ---------------------------------------------------
 2 files changed, 2025 deletions(-)

commit ffcbe6f67233eb19b4b3022d590def5db123b0d4
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Aug 30 21:01:25 2007 +0000

    2007-08-30  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-tree-view.c (gva_tree_view_run_query):
    	Leave the tree view insensitive if the query comes back empty.

 ChangeLog           | 5 +++++
 src/gva-tree-view.c | 4 +++-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit a534b99af7811c34a3ec820c2cd7f9a7625c1a2d
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Aug 30 20:02:41 2007 +0000

    2007-08-30  Matthew Barnes  <mbarnes@redhat.com>
    
    	* intltool-extract.in:
    	* intltool-update.in:
    	Upgrade to intltool 0.36.
    
    	* docs/reference/Makefile.am:
    	Add gconf-bridge.o to GTKDOC_LIBS.
    
    	* docs/reference/gnome-video-arcade-sections.txt:
    	Add symbols from gnome-video-arcade-unused.txt.
    
    	* src/gva-main.c (gva_main_init):
    	Bind to "selected-view" GConf key after main window is realized.
    
    	* src/gva-tree-view.c (gva_tree_view_init):
    	Move "selected-view" GConf key binding to gva_main_init().

 ChangeLog                                      |  18 ++++
 NEWS                                           |   1 +
 docs/reference/Makefile.am                     |   1 +
 docs/reference/gnome-video-arcade-sections.txt |   8 ++
 docs/reference/tmpl/gva-column-manager.sgml    |  18 ++++
 docs/reference/tmpl/gva-db.sgml                |  27 ++++++
 docs/reference/tmpl/gva-ui.sgml                |   7 ++
 docs/reference/tmpl/gva-util.sgml              |   8 ++
 intltool-extract.in                            |   4 +-
 intltool-update.in                             | 110 ++++++++++++++++++++-----
 src/gva-main.c                                 |   5 ++
 src/gva-tree-view.c                            |   4 -
 12 files changed, 183 insertions(+), 28 deletions(-)

commit 8cad32d8a587972a11202341108fb167d873dcaf
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Aug 22 14:47:55 2007 +0000

    2007-08-22  Matthew Barnes  <mbarnes@redhat.com>
    
    	* Embed gconf-bridge into GNOME Video Arcade rather than
    	  requiring it as an external dependency.  Some GNU/Linux
    	  distros (e.g. Fedora) do not provide libgconf-bridge.
    
    	* configure.ac:
    	Revert previous changes.
    
    	* data/gnome-video-arcade.glade:
    	Hide the main window until we've initialized it.
    
    	* data/gnome-video-arcade.schemas:
    	Fix some typos.
    
    	* docs/reference/Makefile.am:
    	Revert previous changes and ignore gconf-bridge.h.
    
    	* src/Makefile.am:
    	Revert previous changes and add gconf-bridge.[ch] to SOURCES.
    
    	* src/gconf-bridge.[ch]:
    	New source files ripped from libgconf-bridge.
    
    	* src/gva-main.c (gva_main_init):
    	Show the window after initialization is complete.

 ChangeLog                                      |   27 +
 NEWS                                           |   11 +
 configure.ac                                   |    5 -
 data/gnome-video-arcade.glade                  |   59 +-
 data/gnome-video-arcade.schemas                |    6 +-
 docs/reference/Makefile.am                     |    4 +-
 docs/reference/gnome-video-arcade-sections.txt |    2 -
 docs/reference/tmpl/gva-tree-view.sgml         |   16 -
 src/Makefile.am                                |   11 +-
 src/gconf-bridge.c                             | 1249 ++++++++++++++++++++++++
 src/gconf-bridge.h                             |  117 +++
 src/gva-common.h                               |    2 +-
 src/gva-main.c                                 |    2 +
 13 files changed, 1446 insertions(+), 65 deletions(-)

commit 94029264bc1a1823ae140a8d0e16ba59638b9f14
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Aug 22 12:08:15 2007 +0000

    2007-08-22  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac:
    	Check for libgconf-bridge.
    
    	* data/gnome-video-arcade.glade:
    	Prototype a search window; not yet working.
    
    	* data/gnome-video-arcade.schemas:
    	Add window-height, window-maximized, and window-width keys.
    
    	* src/Makefile.am:
    	* docs/reference/Makefile.am:
    	Add @GCONF_BRIDGE_CFLAGS@ and @GCONF_BRIDGE_LIBS@.
    
    	* src/main.c (start):
    	Simplify the "force a tree view update" logic.
    
    	* src/gva-common.h:
    	#include <libgconf-bridge/gconf-bridge.h>
    	Add GVA_GCONF_WINDOW_PREFIX.
    
    	* src/gva-main.c (gva_main):
    	Use GConfBridge to remember main window size.
    
    	* src/gva-preferences.c (gva_preferences_init):
    	Use GConfBridge to sync GConf keys with toggle actions.
    
    	* src/gva-preferences.c (gva_preferences_get_auto_save),
    	(gva_preferences_set_auto_save), (gva_preferences_get_full_screen),
    	(gva_preferences_set_full_screen):
    	Just get/set the toggle action's checked state.
    	Changes will get propagated to GConf automatically.
    
    	* src/gva-tree-view.c (gva_tree_view_init):
    	Use GConfBridge to sync GConf "selected-view" key with radio action.
    
    	* src/gva-tree-view.c (gva_tree_view_get_last_selected_view),
    	(gva_tree_view_set_last_selected_view):
    	Remove these functions; GConfBridge does the work for us.
    
    	* src/gva-ui.c (action_auto_save_cb), (action_full_screen_cb):
    	Remove these callbacks; nothing for them to do now.
    
    	* src/gva-ui.h:
    	Add GVA_ACTION_SEARCH and GVA_WIDGET_SEARCH_WINDOW.
    
    	* src/gva-ui.c (action_search_cb):
    	Show a prototype, non-working search window.

 ChangeLog                       |  52 ++++++++-
 INSTALL                         |  50 ++++-----
 configure.ac                    |   5 +
 data/gnome-video-arcade.glade   | 231 +++++++++++++++++++++++++++++++++++++---
 data/gnome-video-arcade.schemas |  38 ++++++-
 docs/reference/Makefile.am      |   2 +
 src/Makefile.am                 |   9 +-
 src/gva-common.h                |   2 +
 src/gva-main.c                  |   4 +
 src/gva-preferences.c           |  58 +++-------
 src/gva-tree-view.c             |  56 +---------
 src/gva-tree-view.h             |   2 -
 src/gva-ui.c                    |  32 ++----
 src/gva-ui.h                    |   5 +
 src/main.c                      |   5 +-
 15 files changed, 382 insertions(+), 169 deletions(-)

commit 96a1a9e8489222f7357f4a84c07f9bf96101ab3b
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Aug 13 16:54:07 2007 +0000

    2007-08-13  Matthew Barnes  <mbarnes@redhat.com>
    
    	* gva-db.c:
    	Parse the rest of the XML elements.

 ChangeLog    |   5 +
 src/gva-db.c | 689 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++--
 2 files changed, 671 insertions(+), 23 deletions(-)

commit 7f7a4fe4f09b91fd380369f2d27b4bd39e0c142a
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Aug 8 03:22:13 2007 +0000

    2007-08-07  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac:
    	Don't need to check for pkg-config.
    
    	* maint/Makefile.am:
    	Install a widget icon for Glade.
    	Use $(PKG_CONFIG) instead of $(PKGCONFIG).
    
    	* maint/widget-gva-column-manager.png:
    	GvaColumnManager widget icon for Glade.

 ChangeLog                           |  12 ++++++++++++
 configure.ac                        |   1 -
 maint/Makefile.am                   |  14 +++++++++-----
 maint/widget-gva-column-manager.png | Bin 0 -> 2084 bytes
 4 files changed, 21 insertions(+), 6 deletions(-)

commit 13c734b1f27fa75a525a249839fb54d39e05680f
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Aug 3 03:05:36 2007 +0000

    2007-08-02  Matthew Barnes  <mbarnes@redhat.com>
    
    	* NEWS: Update for 0.4.2
    
    	* README: Mention --enable-gtk-doc.
    
    	* Makefile.am:
    	Distcheck should enable Gtk-Doc.
    
    	* src/gva-error.[ch]:
    	* src/gva-tree-view.c:
    	Document this stuff.

 ChangeLog                                      | 13 ++++
 Makefile.am                                    |  2 +
 NEWS                                           |  2 +-
 README                                         |  4 ++
 docs/reference/Makefile.am                     |  2 +-
 docs/reference/gnome-video-arcade-docs.sgml    |  1 -
 docs/reference/gnome-video-arcade-sections.txt | 20 +-----
 docs/reference/tmpl/gva-error.sgml             | 16 -----
 src/gva-error.c                                |  7 ++
 src/gva-error.h                                | 26 +++++++
 src/gva-tree-view.c                            | 93 +++++++++++++++++++++++---
 11 files changed, 138 insertions(+), 48 deletions(-)

commit 9439040c008eff0d655b0f47c56307a9e93d0bb2
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Aug 2 14:04:58 2007 +0000

    2007-08-02  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.glade:
    	Connect to some of the tree view signals.
    
    	* docs/references/gnome-video-arcade-sections.txt:
    	* src/gva-tree-view.h:
    	Add tree view signal handlers to Gtk-Doc output.
    
    	* src/gva-columns.c (gva_columns_load):
    	Block "columns-changed" signals while loading columns.
    
    	* src/gva-columns.c (gva_columns_save):
    	Abort the save if the tree view is being destroyed.
    
    	* src/gva-tree-view.c:
    	Fix a crash when pressing the context menu _keyboard_ button.
    	Expose signal handlers so Glade can auto-connect them.
    	Document some of the public functions.

 ChangeLog                                      |  20 ++
 data/gnome-video-arcade.glade                  |  34 ++--
 docs/reference/gnome-video-arcade-sections.txt |   3 +
 docs/reference/tmpl/gva-tree-view.sgml         |  35 +++-
 src/gva-columns.c                              |  13 ++
 src/gva-tree-view.c                            | 242 +++++++++++++++++--------
 src/gva-tree-view.h                            |  15 +-
 7 files changed, 263 insertions(+), 99 deletions(-)

commit 08e25e2505289d4a951c016890d79bee28c97440
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Aug 1 04:21:42 2007 +0000

    2007-08-01  Matthew Barnes  <mbarnes@redhat.com>
    
    	* INSTALL:
    	Updated instructions from automake 1.10.
    
    	* configure.ac:
    	* Makefile.am:
    	Activate the new "maint" directory when in maintainer mode.
    
    	* data/gnome-video-arcade.glade:
    	* src/gva-preferences.c:
    	Load the GvaColumnManager directly from the Glade XML file.
    
    	* src/gva-column-manager.c:
    	Allow the "managed-view" property to be set at any time.
    
    	* src/gva-ui.h:
    	No longer need access to "preferences-columns-inner-vbox".
    
    	* src/gva-ui.c (gva_ui_init):
    	Register custom widgets with libglade.
    	Let libglade know that we provide the "gva" library.
    
    	* maint/Makefile.am:
    	Installs a Glade widget plugin for GNOME Video Arcade.
    	Only builds in maintainer mode.
    
    	* maint/gva.xml:
    	Glade catalog file for custom GNOME Video Arcade widgets.

 ChangeLog                     | 30 +++++++++++++++++
 INSTALL                       | 50 ++++++++++++++--------------
 Makefile.am                   |  4 +++
 configure.ac                  | 11 +++++--
 data/gnome-video-arcade.glade | 55 ++++++++++++++++++++++---------
 maint/Makefile.am             | 24 ++++++++++++++
 maint/gva.xml                 | 17 ++++++++++
 src/gva-column-manager.c      | 77 +++++++++++++++++++++++++++++--------------
 src/gva-column-manager.h      |  5 +++
 src/gva-preferences.c         | 39 +++++-----------------
 src/gva-ui.c                  | 19 ++++++++---
 src/gva-ui.h                  |  2 --
 12 files changed, 228 insertions(+), 105 deletions(-)

commit f308a6d6741bb09d4c2682c93cd48175f7363616
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Jul 31 16:45:12 2007 +0000

    2007-07-31  Matthew Barnes  <mbarnes@redhat.com>
    
    	* docs/references/gnome-video-arcade-sections.txt:
    	Don't list GVA_WIDGET_* symbols in the Reference Manual.
    
    	* src/gva-ui.c:
    	Document the actions.

 ChangeLog                                          |   8 +
 docs/reference/gnome-video-arcade-sections.txt     |   7 +-
 docs/reference/tmpl/gnome-video-arcade-unused.sgml |  56 -------
 docs/reference/tmpl/gva-ui.sgml                    | 182 ---------------------
 src/gva-ui.c                                       | 167 +++++++++++++++++++
 5 files changed, 179 insertions(+), 241 deletions(-)

commit 83e1133a38cfba398d6036153e589cc8662700db
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Jul 31 01:13:22 2007 +0000

    2007-07-30  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac:
    	Bump libglade requirement from 2.0.0 to 2.6.0.
    
    	* data/gnome-video-arcade.glade:
    	Specify signal handlers for various widgets.
    
    	* src/Makefile.am:
    	Add linker flag -export-dynamic so that libglade can find
    	the signal handler functions when it auto-connects signals.
    
    	* src/gva-ui (gva_ui_init):
    	Call glade_xml_signal_autoconnect().
    
    	* src/gva-main.c (gva_main_init):
    	* src/gva-play-back.c (gva_play_back_init):
    	* src/gva-preferences.c (gva_preferences_init):
    	* src/gva-properties.c (gva_properties_init):
    	Remove explicit connection of (most) signals and let libglade
    	auto-connect them at startup.
    	Document the new public signal handler functions.

 ChangeLog                                      |  23 +++++
 NEWS                                           |  10 ++
 README                                         |   4 +-
 configure.ac                                   |   4 +-
 data/gnome-video-arcade.glade                  |  54 +++++-----
 docs/reference/gnome-video-arcade-sections.txt |   7 ++
 docs/reference/tmpl/gva-main.sgml              |   8 ++
 docs/reference/tmpl/gva-play-back.sgml         |  36 +++++++
 docs/reference/tmpl/gva-preferences.sgml       |   9 ++
 docs/reference/tmpl/gva-properties.sgml        |   9 ++
 src/Makefile.am                                |   4 +-
 src/gva-main.c                                 |  24 +++--
 src/gva-main.h                                 |   4 +
 src/gva-play-back.c                            | 138 +++++++++++++++----------
 src/gva-play-back.h                            |  11 ++
 src/gva-preferences.c                          |  28 ++---
 src/gva-preferences.h                          |  15 ++-
 src/gva-properties.c                           |  24 +++--
 src/gva-properties.h                           |   5 +
 src/gva-ui.c                                   |   3 +
 20 files changed, 297 insertions(+), 123 deletions(-)

commit 635bd8b4e969ef4d384d02d607c1fbabd6de4341
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jul 30 18:44:56 2007 +0000

    - Remove a bunch of backup SGML files from source control.

 .../tmpl/gnome-video-arcade-unused.sgml.bak        |  48 ---
 .../tmpl/gva-cell-renderer-pixbuf.sgml.bak         |  39 ---
 docs/reference/tmpl/gva-column-manager.sgml.bak    |  43 ---
 docs/reference/tmpl/gva-columns.sgml.bak           |  80 -----
 docs/reference/tmpl/gva-common.sgml.bak            |  99 ------
 docs/reference/tmpl/gva-db.sgml.bak                | 101 ------
 docs/reference/tmpl/gva-error.sgml.bak             |  65 ----
 docs/reference/tmpl/gva-favorites.sgml.bak         |  50 ---
 docs/reference/tmpl/gva-game-store.sgml.bak        |  69 ----
 docs/reference/tmpl/gva-history.sgml.bak           |  36 ---
 docs/reference/tmpl/gva-main.sgml.bak              |  80 -----
 docs/reference/tmpl/gva-mame-common.sgml.bak       |  55 ----
 docs/reference/tmpl/gva-mame-process.sgml          |   1 +
 docs/reference/tmpl/gva-mame-process.sgml.bak      |  33 --
 docs/reference/tmpl/gva-mame.sgml.bak              | 174 ----------
 docs/reference/tmpl/gva-play-back.sgml.bak         |  32 --
 docs/reference/tmpl/gva-preferences.sgml.bak       |  56 ----
 docs/reference/tmpl/gva-process.sgml               |   7 +
 docs/reference/tmpl/gva-process.sgml.bak           | 216 -------------
 docs/reference/tmpl/gva-properties.sgml.bak        |  24 --
 docs/reference/tmpl/gva-time.sgml.bak              |  23 --
 docs/reference/tmpl/gva-tree-view.sgml.bak         | 142 ---------
 docs/reference/tmpl/gva-ui.sgml.bak                | 352 ---------------------
 docs/reference/tmpl/gva-util.sgml.bak              |  60 ----
 24 files changed, 8 insertions(+), 1877 deletions(-)

commit 2e1a7b75f1fb6f434f76142df039e358ddba2128
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jul 30 14:51:03 2007 +0000

    2007-07-30  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-db.c (db_parser_exit):
    	Commit the transaction *after* verify results are inserted.
    
    	* src/gva-process.c:
    	Add a "priority" property (default: G_PRIORITY_DEFAULT_IDLE).
    	Add I/O watches at the requested priority.
    
    	* src/gva-process.c (gva_process_new), (gva_process_spawn):
    	* src/gva-mame-process.c (gva_mame_process_spawn):
    	Add a "priority" parameter.
    
    	* src/gva-mame-common (gva_mame_command), (gva_mame_list_xml):
    	Spawn the MAME process at G_PRIORITY_DEFAULT_IDLE.
    
    	* src/gva-mame-common (gva_mame_verify_roms),
    	(gva_mame_verify_samples), (gva_mame_run_game),
    	(gva_mame_record_game), (gva_mame_playback_game):
    	Spawn the MAME process at G_PRIORITY_LOW.

 ChangeLog              |  21 ++++++++
 src/gva-db.c           |   5 +-
 src/gva-mame-common.c  |  21 +++++---
 src/gva-mame-process.c |   6 ++-
 src/gva-mame-process.h |   1 +
 src/gva-process.c      | 130 ++++++++++++++++++++++++++++++++-----------------
 src/gva-process.h      |   2 +
 7 files changed, 129 insertions(+), 57 deletions(-)

commit 2ba5056c3340ae54c7ed74a003a8be6e82f0b532
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jul 30 05:14:46 2007 +0000

    2007-07-29  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-db.c (gva_db_build):
    	Start a database transaction.
    
    	* src/gva-db.c (db_parser_exit):
    	Commit the transaction if no error occurred, otherwise rollback.
    
    	* src/gva-db.c (gva_db_transaction_begin),
    	(gva_db_transaction_commit), (gva_db_transaction_rollback):
    	New functions are pretty self-explanatory.
    
    	* src/gva-process.c (process_data_ready):
    	Keep on reading if there's more to be read.
    
    	* src/main.c (main):
    	Invoke start() by way of gtk_init_add() instead of g_idle_add().

 ChangeLog         | 18 ++++++++++++++++++
 src/gva-db.c      | 55 +++++++++++++++++++++++++++++++++++++++++++++----------
 src/gva-db.h      |  3 +++
 src/gva-process.c | 37 ++++++++++++++++++++++---------------
 src/main.c        |  8 +++-----
 5 files changed, 91 insertions(+), 30 deletions(-)

commit bbce34feea3406bbb9c44fec18bbeb0316d8627e
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jul 30 03:50:59 2007 +0000

    2007-07-29  Matthew Barnes  <mbarnes@redhat.com>
    
    	* Add some more developer documentation.
    	* Move section documentation to header files.
    
    	* src/gva-db.c (gva_db_get_filename):
    	Call gva_get_user_data_dir().
    	Move SQLite database file to
    	${user_data_dir}/applications/${package}/games.db.
    
    	* src/gva-util.c (gva_get_user_data_dir):
    	New function returns the user-specific data directory for this
    	application.

 ChangeLog                                          | 14 ++++
 docs/reference/gnome-video-arcade-sections.txt     |  2 +-
 docs/reference/tmpl/gnome-video-arcade-unused.sgml | 15 ++++
 .../tmpl/gnome-video-arcade-unused.sgml.bak        | 48 ++++++++++++
 docs/reference/tmpl/gva-cell-renderer-pixbuf.sgml  |  4 +-
 .../tmpl/gva-cell-renderer-pixbuf.sgml.bak         | 10 ---
 docs/reference/tmpl/gva-column-manager.sgml        |  4 +-
 docs/reference/tmpl/gva-column-manager.sgml.bak    |  9 ---
 docs/reference/tmpl/gva-columns.sgml               |  4 +-
 docs/reference/tmpl/gva-columns.sgml.bak           |  4 -
 docs/reference/tmpl/gva-common.sgml                |  4 +-
 docs/reference/tmpl/gva-common.sgml.bak            |  4 -
 docs/reference/tmpl/gva-db.sgml                    |  4 +-
 docs/reference/tmpl/gva-db.sgml.bak                |  4 -
 docs/reference/tmpl/gva-error.sgml                 |  4 +-
 docs/reference/tmpl/gva-error.sgml.bak             |  4 -
 docs/reference/tmpl/gva-favorites.sgml             | 10 +--
 docs/reference/tmpl/gva-favorites.sgml.bak         | 10 +--
 docs/reference/tmpl/gva-game-store.sgml            |  4 +-
 docs/reference/tmpl/gva-game-store.sgml.bak        |  9 ---
 docs/reference/tmpl/gva-history.sgml               |  6 +-
 docs/reference/tmpl/gva-history.sgml.bak           |  6 +-
 docs/reference/tmpl/gva-main.sgml                  |  6 +-
 docs/reference/tmpl/gva-main.sgml.bak              |  6 +-
 docs/reference/tmpl/gva-mame-common.sgml           |  4 +-
 docs/reference/tmpl/gva-mame-common.sgml.bak       |  4 -
 docs/reference/tmpl/gva-mame-process.sgml          |  4 +-
 docs/reference/tmpl/gva-mame-process.sgml.bak      |  9 ---
 docs/reference/tmpl/gva-mame.sgml                  |  4 +-
 docs/reference/tmpl/gva-mame.sgml.bak              |  4 -
 docs/reference/tmpl/gva-play-back.sgml             |  4 +-
 docs/reference/tmpl/gva-play-back.sgml.bak         |  4 -
 docs/reference/tmpl/gva-preferences.sgml           |  4 +-
 docs/reference/tmpl/gva-preferences.sgml.bak       |  4 -
 docs/reference/tmpl/gva-process.sgml               |  4 +-
 docs/reference/tmpl/gva-process.sgml.bak           | 14 ----
 docs/reference/tmpl/gva-properties.sgml            |  4 +-
 docs/reference/tmpl/gva-properties.sgml.bak        |  4 -
 docs/reference/tmpl/gva-time.sgml                  | 22 +-----
 docs/reference/tmpl/gva-time.sgml.bak              | 22 ------
 docs/reference/tmpl/gva-tree-view.sgml             |  4 +-
 docs/reference/tmpl/gva-tree-view.sgml.bak         |  4 -
 docs/reference/tmpl/gva-ui.sgml                    |  4 +-
 docs/reference/tmpl/gva-ui.sgml.bak                |  4 -
 docs/reference/tmpl/gva-util.sgml                  |  6 +-
 docs/reference/tmpl/gva-util.sgml.bak              |  6 +-
 src/gva-cell-renderer-pixbuf.h                     |  5 ++
 src/gva-column-manager.h                           |  5 ++
 src/gva-columns.h                                  |  5 ++
 src/gva-common.h                                   |  5 ++
 src/gva-db.c                                       |  2 +-
 src/gva-db.h                                       |  5 ++
 src/gva-error.h                                    |  5 ++
 src/gva-favorites.c                                | 60 +++++++++++----
 src/gva-favorites.h                                | 11 ++-
 src/gva-game-store.h                               |  5 ++
 src/gva-history.c                                  | 39 +++++++---
 src/gva-history.h                                  |  7 +-
 src/gva-main.c                                     | 89 +++++++++++++++++++++-
 src/gva-main.h                                     |  7 +-
 src/gva-mame-common.h                              |  7 +-
 src/gva-mame-process.h                             |  5 ++
 src/gva-mame.h                                     |  5 +-
 src/gva-play-back.c                                | 15 ++++
 src/gva-play-back.h                                |  5 ++
 src/gva-preferences.c                              | 43 +++++++++++
 src/gva-preferences.h                              |  5 ++
 src/gva-process.h                                  |  5 ++
 src/gva-properties.c                               |  7 ++
 src/gva-properties.h                               |  5 ++
 src/gva-time.h                                     | 12 ++-
 src/gva-tree-view.h                                |  5 ++
 src/gva-ui.h                                       |  5 ++
 src/gva-util.c                                     | 85 +++++++++++++++++++--
 src/gva-util.h                                     |  8 +-
 75 files changed, 554 insertions(+), 251 deletions(-)

commit 34baaecc0cf5a017f7faf8b259ae0a38b25a714f
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Jul 27 03:47:31 2007 +0000

    2007-07-26  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac:
    	* Makefile.am:
    	* docs/*:
    	Skeletal developer documentation generated by GTK-Doc.
    
    	* src/main.c:
    	Move command-line option variables to gva-util.c.

 ChangeLog                                          |  10 +
 Makefile.am                                        |   2 +-
 NEWS                                               |   2 +-
 configure.ac                                       |  11 +-
 docs/Makefile.am                                   |   3 +
 docs/reference/Makefile.am                         | 113 +++++++
 docs/reference/gnome-video-arcade-docs.sgml        |  46 +++
 docs/reference/gnome-video-arcade-overrides.txt    |   0
 docs/reference/gnome-video-arcade-sections.txt     | 315 ++++++++++++++++++
 docs/reference/gnome-video-arcade.types            |  13 +
 docs/reference/tmpl/gnome-video-arcade-unused.sgml |  41 +++
 .../tmpl/gnome-video-arcade-unused.sgml.bak        |   0
 docs/reference/tmpl/gva-cell-renderer-pixbuf.sgml  |  41 +++
 .../tmpl/gva-cell-renderer-pixbuf.sgml.bak         |  49 +++
 docs/reference/tmpl/gva-column-manager.sgml        |  45 +++
 docs/reference/tmpl/gva-column-manager.sgml.bak    |  52 +++
 docs/reference/tmpl/gva-columns.sgml               |  82 +++++
 docs/reference/tmpl/gva-columns.sgml.bak           |  84 +++++
 docs/reference/tmpl/gva-common.sgml                | 101 ++++++
 docs/reference/tmpl/gva-common.sgml.bak            | 103 ++++++
 docs/reference/tmpl/gva-db.sgml                    | 103 ++++++
 docs/reference/tmpl/gva-db.sgml.bak                | 105 ++++++
 docs/reference/tmpl/gva-error.sgml                 |  67 ++++
 docs/reference/tmpl/gva-error.sgml.bak             |  69 ++++
 docs/reference/tmpl/gva-favorites.sgml             |  52 +++
 docs/reference/tmpl/gva-favorites.sgml.bak         |  54 ++++
 docs/reference/tmpl/gva-game-store.sgml            |  71 ++++
 docs/reference/tmpl/gva-game-store.sgml.bak        |  78 +++++
 docs/reference/tmpl/gva-history.sgml               |  38 +++
 docs/reference/tmpl/gva-history.sgml.bak           |  40 +++
 docs/reference/tmpl/gva-main.sgml                  |  82 +++++
 docs/reference/tmpl/gva-main.sgml.bak              |  84 +++++
 docs/reference/tmpl/gva-mame-common.sgml           |  57 ++++
 docs/reference/tmpl/gva-mame-common.sgml.bak       |  59 ++++
 docs/reference/tmpl/gva-mame-process.sgml          |  35 ++
 docs/reference/tmpl/gva-mame-process.sgml.bak      |  42 +++
 docs/reference/tmpl/gva-mame.sgml                  | 176 ++++++++++
 docs/reference/tmpl/gva-mame.sgml.bak              | 178 +++++++++++
 docs/reference/tmpl/gva-play-back.sgml             |  34 ++
 docs/reference/tmpl/gva-play-back.sgml.bak         |  36 +++
 docs/reference/tmpl/gva-preferences.sgml           |  58 ++++
 docs/reference/tmpl/gva-preferences.sgml.bak       |  60 ++++
 docs/reference/tmpl/gva-process.sgml               | 218 +++++++++++++
 docs/reference/tmpl/gva-process.sgml.bak           | 230 +++++++++++++
 docs/reference/tmpl/gva-properties.sgml            |  26 ++
 docs/reference/tmpl/gva-properties.sgml.bak        |  28 ++
 docs/reference/tmpl/gva-time.sgml                  |  43 +++
 docs/reference/tmpl/gva-time.sgml.bak              |  45 +++
 docs/reference/tmpl/gva-tree-view.sgml             | 144 +++++++++
 docs/reference/tmpl/gva-tree-view.sgml.bak         | 146 +++++++++
 docs/reference/tmpl/gva-ui.sgml                    | 354 ++++++++++++++++++++
 docs/reference/tmpl/gva-ui.sgml.bak                | 356 +++++++++++++++++++++
 docs/reference/tmpl/gva-util.sgml                  |  62 ++++
 docs/reference/tmpl/gva-util.sgml.bak              |  64 ++++
 docs/reference/version.xml.in                      |   1 +
 src/gva-util.c                                     |   4 +
 src/main.c                                         |   4 -
 57 files changed, 4409 insertions(+), 7 deletions(-)

commit dac3d644fe08b2c6beb09d844cd86d39e2352587
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Jul 24 17:26:03 2007 +0000

    2007-07-24  Matthew Barnes  <mbarnes@redhat.com>
    
    	* NEWS: Update for 0.4.1
    
    	* data/gnome-video-arcade.glade:
    	Placeholder labels don't need to be translated.
    
    	* src/main.c (main):
    	Fix gettext initialization.
    
    	* src/gva-ui.c (gva_ui_init):
    	Set translation domain on the GtkActionGroup.
    
    	* po/sv.po: Swedish translation update by Daniel Nylander.

 ChangeLog                     |  13 ++
 NEWS                          |  13 ++
 configure.ac                  |   2 +-
 data/gnome-video-arcade.glade |  38 ++---
 po/ChangeLog                  |   4 +
 po/sv.po                      | 332 ++++++++++++++++++++++++++++++++++--------
 src/gva-ui.c                  |   2 +
 src/main.c                    |   7 +-
 8 files changed, 328 insertions(+), 83 deletions(-)

commit 551c63f72ab765a7a85fcb8276f93859e4bc6c0c
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Jul 24 03:56:27 2007 +0000

    2007-07-23  Matthew Barnes  <mbarnes@redhat.com>
    
    	* po/POTFILES.in: Add missing files with translations.

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 5 ++++-
 2 files changed, 8 insertions(+), 1 deletion(-)

commit 948c6633aaedd4c8e49ea06537e478d9a7ffe2af
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Jul 24 03:39:21 2007 +0000

    2007-07-23  Matthew Barnes  <mbarnes@redhat.com>
    
    	* NEWS: Update for 0.4
    
    	* data/gnome-video-arcade.schema:
    	Fix default value for "sort-column" key.
    
    	* src/main.c:
    	* src/gva-common.h:
    	Add --which-emulator command-line option.
    	Prints the emulator pathname (a.k.a. MAME_PROGRAM) and exits.
    
    	* src/gva-column-manager.c (column_manager_row_deleted_cb):
    	Select the moved row after drag-and-drop.
    
    	* src/gva-column-manager.c (column_manager_selection_changed_cb):
    	Don't desensitize the buttons if nothing is selected; it screws up
    	the widget state of the "Move Up" / "Move Down" buttons.
    
    	* src/gva-columns.c (columns_sampleset_set_properties):
    	Check for both NULL and empty sampleset strings.
    
    	* src/gva-columns.c (gva_columns_load):
    	Improve the migration logic.
    
    	* src/gva-columns.c (gva_columns_get_selected):
    	Remove this function.
    
    	* src/gva-game-store.c (gva_game_store_new_from_query):
    	Check for NULL result from sqlite3_column_text().
    
    	* src/gva-tree-view.c (gva_tree_view_run_query):
    	Refactor to not use gva_columns_get_selected().

 ChangeLog                       | 34 +++++++++++++++++++++++
 data/gnome-video-arcade.glade   | 44 +++++++++++++++++++-----------
 data/gnome-video-arcade.schemas |  2 +-
 src/gva-column-manager.c        | 15 +++++------
 src/gva-columns.c               | 60 +++++++++++++++++------------------------
 src/gva-columns.h               |  1 -
 src/gva-common.h                |  1 +
 src/gva-game-store.c            |  5 +++-
 src/gva-tree-view.c             | 45 +++++++++++++++----------------
 src/gva-ui.c                    |  2 +-
 src/main.c                      | 16 ++++++++++-
 11 files changed, 138 insertions(+), 87 deletions(-)

commit bfe4d7e377fe41e77c26b2f0a286f2842c4138c9
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Jul 24 00:50:10 2007 +0000

    2007-07-23  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.glade:
    	* src/gva-preferences.c:
    	Use a GvaColumnManager widget for selecting columns.
    	Unfortunately this widget can't be directly loaded with glade.
    
    	* data/gnome-video-arcade.schemas:
    	Add "all-columns" key.
    
    	* src/Makefile.am:
    	Add gva-column-manager.[ch].
    
    	* src/gva-common.h:
    	Add GVA_GCONF_ALL_COLUMNS_KEY.
    
    	* src/gva-column-manager.[ch]:
    	New source files implement a GtkTreeViewColumn chooser widget.
    	Allows columns to be rearranged and their visiblity toggled.
    
    	* src/gva-columns.c:
    	Add columns for "manufacturer", "name", and "year".
    
    	* src/gva-columns.c (gva_columns_load), (gva_columns_save):
    	Rewrite the logic to utilize the new GConf key.
    
    	* src/gva-columns.c (gva_columns_get_names):
    	New function extracts column names from a GtkTreeView.
    
    	* src/gva-ui.h:
    	Remove widgets we no longer need direct access to.

 ChangeLog                       |  32 ++
 NEWS                            |   8 +-
 README                          |   4 +-
 configure.ac                    |   2 +-
 data/gnome-video-arcade.glade   | 251 ++-------------
 data/gnome-video-arcade.schemas |  16 +-
 src/Makefile.am                 |   2 +
 src/gva-cell-renderer-pixbuf.c  |   3 +-
 src/gva-column-manager.c        | 669 ++++++++++++++++++++++++++++++++++++++++
 src/gva-column-manager.h        |  68 ++++
 src/gva-columns.c               | 230 +++++++++++---
 src/gva-columns.h               |   2 +
 src/gva-common.h                |   1 +
 src/gva-game-store.c            |   3 +-
 src/gva-mame-process.c          |   3 +-
 src/gva-preferences.c           | 290 +----------------
 src/gva-process.c               |   3 +-
 src/gva-ui.h                    |  12 +-
 18 files changed, 1024 insertions(+), 575 deletions(-)

commit 52be902976751da0130ec598f238827d8a059248
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jul 22 03:46:38 2007 +0000

    2007-07-21  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.glade:
    	* src/gva-preferences.c:
    	Add a new "columns" page to the Preferences window that allows
    	you to customize the order and visibility of columns in the main
    	window.  Visibility is not yet saved in GConf.
    
    	* src/gva-game-store.c:
    	Remove unused signals.
    
    	* src/gva-process.c (process_set_property),
    	(gva_process_get_progress), (gva_process_set_progress):
    	Give the get/set functions direct access to the progress value.
    	Call gva_process_set_progress() when setting the "progress" property.
    
    	* src/gva-properties.c (gva_properties_init):
    	* src/gva-tree-view.c (tree_view_selection_changed_cb):
    	* src/gva-ui.[ch]:
    	Rename the "go-back" and "go-forward" actions to "previous-game"
    	and "next-game" (respectively).
    
    	* src/gva-tree-view.c (tree_view_columns_changed_cb):
    	Stop the signal emission if the tree view is being destroyed.
    
    	* src/gva-ui.h:
    	Ditch the "GW" macro; widget names are getting too long.

 ChangeLog                     |  28 +++
 NEWS                          |   1 +
 data/gnome-video-arcade.glade | 444 ++++++++++++++++++++++++++++++++++--------
 src/gva-game-store.c          |  33 ----
 src/gva-preferences.c         | 345 ++++++++++++++++++++++++++++++--
 src/gva-process.c             |  18 +-
 src/gva-properties.c          |   4 +-
 src/gva-tree-view.c           |  15 +-
 src/gva-ui.c                  | 118 +++++------
 src/gva-ui.h                  |  91 ++++++---
 10 files changed, 857 insertions(+), 240 deletions(-)

commit 986a012fdc64148d6fb9e98285b3e5104d747b22
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Jul 20 04:23:10 2007 +0000

    2007-07-20  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-db.c:
    	Add CHECK constraints to the table definitions.
    
    	* src/gva-db.c (db_parser_bind_text):
    	Take a sqlite3_stmt argument instead of ParserData.
    
    	* src/gva-db.c (db_parser_read):
    	Kill the process if an error occurs.
    
    	* src/gva-mame-process.c (mame_process_check_for_error):
    	Duplicate the string on the stack.
    
    	* src/gva-properties.c (properties_update_header):
    	Show the manufacturer and year the way MAME does.
    
    	* src/gva-ui.c (action_about_cb):
    	Monkey with the About dialog comment again.

 ChangeLog              | 22 +++++++++++-
 NEWS                   |  4 ++-
 README                 |  4 +--
 configure.ac           |  2 +-
 src/gva-db.c           | 91 +++++++++++++++++++++++++++++++++-----------------
 src/gva-mame-process.c |  8 ++---
 src/gva-properties.c   |  4 +--
 src/gva-ui.c           |  2 +-
 8 files changed, 94 insertions(+), 43 deletions(-)

commit 75a297d8067a181f04aed60618b944336ead2166
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Jul 19 16:20:19 2007 +0000

    2007-07-19  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac:
    	Locate the MAME program and choose the appropriate backend.
    
    	* src/Makefile.am:
    	Distribute both MAME backends but only compile one.
    
    	* src/gva-columns.c:
    	* src/gva-db.c:
    	* src/gva-game-store.[ch]:
    	Recent MAME versions have changed the format of display and
    	control-related XML data.  Just drop those columns from the
    	database for now, until I can sort this out.
    
    	* src/gva-error.h:
    	Remove GVA_ERROR_XMAME to GVA_ERROR_MAME.
    
    	* src/gva-main.c (main_build_database_process_cb):
    	Clamp the fraction value between 0.0 and 1.0.
    
    	* src/gva-preference.c (gva_preference_init):
    	Check for both -fullscreen and -window options.
    
    	* src/gva-mame-common.c (gva_mame_has_config_value):
    	Suppress warnings about unknown configuration keys.
    
    	* src/gva-mame-common.c (mame_verify_read):
    	Simpler implementation using strtok().
    
    	* src/gva-mame-common.c (gva_mame_verify_roms):
    	Renamed function now invokes "-verifyroms".  Support for
    	"-verifyromsets" was dropped in recent MAME versions.
    
    	* src/gva-mame-common.c (gva_mame_verify_samples):
    	Renamed function now invokes "-verifysamples".  Support for
    	"-verifysamplesets" was dropped in recent MAME versions.
    
    	* src/gva-mame-common.c (gva_mame_run_game), (gva_mame_record_game),
    	(gva_mame_playback_game):
    	Test for both -fullscreen and -window options.
    
    	* src/gva-mame-common.c (gva_mame_get_save_state_file):
    	New function tries to find the save state file for a game.
    	The location of these files changed in recent MAME versions.
    
    	* src/gva-mame-process.c (gva_mame_process_get_executable):
    	Remove this function; use MAME_PROGRAM from config.h instead.
    
    	* src/gva-mame-sdlmame.c:
    	New source file implements the sdlmame backend.
    
    	* src/gva-mame-xmame.c:
    	Move all functions except gva_mame_get_version() and
    	gva_mame_get_total_supported() into gva-mame-common.c.
    
    	* src/gva-mame-xmame.c (gva_mame_get_version):
    	* src/gva-mame-xmame.c (gva_mame_get_total_supported):
    	Simpler implementation.
    
    	* src/gva-tree-view.c (gva_tree_view_run_query):
    	Only select "good" or "best available" romsets.
    
    	* src/gva-ui.c (action_about_cb):
    	Change comment to "MAME Front-End" (not just XMAME).

 ChangeLog              |  66 ++++++
 NEWS                   |  11 +-
 README                 |  22 +-
 config.h.in            |   3 +
 configure.ac           |  22 +-
 src/Makefile.am        |  10 +-
 src/gva-columns.c      |  11 +-
 src/gva-db.c           |  84 +-------
 src/gva-error.h        |   4 +-
 src/gva-game-store.c   |   9 -
 src/gva-game-store.h   |   9 -
 src/gva-main.c         |   1 +
 src/gva-mame-common.c  | 560 ++++++++++++++++++++++++++++++++++++++++++++++++-
 src/gva-mame-common.h  |   6 +-
 src/gva-mame-process.c |  27 +--
 src/gva-mame-process.h |   1 -
 src/gva-mame-sdlmame.c |  91 ++++++++
 src/gva-mame-xmame.c   | 548 +++--------------------------------------------
 src/gva-mame.h         |  28 ++-
 src/gva-preferences.c  |   3 +-
 src/gva-tree-view.c    |   7 +-
 src/gva-ui.c           |   5 +-
 22 files changed, 847 insertions(+), 681 deletions(-)

commit 90b2d35e806216ee233feca5895ff2d229da0a1f
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Jul 18 14:32:34 2007 +0000

    2007-07-18  Matthew Barnes  <mbarnes@redhat.com>
    
    	** Make preparations for adding multiple MAME backends.
    
    	* src/Makefile.am:
    	Add gva-mame-common.[ch].
    	Rename gva-xmame.h to gva-mame.h.
    	Rename gva-xmame.c to gva-mame-xmame.c.
    
    	* src/main.c:
    	* src/gva-db.c:
    	* src/gva-play-back.c:
    	* src/gva-preferences.c:
    	* src/gva-main.c:
    	* src/gva-mame-xmame.c:
    	* src/gva-ui.c:
    	* src/gva-util.c:
    	Change "xmame" prefixes to "mame".
    
    	* src/gva-mame-common.[ch]:
    	New source files implement functions common to all MAME backends.

 ChangeLog             |  22 ++
 src/Makefile.am       |   6 +-
 src/gva-db.c          |  14 +-
 src/gva-game-store.c  |   1 -
 src/gva-main.c        |   2 +-
 src/gva-mame-common.c |  39 ++++
 src/gva-mame-common.h |  44 ++++
 src/gva-mame-xmame.c  | 585 ++++++++++++++++++++++++++++++++++++++++++++++++
 src/gva-mame.h        |  64 ++++++
 src/gva-play-back.c   |   4 +-
 src/gva-preferences.c |   6 +-
 src/gva-ui.c          |  10 +-
 src/gva-util.c        |   4 +-
 src/gva-xmame.c       | 605 --------------------------------------------------
 src/gva-xmame.h       |  64 ------
 src/main.c            |   4 +-
 16 files changed, 780 insertions(+), 694 deletions(-)

commit 41693d45e51bbce2d472ff504d76a1ac70a7e618
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Jul 18 04:25:12 2007 +0000

    2007-07-18  Matthew Barnes  <mbarnes@redhat.com>
    
    	* README: First draft.

 ChangeLog |  4 +++
 README    | 85 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 89 insertions(+)

commit 1ed599c35677b5681a763b92a6e3835f2334a4e2
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Jul 17 18:51:44 2007 +0000

    2007-07-17  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-ui.c (action_about_cb):
    	Add a License button to the About dialog.

 ChangeLog    |  7 +++++++
 src/gva-ui.c | 15 +++++++++++++++
 2 files changed, 22 insertions(+)

commit 90efb470b33f080104cbbba4c8d068dfcf3e2135
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jul 15 03:06:38 2007 +0000

    2007-07-14  Matthew Barnes  <mbarnes@redhat.com>
    
    	* po/POTFILES.in: Add missing files with translations.

 po/ChangeLog   | 4 ++++
 po/POTFILES.in | 5 +++++
 2 files changed, 9 insertions(+)

commit 421e4f07d9fa7146425ad27644ad7ae9921b8a0f
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jul 15 02:50:21 2007 +0000

    2007-07-14  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/main.c (start):
    	Use gtk_main_iteration() instead of g_main_context_iteration()
    	to check whether we've quit the main loop.  This can happen if
    	an impatient user quits the application while the database is
    	building.
    
    	* src/gva-process.c (gva_process_kill):
    	New function sends SIGKILL to the given process.
    
    	* src/gva-process.c (gva_process_kill_all):
    	New function kills all active child processes.
    
    	* src/gva-main.c (gva_main_init):
    	Desensitive the "view" actions.  Eliminates an opportunity to
    	change views before a database build begins.
    
    	* src/gva-ui.c (action_quit_cb):
    	Call gva_process_kill_all().

 ChangeLog         | 21 +++++++++++++++++++++
 src/gva-db.c      |  1 +
 src/gva-main.c    |  3 +++
 src/gva-process.c | 35 +++++++++++++++++++++++++++++++++++
 src/gva-process.h |  2 ++
 src/gva-ui.c      |  2 ++
 src/gva-xmame.c   |  3 ++-
 src/main.c        | 15 ++++++++-------
 8 files changed, 74 insertions(+), 8 deletions(-)

commit 169aa8169e4a21ac7b5fb144fee3d5b9ef6a63a2
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Jul 13 21:23:57 2007 +0000

    2007-07-13  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.schemas:
    	Add "sort-column" key.
    
    	* src/Makefile.am:
    	Remove gva-game-db.[ch].
    
    	* src/main.c:
    	Disable the "view" actions while building the database.
    	Force a tree view update after the database is built.
    
    	* src/gva-columns.c (gva_columns_lookup_name):
    	New function returns the name of the given given column ID.
    
    	* src/gva-common.h:
    	Add GVA_GCONF_SORT_COLUMN_KEY.
    
    	* src/gva-db.c:
    	Verify ROM sets and sample sets while parsing XML data.
    	Merge the results into the database when XML parsing is done.
    	Register an isfavorite() function in the database.
    
    	* src/gva-game-db.[ch]:
    	Remove these files.
    
    	* src/gva-main.c (gva_main_init):
    	Disable some actions until we're up and running.
    
    	* src/gva-game-store.c (game_store_constructor):
    	Register a default sort function (sorts on description).
    
    	* src/gva-play-back.c:
    	Prefer "name" over "romname".
    	Adapt to gva-game-db.c going away.
    
    	* src/gva-properties.c (properties_selection_changed_cb):
    	Query the database for the needed game information.
    
    	* src/gva-tree-view.c:
    	Prefer "name" over "romname".
    	Remember sort column and order across sessions.
    	Switching views is now a database query; swap out the old
    	tree model for a fresh one.  No need to pile filter and sort
    	models on to our game store.  Clean and elegant.
    
    	* src/gva-ui.c:
    	Prefer "name" over "romname".
    
    	* src/gva-xmame.c:
    	Prefer "name" over "romname".
    	Remove some obsolete functions.

 ChangeLog                       |  53 ++++++
 NEWS                            |   2 +-
 data/gnome-video-arcade.glade   |   2 -
 data/gnome-video-arcade.schemas |  17 ++
 src/Makefile.am                 |   2 -
 src/gva-columns.c               |  53 +++---
 src/gva-columns.h               |   5 +-
 src/gva-common.h                |   1 +
 src/gva-db.c                    | 172 +++++++++++++++--
 src/gva-db.h                    |   1 +
 src/gva-game-db.c               | 149 ---------------
 src/gva-game-db.h               |  37 ----
 src/gva-game-store.c            |  37 +++-
 src/gva-game-store.h            |   5 +-
 src/gva-main.c                  |   8 +-
 src/gva-play-back.c             |  14 +-
 src/gva-properties.c            |  32 +++-
 src/gva-tree-view.c             | 399 +++++++++++++++++++++-------------------
 src/gva-tree-view.h             |  29 ++-
 src/gva-ui.c                    |  59 +++---
 src/gva-xmame.c                 | 254 ++++++-------------------
 src/gva-xmame.h                 |  18 +-
 src/main.c                      |  28 ++-
 23 files changed, 678 insertions(+), 699 deletions(-)

commit eb1a57dfea8b05a31c61dd90764a838857f6b0e4
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Jul 12 21:15:39 2007 +0000

    2007-07-12  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-game-store.c (gva_game_store_new_from_query):
    	Fix a couple bugs.  It seems to be working!

 ChangeLog            |  5 +++++
 src/gva-game-store.c | 13 ++++++++-----
 2 files changed, 13 insertions(+), 5 deletions(-)

commit 160dd0624ce8a0ec702fa01c3261d3131a6452c5
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Jul 12 18:19:59 2007 +0000

    2007-07-12  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.schemas:
    	Add "version" key.
    
    	* src/main.c:
    	Support a --build-database command-line option.
    
    	* src/main.c (start):
    	New function kicks off the party when the main loop starts.
    	It currently just starts a database rebuild as needed.
    
    	* src/gva-common.h:
    	Expose command-line option values.
    
    	* src/gva-db.c (db_parser_end_element_game):
    	Report parsing progress to the GvaProcess.
    
    	* src/gva-db.c (gva_db_build):
    	Clear all tables before building the database.
    
    	* src/gva-db.c (gva_db_needs_rebuilt):
    	New functions runs a series of tests to figure out whether the
    	database needs to be rebuilt.  It also states its rationale for
    	recommending a rebuild to stdout.
    
    	* src/gva-favorites.c:
    	Prefer "name" over "romname".
    
    	* src/gva-game-store.c (gva_game_store_new_from_query):
    	Always populate the game store with favorites, since favorites
    	are stored in GConf and not the database.
    
    	* src/gva-main.c (gva_main_build_database):
    	New function initiates a database rebuild and reports progress
    	to a progress bar widget.
    
    	* src/gva-process.c:
    	Make the progress property an unsigned integer.
    
    	* src/gva-tree-view.c (tree_view_load_data):
    	Remove the call to gva_db_build().
    	This breaks the "properties" action for now.
    
    	* src/gva-util.c (gva_get_last_version):
    	New function returns what version of GVA we ran last time.
    
    	* src/gva-xmame.c (gva_xmame_get_total_supported):
    	Return an _unsigned_ integer, and zero on error.

 ChangeLog                       | 50 +++++++++++++++++++++++++++
 data/gnome-video-arcade.glade   |  2 +-
 data/gnome-video-arcade.schemas | 11 ++++++
 src/gva-common.h                |  8 +++++
 src/gva-db.c                    | 76 ++++++++++++++++++++++++++++++++++++++---
 src/gva-db.h                    |  1 +
 src/gva-favorites.c             | 32 ++++++++---------
 src/gva-favorites.h             |  6 ++--
 src/gva-game-store.c            | 17 +++++++--
 src/gva-main.c                  | 63 ++++++++++++++++++++++++++++++++++
 src/gva-main.h                  |  2 ++
 src/gva-process.c               | 18 +++++-----
 src/gva-process.h               |  4 +--
 src/gva-tree-view.c             |  9 -----
 src/gva-ui.h                    |  2 +-
 src/gva-util.c                  | 30 ++++++++++++++++
 src/gva-util.h                  |  1 +
 src/gva-xmame.c                 |  8 ++---
 src/gva-xmame.h                 |  2 +-
 src/main.c                      | 59 ++++++++++++++++++--------------
 20 files changed, 321 insertions(+), 80 deletions(-)

commit a9f13dba58b94f1a16620d2b70b082bd553971da
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Jul 12 14:07:00 2007 +0000

    2007-07-12  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.glade:
    	Changed my mind; remove the search button from the main window.
    	Edit -> Search menu item still remains.
    
    	* src/gva-columns.c (gva_columns_load):
    	Call gva_columns_get_selected().
    
    	* src/gva-columns.c (gva_columns_get_selected):
    	New function returns visible column names as a string array.
    
    	* src/gva-process.c (gva_process_get_time_elapsed):
    	Call gva_get_time_elapsed().
    
    	* src/gva-util.c (gva_get_time_elapsed):
    	New function return the time elapsed since a start time.

 ChangeLog                     | 18 ++++++++++
 data/gnome-video-arcade.glade | 80 ++++++++-----------------------------------
 src/gva-columns.c             | 72 ++++++++++++++++++++++++++------------
 src/gva-columns.h             |  1 +
 src/gva-process.c             |  5 ++-
 src/gva-util.c                | 12 +++++++
 src/gva-util.h                |  2 ++
 7 files changed, 100 insertions(+), 90 deletions(-)

commit e0a06b6ff483b88e0a2ec3942c8038631727ed3a
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Jul 11 19:52:57 2007 +0000

    2007-07-11  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.glade:
    	* data/gnome-video-arcade.ui:
    	* src/gva-ui.c:
    	Add hooks for a search window.

 ChangeLog                     |  7 ++++++
 data/gnome-video-arcade.glade | 55 ++++++++++++++++++++++++++++++++++++++++++-
 data/gnome-video-arcade.ui    |  1 +
 src/gva-ui.c                  | 13 ++++++++++
 4 files changed, 75 insertions(+), 1 deletion(-)

commit 6b12eca61c69ccac25702289fa875f2d2076cdb5
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Jul 11 19:05:29 2007 +0000

    2007-07-11  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-game-store.c (gva_game_store_new_from_query):
    	New UNTESTED function creates a GvaGameStore from an SQL query.
    
    	* src/gva-game-store.c (gva_game_store_populate):
    	Remove this function; superseded by gva_game_store_new_from_query().
    
    	* src/gva-columns.c (gva_columns_lookup_id):
    	New function returns the ID of the given column name.
    
    	* src/gva-error.h:
    	Add GVA_ERROR_QUERY.
    
    	* src/gva-tree-view.c (tree_view_data_added):
    	Remove the call to gva_game_store_populate().

 ChangeLog            |  17 ++++
 src/gva-columns.c    |  30 +++++--
 src/gva-columns.h    |  10 ++-
 src/gva-error.h      |   1 +
 src/gva-game-store.c | 218 +++++++++++++++++++++++++++------------------------
 src/gva-game-store.h |   5 +-
 src/gva-tree-view.c  |   5 --
 7 files changed, 167 insertions(+), 119 deletions(-)

commit 5f438d0ea064a3bf253faaf251d2034768edacab
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Jul 11 16:05:53 2007 +0000

    2007-07-11  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-db.c (db_parser_bind_text):
    	Convert the text to UTF-8 and stop quoting it.
    	Be more error tolerant.
    
    	* src/gva-columns.c (gva_columns_load):
    	Fall back to the default columns if the GConf list is empty.
    	Fix a memory leak.

 ChangeLog         | 10 ++++++++++
 src/gva-columns.c | 15 +++++++++++++++
 src/gva-db.c      | 15 +++++++++++----
 3 files changed, 36 insertions(+), 4 deletions(-)

commit 1f332e410e190102d9478707f764c88784d4457b
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Jul 11 11:43:48 2007 +0000

    2007-07-11  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.schemas:
    	Add "columns" key.
    
    	* src/Makefile.am:
    	Add gva-columns.[ch].
    
    	* src/main.c (main):
    	Call g_thread_init() to silence a runtime warning.
    
    	* src/gva-common.h:
    	Add GVA_GCONF_COLUMNS_KEY.
    
    	* src/gva-game-db.c (game_db_add_sample):
    	Put status in the "SAMPLESET" column.
    
    	* src/gva-game-store.[ch]:
    	Remove "USES_SAMPLES" and "HAVE_SAMPLES" columns.
    
    	* src/gva-columns.[ch]:
    	New source files construct and manage tree view columns.
    
    	* src/gva-tree-view.c (tree_view_columns_changed_cb):
    	Call gva_columns_save() when not in destruction.
    
    	* src/gva-tree-view.c:
    	Move the column construction functions to gva-columns.c.
    	Now we simply call gva_columns_load() from gva_tree_view_init().

 ChangeLog                       |  30 ++++
 NEWS                            |   3 +-
 configure.ac                    |   2 +-
 data/gnome-video-arcade.schemas |  13 ++
 src/Makefile.am                 |   2 +
 src/gva-columns.c               | 328 ++++++++++++++++++++++++++++++++++++++++
 src/gva-columns.h               |  34 +++++
 src/gva-common.h                |   3 +-
 src/gva-game-db.c               |   7 +-
 src/gva-game-store.c            |   2 -
 src/gva-game-store.h            |   5 +-
 src/gva-tree-view.c             | 148 ++----------------
 src/main.c                      |   2 +
 13 files changed, 426 insertions(+), 153 deletions(-)

commit 0db541e5d352ee60a481f093752e94831d9a8ebf
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Jul 10 17:03:41 2007 +0000

    2007-07-10  Matthew Barnes  <mbarnes@redhat.com>
    
    	* Relicense the code under the terms of the GNU GPL v3.
    
    	* Add a copyright notice and copying permission statement
    	  to each of the source code files.

 COPYING                        | 912 ++++++++++++++++++++++++++++-------------
 ChangeLog                      |   7 +
 NEWS                           |   1 +
 src/gva-cell-renderer-pixbuf.c |  18 +
 src/gva-cell-renderer-pixbuf.h |  18 +
 src/gva-common.h               |  18 +
 src/gva-db.c                   |  18 +
 src/gva-db.h                   |  18 +
 src/gva-error.c                |  18 +
 src/gva-error.h                |  18 +
 src/gva-favorites.c            |  18 +
 src/gva-favorites.h            |  18 +
 src/gva-game-db.c              |  18 +
 src/gva-game-db.h              |  18 +
 src/gva-game-store.c           |  18 +
 src/gva-game-store.h           |  18 +
 src/gva-history.c              |  18 +
 src/gva-history.h              |  18 +
 src/gva-main.c                 |  18 +
 src/gva-main.h                 |  18 +
 src/gva-mame-process.c         |  18 +
 src/gva-mame-process.h         |  18 +
 src/gva-play-back.c            |  18 +
 src/gva-play-back.h            |  18 +
 src/gva-preferences.c          |  18 +
 src/gva-preferences.h          |  18 +
 src/gva-process.c              |  18 +
 src/gva-process.h              |  18 +
 src/gva-properties.c           |  18 +
 src/gva-properties.h           |  18 +
 src/gva-time.c                 |  18 +
 src/gva-time.h                 |  18 +
 src/gva-tree-view.c            |  18 +
 src/gva-tree-view.h            |  18 +
 src/gva-ui.c                   |  18 +
 src/gva-ui.h                   |  18 +
 src/gva-util.c                 |  18 +
 src/gva-util.h                 |  18 +
 src/gva-xmame.c                |  18 +
 src/gva-xmame.h                |  18 +
 src/main.c                     |  18 +
 41 files changed, 1315 insertions(+), 289 deletions(-)

commit 71fbab17cd4f01754f59b0b9a13c9d337bf5d025
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Jul 10 04:12:11 2007 +0000

    2007-07-09  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.glade:
    	Add an invisible progress bar next to the status bar.
    
    	* src/Makefile.am:
    	Add gva-history.[ch].
    	Remove gva-parser.[ch].
    
    	* src/main.c:
    	Add database_needs_rebuilt(), which is not yet used.
    	Only initialize the history module if HISTORY_FILE is defined.
    
    	* src/gva-db.[ch]:
    	Merge the XML parser into the database module.
    	Add gva_db_build() to initiate the parsing process.
    	Other small improvements to the parsing logic.
    
    	* src/gva-game-db.[ch]:
    	Split arcade history API into a separate module.
    
    	* src/gva-game-store.[ch]:
    	Add columns to match the "game" table in the SQLite database.
    	Initial cut at populating the GvaGameStore via an SQL query.
    	Still much more work to be done here...
    
    	* src/gva-parser.[ch]:
    	Remove these files; parser merged into database module.
    
    	* src/gva-process.[ch]:
    	Remove the "exited" and "status" properties.
    	Add a "progress" property and API for getting and setting.
    
    	* src/gva-process.c (process_data_ready):
    	Simplify the logic to read one line per call.
    	Takes longer to parse the XML data but is less CPU intensive.
    	Not sure about this yet, I might revert it.
    
    	* src/gva-process.c (process_class_init):
    	Fix typos in "exited" signal registration.
    
    	* src/gva-ui.h:
    	Add GVA_WIDGET_MAIN_PROGRESSBAR.
    
    	* src/gva-properties.c:
    	* src/gva-tree-view.c:
    	Adapt to API changes.

 ChangeLog                     |  48 ++++
 NEWS                          |   1 +
 data/gnome-video-arcade.glade |  51 ++--
 src/Makefile.am               |   4 +-
 src/gva-db.c                  | 561 +++++++++++++++++++++++++++++++++++++++++-
 src/gva-db.h                  |   2 +
 src/gva-game-db.c             | 193 ---------------
 src/gva-game-store.c          | 215 ++++++++++++++--
 src/gva-game-store.h          |  57 +++--
 src/gva-history.c             | 193 +++++++++++++++
 src/gva-history.h             |  14 ++
 src/gva-parser.c              | 460 ----------------------------------
 src/gva-parser.h              |  13 -
 src/gva-process.c             | 112 +++++----
 src/gva-process.h             |   3 +
 src/gva-properties.c          |   6 +-
 src/gva-tree-view.c           |  10 +-
 src/gva-ui.h                  |   1 +
 src/gva-xmame.c               |   2 +-
 src/main.c                    |  28 ++-
 20 files changed, 1185 insertions(+), 789 deletions(-)

commit 1cf54a4d6165c95b3e93b00785ef88e8c637b537
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Jul 6 14:20:31 2007 +0000

    2007-07-06  Matthew Barnes  <mbarnes@redhat.com>
    
    	** Phase one of adding an SQLite games database.
    
    	* configure.ac:
    	Add check for sqlite3 package.
    
    	* src/Makefile.am:
    	Add gva-db.[ch].
    	Add flags for linking to libsqlite3.
    
    	* src/gva-common.h:
    	#include <sqlite3.h>
    
    	* src/gva-db.[ch]:
    	New source files provide an interface to the sqlite3 database.
    
    	* src/gva-error.[ch]:
    	Add GVA_SQLITE_ERROR.
    
    	* src/gva-parser.c:
    	Populate the sqlite3 database instead of the GtkTreeModel.
    	This makes the Properties window less useful for now, but the
    	next phase will populate the GtkTreeModel by way of a database
    	query.  The resulting database is currently under 2 MB, but does
    	not include BIOS, ROM, disk, chip, or dipswitch information yet.
    
    	* src/gva-xmame.c (gva_xmame_get_total_supported):
    	New function returns the total number of supported games.
    	Useful for reporting progress while building the database.

 ChangeLog        |  31 ++++++
 config.h.in      |   3 +
 configure.ac     |  12 ++-
 src/Makefile.am  |   8 +-
 src/gva-common.h |   1 +
 src/gva-db.c     | 186 ++++++++++++++++++++++++++++++++
 src/gva-db.h     |  23 ++++
 src/gva-error.c  |  11 ++
 src/gva-error.h  |   4 +-
 src/gva-parser.c | 320 ++++++++++++++++++++++++++++++++++++++++++-------------
 src/gva-xmame.c  |  35 ++++++
 src/gva-xmame.h  |   1 +
 src/main.c       |   4 +
 13 files changed, 561 insertions(+), 78 deletions(-)

commit 5dd1437adeba9a78c38393a8e3c3d3181bb48949
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Jul 4 14:52:09 2007 +0000

    2007-07-04  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-main.c:
    	Add a more convenient statusbar API.
    
    	* src/main.c:
    	* src/gva-main.c:
    	* src/gva-tree-view.c:
    	Use the new statusbar API.

 ChangeLog           | 10 +++++++
 src/gva-main.c      | 76 ++++++++++++++++++++++++++++++++++++++++++++---------
 src/gva-main.h      | 11 ++++++--
 src/gva-tree-view.c | 15 ++++-------
 src/main.c          |  8 +++---
 5 files changed, 90 insertions(+), 30 deletions(-)

commit cb7468540b87d2896aededda7f2aa161ab871f27
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Jul 4 05:06:32 2007 +0000

    2007-07-04  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.glade:
    	Properties window tweaks.
    
    	* src/gva-properties.c (gva_properties_init):
    	Display arcade history in monospaced font.
    
    	* src/gva-util.c (gva_get_monospace_font_name):
    	New function retrieves preferred monospace font name.

 ChangeLog                     | 11 +++++++++++
 data/gnome-video-arcade.glade | 36 +++++++++++++++++++-----------------
 src/gva-properties.c          | 11 +++++++++++
 src/gva-util.c                | 20 ++++++++++++++++++++
 src/gva-util.h                |  1 +
 5 files changed, 62 insertions(+), 17 deletions(-)

commit 9ae0e24bdbe6158158227a6d50a1d02b2ad7cc59
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Jul 4 03:54:06 2007 +0000

    2007-07-03  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac:
    	Drop support for --with-mameinfo-file.
    	Users aren't going to care about that information.
    
    	* src/gva-error.h:
    	Add GVA_ERROR_CONFIG.
    
    	* src/gva-parser.c:
    	Don't rely on MAME for arcade history.
    	Recent versions have dropped support for it.
    
    	* src/gva-properties.c (properties_update_history):
    	Fetch history information from gva_game_db_get_history().
    	Try looking up "cloneof" field if "name" field comes up empty.
    
    	* src/gva-game-db.c (gva_game_db_init):
    	Build an index of the arcade history file.
    
    	* src/gva-game-db.c (gva_game_db_get_history):
    	New function reads an entry from the arcade history file.

 ChangeLog            |  23 ++++++
 config.h.in          |   3 -
 configure.ac         |  17 +----
 src/gva-error.h      |   1 +
 src/gva-game-db.c    | 194 +++++++++++++++++++++++++++++++++++++++++++++++++++
 src/gva-game-db.h    |   2 +
 src/gva-parser.c     |   7 --
 src/gva-properties.c |  28 +++++++-
 8 files changed, 246 insertions(+), 29 deletions(-)

commit e22f738ed997a3d04d164cc72910c3bdfae88f2e
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Jul 3 12:38:47 2007 +0000

    2007-07-03  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-parser.c:
    	For attribute names, it turns out that just comparing the strings
    	directly is faster than lookup up the canonical representation of
    	each attribute name on every pass.

 ChangeLog        |  7 +++++++
 src/gva-parser.c | 46 ++++++++++------------------------------------
 2 files changed, 17 insertions(+), 36 deletions(-)

commit 8284b74e5c2106eaf421fd1b23786439d97e585d
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Jul 3 03:03:34 2007 +0000

    2007-07-02  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-process.c (process_set_property):
    	Set the watch priorities of the stdout and stderr streams to low
    	so the UI remains responsive while game properties are loading.
    
    	* src/gva-parser.c:
    	Maintain our own stack of interned element names.
    	Shaves a couple more seconds off the parsing time.

 ChangeLog         | 12 +++++++++++-
 src/gva-parser.c  | 15 ++++++++++++---
 src/gva-process.c |  4 ++--
 3 files changed, 25 insertions(+), 6 deletions(-)

commit 6094bf251af19c6dcee566f74fc5e9a0174f53eb
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jul 2 21:26:34 2007 +0000

    Quick bugfix.

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

commit dca891ab257767e3394033b7e8a9fdb3606c79c4
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jul 2 21:15:57 2007 +0000

    2007-07-02  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac:
    	Add --with-history-file and --with-mameinfo-file options.
    	These options don't do anything but they will be used to parse
    	the history.dat and mameinfo.dat files ourselves, since recent
    	MAME releases no longer use them.
    
    	* gva-parser.c:
    	Refactor the logic a bit.

 ChangeLog        |  11 ++++++
 config.h.in      |   6 ++++
 configure.ac     |  32 ++++++++++++++++++
 src/gva-parser.c | 100 ++++++++++++++++++++++---------------------------------
 4 files changed, 88 insertions(+), 61 deletions(-)

commit ada5847696fb24adaa80e362869415a7c1f1486c
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jul 2 17:46:15 2007 +0000

    2007-07-02  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-parser.c:
    	Compare canonical representations of element and attribute names.
    	Shaves a few seconds off the parsing time, down to ~11s for me.
    
    	* src/gva-game-db.c (gva_game_db_update_data):
    	Remove this function; it just calls gva_game_db_update_data().
    
    	* src/gva-tree-view.c:
    	While game properties are being loaded:
    	  - Display a statusbar message to that effect.
    	  - Disable the "properties" action.
    	Emit a GtkTreeSelection "changed" signal when done.

 ChangeLog           | 15 ++++++++++
 src/gva-game-db.c   |  6 ----
 src/gva-game-db.h   |  1 -
 src/gva-parser.c    | 86 +++++++++++++++++++++++++++++++++++++++++++----------
 src/gva-tree-view.c | 37 ++++++++++++++++++++---
 5 files changed, 118 insertions(+), 27 deletions(-)

commit d0a433c7eaf668c8e8efa9df1869037066bfeecd
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jul 2 14:29:38 2007 +0000

    2007-07-02  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-process.c (gva_process_get_time_elapsed):
    	New function returns approximate time elapsed since process started.
    
    	* src/gva-parser.c (parser_exit):
    	Print time elapsed, to help me measure and tune performance.
    
    	* src/gva-parser.c (parser_start_element_game):
    	Forgot to lookup the "cloneof" attribute.

 ChangeLog         | 11 +++++++++++
 src/gva-parser.c  | 10 ++++++++++
 src/gva-process.c | 15 +++++++++++++++
 src/gva-process.h |  2 ++
 4 files changed, 38 insertions(+)

commit f2d66a9d94c80a686210a865dc7bec4ec74faf49
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jul 2 01:47:55 2007 +0000

    2007-07-01  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/Makefile.am:
    	Add gva-parser.[ch].
    
    	* src/gva-game-store.c:
    	* src/gva-game-store.h:
    	Add a bunch more columns to the tree model.
    	Rename TITLE column to DESCRIPTION.
    	Rename ROMNAME column to NAME.
    
    	* src/gva-game-db.c: Adapt.
    
    	* src/gva-play-back.c: Adapt.
    
    	* src/gva-properties.c: Adapt.
    
    	* src/gva-tree-view.c: Adapt.
    
    	* src/gva-ui.c: Adapt.
    
    	* src/gva-process.c:
    	* src/gva-process.h:
    	* src/gva-mame-process.c:
    	Remove the unused "peek" methods from GvaProcessClass.
    
    	* src/gva-game-db (gva_game_db_update_data):
    	Call gva_parse_game_data().
    
    	* src/gva-parser.c:
    	* src/gva-parser.h:
    	New source files parse MAME's -listxml output.
    
    	* src/gva-properties.c (properties_update_header):
    	Display manufacturer and year in smaller font.
    
    	* src/gva-properties.c (properties_update_history):
    	New function shows history information for the selected game.
    
    	* src/gva-xmame.c (gva_xmame_list_xml):
    	New function invokes MAME's -listxml feature.

 ChangeLog              |  42 ++++++++
 NEWS                   |   9 ++
 configure.ac           |   2 +-
 src/Makefile.am        |   2 +
 src/gva-game-db.c      |  11 +-
 src/gva-game-db.h      |   1 +
 src/gva-game-store.c   |  15 ++-
 src/gva-game-store.h   |  15 ++-
 src/gva-mame-process.c |  28 ------
 src/gva-parser.c       | 268 +++++++++++++++++++++++++++++++++++++++++++++++++
 src/gva-parser.h       |  13 +++
 src/gva-play-back.c    |  10 +-
 src/gva-process.c      |  38 -------
 src/gva-process.h      |   4 -
 src/gva-properties.c   |  37 +++++--
 src/gva-tree-view.c    |  28 ++++--
 src/gva-ui.c           |   2 +-
 src/gva-ui.h           |   2 +
 src/gva-xmame.c        |   7 ++
 src/gva-xmame.h        |   1 +
 20 files changed, 432 insertions(+), 103 deletions(-)

commit 22157675bbc4fbce33180d3c0f040d875d97c330
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jul 2 00:59:23 2007 +0000

    2007-07-01  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.glade:
    	Rework the forward and back buttons.
    
    	* src/gva-ui.c:
    	Reword the tooltips for "go-back" and "go-forward" actions.

 ChangeLog                     |   8 +++
 data/gnome-video-arcade.glade | 114 +++++++++++++++++++++++++++++-------------
 src/gva-ui.c                  |   4 +-
 3 files changed, 90 insertions(+), 36 deletions(-)

commit 8d66c794fe97d312f23470e980b04e548430e314
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jul 1 13:15:18 2007 +0000

    2007-07-01  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-properties.c:
    	* src/gva-properties.h:
    	New source files implement the properties window.

 ChangeLog            |  4 +++
 src/gva-properties.c | 85 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/gva-properties.h | 12 ++++++++
 3 files changed, 101 insertions(+)

commit a3131eb7d0cac02cf164e255c52e4807edc6f44d
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jul 1 13:13:25 2007 +0000

    2007-07-01  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.glade:
    	Design a skeletal Properties window.
    
    	* src/Makefile.am:
    	Add gva-properties.[ch].
    
    	* src/main.c (main):
    	Call gva_properties_init().
    
    	* src/gva-tree-view.c (tree_view_selection_changed_cb):
    	Update sensitivity of the "go-back" and "go-forward" actions.
    
    	* src/gva-ui.h:
    	Add "go-back" and "go-forward" action macros.
    	Add various "properties" widget macros.
    
    	* src/gva-ui.c:
    	Add "go-back" and "go-forward" actions, which move the tree view
    	cursor back or forward (respectively) one row.
    
    	* src/gva-ui.c (action_properties_cb):
    	Show the Properties window.

 ChangeLog                     |  25 ++++
 data/gnome-video-arcade.glade | 262 +++++++++++++++++++++++++++++++++++++++++-
 src/Makefile.am               |   2 +
 src/gva-tree-view.c           |   4 +
 src/gva-ui.c                  |  71 ++++++++++++
 src/gva-ui.h                  |   9 ++
 src/main.c                    |   2 +
 7 files changed, 374 insertions(+), 1 deletion(-)

commit 0f3f8ca14f5e123843069b2fd0f2023bfddba6bf
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Jun 26 14:01:35 2007 +0000

    2007-06-26  Matthew Barnes  <mbarnes@redhat.com>
    
    	* configure.ac:
    	Add version checks for GLib and GTK+. (Gianni Moschini)
    
    	* src/Makefile.am:
    	Add GLIB_CFLAGS, GLIB_GLIBS, GTK_CFLAGS, and GTK_LIBS.

 ChangeLog       |  8 ++++++++
 configure.ac    | 10 ++++++++++
 src/Makefile.am |  2 ++
 3 files changed, 20 insertions(+)

commit 2d4f2675847b680ae23ddc2165f3d98ae9ac1f80
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Jun 22 04:35:58 2007 +0000

    2007-06-21  Matthew Barnes  <mbarnes@redhat.com>
    
    	* NEWS: Update for 0.2.0
    
    	* data/gnome-video-arcade.glade:
    	* src/gva-ui.c:
    	Revert previous change; not all icon themes represent
    	"gnome-joystick" as a joystick.  Too bad.

 ChangeLog                     |  9 +++++++++
 NEWS                          | 11 +++++++++++
 data/gnome-video-arcade.glade |  2 +-
 src/gva-ui.c                  |  2 +-
 4 files changed, 22 insertions(+), 2 deletions(-)

commit a222f70fbfabe9b3e4e5eade9add0552fd939c26
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed Jun 20 01:29:32 2007 +0000

    2007-06-19  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/main.c (main):
    	Use gtk_init_with_args() to initialize GTK+.
    
    	* data/gnome-video-arcade.glade:
    	* src/gva-ui.c:
    	Use "gnome-joystick" for the start game icon.
    
    	* po/POTFILES.in: Add src/gva-mame-process.c.

 ChangeLog                     | 9 +++++++++
 data/gnome-video-arcade.glade | 2 +-
 po/ChangeLog                  | 4 ++++
 po/POTFILES.in                | 1 +
 src/gva-ui.c                  | 2 +-
 src/main.c                    | 6 +++++-
 6 files changed, 21 insertions(+), 3 deletions(-)

commit c3ce144b51398a7d77b4614cfae5b772baa79817
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Jun 19 12:19:23 2007 +0000

    2007-06-19  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-game-store.c (gva_game_store_clear):
    	New function clears both the list store and the index.
    
    	* src/gva-play-back.c (gva_play_back_show):
    	New function refreshes the recorded game list, selects the given
    	input file name (if given), and shows the Recorded Games window.
    
    	* src/gva-ui.c (record_game_exited), (action_show_play_back_cb):
    	Call gva_play_back_show() instead of gtk_widget_show().

 ChangeLog            | 12 +++++++++
 src/gva-game-db.c    |  2 +-
 src/gva-game-store.c | 55 ++++++++++++++++++++++++--------------
 src/gva-game-store.h |  7 ++---
 src/gva-play-back.c  | 74 ++++++++++++++++++++++++++++++++--------------------
 src/gva-play-back.h  |  1 +
 src/gva-ui.c         | 11 ++++----
 7 files changed, 104 insertions(+), 58 deletions(-)

commit c12fa345ad9281fd45d9e01ca6ad8d0b1510f6b6
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Jun 19 05:25:53 2007 +0000

    2007-06-19  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-game-store.c:
    	* src/gva-game-store.h:
    	Embed an index (hash table) of tree row references.
    	Provide an API for adding to and querying the index.
    
    	* src/gva-play-back.c (play_back_add_input_file):
    	Build a game store index of input file names.
    
    	* src/gva-game-db.c:
    	Use GvaGameStore's new embedded index.
    
    	* src/gva-game-db.c (gva_game_db_get_model):
    	The game database now lives here.

 ChangeLog            | 16 +++++++++++++
 src/gva-game-db.c    | 44 +++++++++++++-----------------------
 src/gva-game-store.c | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++-
 src/gva-game-store.h |  9 ++++++--
 src/gva-play-back.c  | 15 ++++++++++---
 5 files changed, 113 insertions(+), 34 deletions(-)

commit 2229a3ef0c688063b1a59b80e8e088a4ea7738a8
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jun 18 04:39:22 2007 +0000

    2007-06-18  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/Makefile.am:
    	Add gva-error.[ch] and gva-mame-process.[ch].
    
    	* src/gva-favorites.c:
    	* src/gva-play-back.c:
    	* src/gva-preferences.c:
    	* src/gva-tree-view.c:
    	* src/gva-ui.c:
    	* src/gva-util.c:
    	* src/gva-xmame.c:
    	Pass GErrors to gva_error_handle().
    
    	* src/gva-process.c:
    	* src/gva-process.h:
    	Add a GError to the GvaProcess structure.
    	Add a private pointer to the GvaProcess structure.
    	Check for termination due to signal on process exit.
    	Include status value in "exited" signal.
    	Convert peek/read line functions to class methods.
    
    	* src/gva-process.c (gva_process_spawn):
    	New function spawns a GvaProcess with the given command line.
    
    	* src/gva-mame-process.c:
    	* src/gva-mame-process.h:
    	New source files subclass GvaProcess.
    	Check for errors when reading or peeking at lines.
    
    	* src/gva-game-db.c:
    	Load available romnames synchronously.
    	Load game titles and sample information asynchronously.
    
    	* src/gva-tree-view.c (tree_view_load_data):
    	Kick off multiple processes that load data asynchronously.
    	Keep the tree view widget insensitive until titles are loaded.
    
    	* src/gva-xmame.c:
    	* src/gva-xmame.h:
    	Move error detection routines to GvaProcess or GvaMameProcess.
    	Make the API more asynchronous by spawning a GvaMameProcess.
    
    	* src/gva-ui.c: Adapt.

 ChangeLog                     |  45 ++++
 configure.ac                  |   2 +-
 data/gnome-video-arcade.glade |  12 ++
 src/Makefile.am               |   4 +
 src/gva-error.c               |  24 +++
 src/gva-error.h               |  22 ++
 src/gva-favorites.c           |  14 +-
 src/gva-game-db.c             | 131 +++++-------
 src/gva-game-db.h             |   4 +-
 src/gva-mame-process.c        | 186 ++++++++++++++++
 src/gva-mame-process.h        |  48 +++++
 src/gva-play-back.c           |  21 +-
 src/gva-preferences.c         |  29 +--
 src/gva-process.c             | 236 ++++++++++++--------
 src/gva-process.h             |  20 +-
 src/gva-tree-view.c           |  89 +++++---
 src/gva-ui.c                  |  74 ++++---
 src/gva-util.c                |   8 +-
 src/gva-xmame.c               | 488 ++++++++++++++++--------------------------
 src/gva-xmame.h               |  38 ++--
 src/main.c                    |   5 -
 21 files changed, 888 insertions(+), 612 deletions(-)

commit 4312cdd2c34028524adc6c47826d20594e987854
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Jun 15 02:31:02 2007 +0000

    2007-06-14  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-tree-view.c (gva_tree_view_set_selected_game):
    	Fix a memory leak.

 ChangeLog           | 5 +++++
 src/gva-tree-view.c | 1 +
 2 files changed, 6 insertions(+)

commit 73da6a276e16191f035dfc3035dbd95d70594cb3
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Jun 8 04:17:13 2007 +0000

    2007-06-08  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-xmame.c (xmame_scan_for_error):
    	Fix a double free.

 ChangeLog       | 5 +++++
 src/gva-xmame.c | 2 --
 2 files changed, 5 insertions(+), 2 deletions(-)

commit b8878c3587eb2856f741785d82f69aef73eb19da
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri Jun 8 04:10:31 2007 +0000

    2007-06-08  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-process.[ch]:
    	Implement a more line-oriented API.
    
    	* src/gva-xmame.c: Adapt and simplify.

 ChangeLog         |   7 ++
 src/gva-process.c | 287 ++++++++++++++++++++++++++++--------------------------
 src/gva-process.h |  12 ++-
 src/gva-xmame.c   | 185 +++++++++++++++++++----------------
 src/gva-xmame.h   |   4 +-
 5 files changed, 271 insertions(+), 224 deletions(-)

commit b7e1756f8d37d11a455f72121de3dfde7655d0f6
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu Jun 7 12:06:59 2007 +0000

    2007-06-07  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-process.[ch]:
    	Make GvaProcess a GObject with signals and properties.
    
    	* src/gva-xmame.c: Adapt.
    
    	* src/gva-xmame.c (gva_xmame_verify_rom_sets):
    	Experiment with making this function asynchronous.

 ChangeLog         |  10 +
 src/gva-process.c | 573 +++++++++++++++++++++++++++++++++++++++++-------------
 src/gva-process.h |  47 +++--
 src/gva-xmame.c   | 103 ++++++----
 src/gva-xmame.h   |  12 +-
 5 files changed, 550 insertions(+), 195 deletions(-)

commit 6f7d41596867abde0778f288b1de1b0f8e9a8161
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Jun 5 12:19:09 2007 +0000

    2007-06-05  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-game-db.c (gva_game_db_init):
    	Call gva_xmame_get_rompath() instead of gva_xmame_get_config_value().
    
    	* src/gva-xmame.[ch]: (gva_xmame_get_rompath):
    	New function calls gva_xmame_get_config_value("rompath", ...).
    
    	* src/gva-xmame.[ch]: (gva_xmame_verify_rom_sets):
    	New function invokes xmame to quickly verify ROM sets.
    	Similar to gva_xmame_verify_sample_sets().

 ChangeLog         | 12 +++++++++++
 src/gva-game-db.c |  2 +-
 src/gva-xmame.c   | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/gva-xmame.h   |  2 ++
 4 files changed, 78 insertions(+), 1 deletion(-)

commit b6e05cee154815f5f5f1b98516cea5e0f8ba605e
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Jun 4 12:04:15 2007 +0000

    2007-06-04  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-tree-view.c (tree_view_filter_visible),
    	(gva_tree_view_set_selected_game):
    	Fix a couple memory leaks.

 ChangeLog           |  6 ++++++
 src/gva-tree-view.c | 13 ++++++-------
 2 files changed, 12 insertions(+), 7 deletions(-)

commit d034ce54427fc97d75bca2ccc3335c6606a3610b
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Jun 2 06:14:16 2007 +0000

    2007-06-02  Matthew Barnes  <mbarnes@redhat.com>
    
    	* NEWS: Update for 0.1.4.
    
    	* src/gva-xmame.c:
    	* src/gva-xmame.h:
    	Rename gva_xmame_has_xxx() to gva_xmame_supports_xxx().
    
    	* src/gva-xmame.c (gva_xmame_run_game), (gva_xmame_record_game),
    	(gva_xmame_playback_game):
    	Build the argument list with a GString and only use "-[no]autosave"
    	and "-[no]fullscreen" options if they're supported.
    
    	* src/gva-preferences.c (gva_preferences_init): Adapt.
    
    	* src/gva-process.c (gva_process_new):
    	Set the encoding of all three channels to NULL.

 ChangeLog             | 18 ++++++++++
 NEWS                  | 13 ++++++++
 src/gva-preferences.c |  4 +--
 src/gva-process.c     | 15 +++++++++
 src/gva-xmame.c       | 92 +++++++++++++++++++++++++++++++++++----------------
 src/gva-xmame.h       |  4 +--
 6 files changed, 114 insertions(+), 32 deletions(-)

commit a8645e277a48b140d9ab4f3eeaa60ca7cb571e91
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Jun 2 04:31:22 2007 +0000

    2007-06-02  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-preferences.c (gva_preferences_init):
    	Make the "auto-save" and "full-screen" actions insensitive if
    	xmame does not support the corresponding options.
    
    	* src/gva-xmame.c (gva_xmame_has_config_value):
    	New function returns TRUE if xmame supports the given option name.
    
    	* src/gva-xmame.c (gva_xmame_has_auto_save),
    	(gva_xmame_has_full_screen):
    	New functions use gva_xmame_has_config_value() to test for xmame's
    	capabilities.

 ChangeLog             | 14 ++++++++++++++
 src/gva-preferences.c |  9 +++++++++
 src/gva-xmame.c       | 33 +++++++++++++++++++++++++++++++++
 src/gva-xmame.h       |  3 +++
 4 files changed, 59 insertions(+)

commit 499d7d32230914ef2cb0db1662dded4c69909971
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu May 31 12:32:57 2007 +0000

    - In preferences dialog note, also mention state restoration does not
      apply to recording or playing back games.

 data/gnome-video-arcade.glade | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit bd6888d7a5b8b577dc279cf4f8a230f77c1981bc
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed May 30 12:44:05 2007 +0000

    2007-05-30  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.glade:
    	Restructure the preferences window.
    
    	* data/gnome-video-arcade.schemas:
    	Add schemas for "auto-save" and "full-screen" keys.
    
    	* src/gva-common.h:
    	#include <glib/gstdio.h>
    
    	* src/main.c (main):
    	Set a default icon for transient windows.
    
    	* src/gva-preferences.c:
    	* src/gva-preferences.h:
    	Connect preference widgets to actions.
    	Provide read/write access to preferences.
    
    	* src/gva-ui.c:
    	Add "auto-save" and "full-screen" toggle actions.
    
    	* src/gva-ui.h:
    	Add macros for new actions and their proxy widgets.
    
    	* src/gva-xmame.c (gva_xmame_run_game), (gva_xmame_record_game),
    	(gva_xmame_playback_game):
    	Honor preferences when invoking xmame.
    
    	* src/gva-xmame.c (gva_xmame_clear_state):
    	New function deletes a game's state file.

 ChangeLog                       | 32 ++++++++++++++
 data/gnome-video-arcade.glade   | 86 ++++++++++++------------------------
 data/gnome-video-arcade.schemas | 37 ++++++++++++++--
 src/gva-common.h                |  1 +
 src/gva-play-back.c             |  2 +-
 src/gva-preferences.c           | 96 +++++++++++++++++++++++++++++++++++++++++
 src/gva-preferences.h           |  4 ++
 src/gva-process.c               |  2 +-
 src/gva-tree-view.c             | 10 ++---
 src/gva-ui.c                    | 80 +++++++++++++++++++++++++++++-----
 src/gva-ui.h                    |  4 ++
 src/gva-xmame.c                 | 65 +++++++++++++++++++++++++---
 src/gva-xmame.h                 |  6 ++-
 src/main.c                      |  3 +-
 14 files changed, 342 insertions(+), 86 deletions(-)

commit c9d50878452326af14b77443109e57e01bfeedfc
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue May 29 11:59:49 2007 +0000

    2007-05-29  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.glade:
    	Initial design of a preferences window.
    
    	* data/gnome-video-arcade.ui:
    	Add Edit menu with a Preferences item.
    
    	* src/Makefile.am:
    	Add gva-preferences.[ch].
    
    	* src/gva-common.h:
    	Add key names for preferences.
    
    	* src/gva-preferences.c:
    	* src/gva-preferences.h:
    	New source files implement the preferences window.
    	Preferences don't work yet.
    
    	* src/main.c (main):
    	Call gva_preferences_init().
    
    	* src/gva-ui.h:
    	Add macros for some preferences widgets.
    
    	* src/gva-ui.c:
    	Add "edit-menu" and "preferences" actions.
    
    	* src/gva-xmame.c (xmame_post_game_analysis):
    	Don't refer to self by name in error messages.

 ChangeLog                     |  31 ++++++++
 data/gnome-video-arcade.glade | 166 ++++++++++++++++++++++++++++++++++++++++++
 data/gnome-video-arcade.ui    |   3 +
 src/Makefile.am               |   2 +
 src/gva-common.h              |   2 +
 src/gva-preferences.c         |  18 +++++
 src/gva-preferences.h         |  12 +++
 src/gva-ui.c                  |  20 +++++
 src/gva-ui.h                  |   4 +
 src/gva-xmame.c               |   3 +-
 src/main.c                    |   2 +
 11 files changed, 262 insertions(+), 1 deletion(-)

commit a555e06ff5bf2cf5f108476f7fe4637829818696
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue May 29 05:25:22 2007 +0000

    2007-05-28  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/Makefile.am:
    	Fix up schema installation rules.
    
    	* data/gnome-video-arcade.schema:
    	Add missing schema for "selected-view" key.

 ChangeLog                       |  8 ++++++++
 data/Makefile.am                |  4 ++++
 data/gnome-video-arcade.schemas | 12 ++++++++++++
 3 files changed, 24 insertions(+)

commit f080bb1252177d2107ac8ed0fcc8465ff616e88d
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue May 29 03:14:20 2007 +0000

    2007-05-28  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-process.h:
    	* src/gva-process.c:
    	Combine callback typedefs into one (GvaProcessNotify).
    
    	* src/gva-process.c (gva_process_new):
    	Make stdout and stderr buffers non-blocking.
    	Add a GError parameter.
    
    	* src/gva-process.c (process_data_ready):
    	Read data into a 4K buffer instead of one line at a time.
    
    	* src/gva-xmame.c:
    	* src/gva-xmame.h:
    	Adapt.

 ChangeLog         | 17 ++++++++++++++++
 src/gva-process.c | 47 ++++++++++++++++++++++++++++++--------------
 src/gva-process.h | 47 ++++++++++++++++++++++----------------------
 src/gva-xmame.c   | 14 +++++++-------
 src/gva-xmame.h   | 58 +++++++++++++++++++++++++++----------------------------
 5 files changed, 109 insertions(+), 74 deletions(-)

commit 03328eee0ffd7ae944344bc90ed9be7ae3d6c965
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon May 28 23:58:15 2007 +0000

    2007-05-28  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/Makefile.am:
    	Add gva-process.[ch].
    
    	* src/gva-process.c:
    	* src/gva-process.h:
    	New source files provide a simple process abstraction.
    
    	* src/gva-xmame.c:
    	* src/gva-xmame.h:
    	Reimplement the API using GvaProcess.
    	Add gva_xmame_async_command() for asynchronous commands.
    	Make functions that run/record/playback games asynchronous.

 ChangeLog         |  15 +++
 src/Makefile.am   |   2 +
 src/gva-process.c | 301 +++++++++++++++++++++++++++++++++++++++++++++++
 src/gva-process.h |  38 ++++++
 src/gva-xmame.c   | 342 +++++++++++++++++++++++++++---------------------------
 src/gva-xmame.h   |  52 +++++----
 6 files changed, 558 insertions(+), 192 deletions(-)

commit 9d145a41189ca3c24da48958c0df178d28c7ed18
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat May 26 15:19:34 2007 +0000

    2007-05-26  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-main.c:
    	* src/gva-main.h:
    	* src/gva-ui.c:
    	Move menu item tooltip handling to gva-main.c.
    
    	* data/gnome-video-arcade.glade
    	* src/gva-ui.c:
    	Make menu and button tooltips consistent.

 ChangeLog                     | 11 +++++++++
 configure.ac                  |  2 +-
 data/gnome-video-arcade.glade |  4 ++--
 src/gva-main.c                | 51 +++++++++++++++++++++++++++++++++++++++
 src/gva-main.h                |  3 +++
 src/gva-ui.c                  | 55 +++----------------------------------------
 6 files changed, 71 insertions(+), 55 deletions(-)

commit b454e51e9f3d044e0adf6e1b94c73da6f5886082
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat May 26 01:17:28 2007 +0000

    2007-05-25  Matthew Barnes  <mbarnes@redhat.com>
    
    	* NEWS: Update for 0.1.3.
    
    	* src/gva-ui.c:
    	Make accelerator keys work.
    	Add more tooltips to actions.
    	Show menu item tooltips in the statusbar.

 ChangeLog    |  9 +++++++
 NEWS         | 12 +++++++++
 src/gva-ui.c | 79 ++++++++++++++++++++++++++++++++++++++++++++++++++++++------
 3 files changed, 93 insertions(+), 7 deletions(-)

commit ee4a02b84f9240f573b106f8fdabd8f4cb0fc292
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri May 25 23:13:27 2007 +0000

    2007-05-25  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.ui:
    	Add menu items for adding or removing from favorites list.
    
    	* src/gva-tree-view.c (tree_view_selected_changed_cb):
    	Update visibility of "favorite" actions.
    
    	* src/gva-tree-view.c (tree_view_favorite_clicked_cb):
    	Activate "insert-favorite" or "remove-favorite" action.
    
    	* src/gva-ui.c:
    	* src/gva-ui.h:
    	Add "insert-favorite" and "remove-favorite" actions.
    	Rename gva_ui_get_glade_widget() to gva_ui_get_widget().

 ChangeLog                  | 16 ++++++++++
 data/gnome-video-arcade.ui |  3 ++
 src/gva-tree-view.c        | 65 ++++++++++++++++++--------------------
 src/gva-ui.c               | 79 ++++++++++++++++++++++++++++++++++++++++++----
 src/gva-ui.h               |  6 ++--
 5 files changed, 127 insertions(+), 42 deletions(-)

commit 7ea560d009f8e5e4312517c114a73402c5046a29
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Fri May 25 17:20:40 2007 +0000

    2007-05-25  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-common.h:
    	* src/gva-xmame.c:
    	* src/gva-xmame.h:
    	Minor fixes.

 ChangeLog        | 7 +++++++
 src/gva-common.h | 2 +-
 src/gva-xmame.c  | 4 ----
 src/gva-xmame.h  | 2 +-
 4 files changed, 9 insertions(+), 6 deletions(-)

commit 3bb166e99d282c49af06bb0d1cce2660c2c5a63d
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu May 24 14:49:08 2007 +0000

    2007-05-24  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-tree-view.c (tree_view_button_press_cb):
    	Don't assume gtk_tree_view_get_path_at_pos() will succeed.
    	User may right-click on blank area of the tree view.
    
    	* src/gva-tree-view.c (tree_view_selected_changed_cb):
    	Desensitize the "record" action when nothing is selected.
    
    	* src/gva-tree-view.c (gva_tree_view_update):
    	Check the return value of gva_tree_view_get_last_selected_game()
    	for NULL, which can occur the first time the program is run.
    
    	* src/gva-tree-view.c (gva_tree_view_get_last_selected_game):
    	Don't assume GConf will give us a non-empty string.

 ChangeLog           | 16 ++++++++++++++++
 configure.ac        |  2 +-
 src/gva-tree-view.c | 21 ++++++++++++---------
 3 files changed, 29 insertions(+), 10 deletions(-)

commit 54befda9149efc0ea04825c376be9aefbb1f8063
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu May 24 04:38:03 2007 +0000

    2007-05-23  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.glade (play-back-scrolled-window):
    	Set both horizontal and vertical scrollbar policies to automatic.
    
    	* src/gva-play-back.c (gva_play_back_init):
    	Put the text renderer in PANGO_ELLIPSIZE_END mode.

 ChangeLog                     | 8 ++++++++
 NEWS                          | 6 +++---
 configure.ac                  | 2 +-
 data/gnome-video-arcade.glade | 2 ++
 src/gva-play-back.c           | 1 +
 5 files changed, 15 insertions(+), 4 deletions(-)

commit 728c3210aec317b61b0f9445c15cd799f34b2ae7
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu May 24 03:55:48 2007 +0000

    2007-05-23  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-tree-view.c (tree_view_column_new_title):
    	Put the text renderer in PANGO_ELLIPSIZE_END mode.
    
    	* src/gva-tree-view.c (gva_tree_view_set_selected_game):
    	Don't assume the GtkTreeModelSort path is valid.

 ChangeLog           |  8 ++++++++
 src/gva-tree-view.c | 16 +++++++++++++---
 2 files changed, 21 insertions(+), 3 deletions(-)

commit 876e06ccf5b6d483322f7819bf6b383031ec6ce7
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu May 24 03:09:12 2007 +0000

    2007-05-23  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-common.h:
    	Put all GConf key definitions here.
    
    	* src/gva-main.c:
    	* src/gva-tree-view.c:
    	* src/gva-ui.c:
    	* data/gnome-video-arcade.glade:
    	* data/gnome-video-arcade.ui:
    	Use a single model/filter/view stack and use different filtering
    	criteria for each application view (Available / Favorites / Results).
    
    	* src/gva-tree-view.c:
    	Make columns reorderable.
    	Distinguish between getting/setting the selected or last selected
    	game or view.  "Last selected" refers to what's stored in GConf.
    
    	* src/gva-ui.c (action_about_cb):
    	Load the logo ourselves so we can dictate the size.

 ChangeLog                     |  21 +++
 NEWS                          |  14 ++
 configure.ac                  |   2 +-
 data/gnome-video-arcade.glade |  86 +----------
 data/gnome-video-arcade.ui    |  16 +--
 src/gva-common.h              |   3 +
 src/gva-favorites.c           |   4 +-
 src/gva-main.c                |  60 +-------
 src/gva-tree-view.c           | 326 ++++++++++++++++++++++++------------------
 src/gva-tree-view.h           |  14 +-
 src/gva-ui.c                  |  33 +++--
 src/gva-ui.h                  |   5 +-
 12 files changed, 274 insertions(+), 310 deletions(-)

commit 7ac0d640eef6f4efffd77b3e66d3e33acd39326c
Merge: 0d6d7da 1b15d38
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue May 22 02:28:24 2007 +0000

    - Post-migration clean up.

commit 1b15d383d1112d883d3790ec992eafc8444fb713
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun May 20 22:43:53 2007 +0000

    2007-05-20  Matthew Barnes  <mbarnes@redhat.com>
    
    	* src/gva-game-db.c:
    	* src/gva-game-db.h:
    	* src/gva-game-store.c:
    	* src/gva-game-store.h:
    	* src/main.c:
    	Add a samples column.
    
    	* src/gva-tree-view.c:
    	Add a samples column.
    	Use smaller icons in columns.
    
    	* src/gva-xmame.c:
    	* src/gva-xmame.h:
    	Support "xmame -verifysamplesets" command.

 ChangeLog            | 17 +++++++++++
 src/gva-game-db.c    | 49 ++++++++++++++++++++++++++++++
 src/gva-game-db.h    |  1 +
 src/gva-game-store.c |  2 ++
 src/gva-game-store.h |  2 ++
 src/gva-tree-view.c  | 86 ++++++++++++++++++++++++++++++++++++++++++++++++++--
 src/gva-xmame.c      | 76 +++++++++++++++++++++++++++++++++++++++++-----
 src/gva-xmame.h      |  1 +
 src/main.c           |  5 +++
 9 files changed, 228 insertions(+), 11 deletions(-)

commit 3a837e9b1c5c450439bf0816de08ec5c723a9ada
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun May 20 02:53:32 2007 +0000

    - Use new logo in About dialog.

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

commit a580224dcfe7e656bfe6108c0e5c2b6027b20713
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun May 20 02:52:20 2007 +0000

    2007-05-19  Matthew Barnes  <mbarnes@redhat.com>
    
    	* data/gnome-video-arcade.glade:
    	Use custom icon instead of "gnome-joystick".
    
    	* data/gnome-video-arcade.desktop.in:
    	Use custom icon instead of "gnome-joystick".
    	Change name to "Video Arcade" (drop the "GNOME").
    
    	* data/Makefile.am:
    	Install icon into $(datadir)/icons/hicolor/scalable/apps.
    
    	* src/gva-game-store.c (game_store_constructor):
    	* src/gva-game-store.h:
    	Define columns for "year", "manufacturer", and "clone-of".
    
    	* src/gva-ui.c (action_about_cb):
    	Add translator credits.
    
    	* po/LINGUAS: Add Swedish (sv).
    
    	* po/POTFILES.in: Add missing files with translations.
    
    	* po/sv.po: Swedish translation from Daniel Nylander.

 ChangeLog                          |   19 +
 configure.ac                       |    4 +-
 data/Makefile.am                   |   17 +
 data/gnome-video-arcade.desktop.in |   10 +-
 data/gnome-video-arcade.glade      |    2 +-
 data/gnome-video-arcade.svg        | 2703 ++++++++++++++++++++++++++++++++++++
 po/ChangeLog                       |    7 +
 po/LINGUAS                         |    1 +
 po/POTFILES.in                     |    3 +
 po/sv.po                           |  177 +++
 src/gva-game-store.c               |   16 +-
 src/gva-game-store.h               |    3 +
 src/gva-ui.c                       |    1 +
 13 files changed, 2948 insertions(+), 15 deletions(-)

commit 6995c47b9dfa85d6fcfcb8595ac82d72bd1eb294
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue May 15 03:55:21 2007 +0000

    - Sane behavior of Favorites column in Favorites view.

 src/gva-favorites.c | 17 +++++++++++++----
 src/gva-favorites.h |  1 +
 src/gva-main.c      |  2 ++
 src/gva-tree-view.c | 31 +++++++++++++++++++++++++++++--
 src/gva-tree-view.h |  1 +
 5 files changed, 46 insertions(+), 6 deletions(-)

commit ab9bb5d0681f9d5bfc96160de1ee679a8b7d8acb
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue May 15 03:20:26 2007 +0000

    - Use a GtkNotebook with multiple GtkTreeModel/GtkTreeView pairs.
    - Organize tree view code to make the logic cleaner.

 data/gnome-video-arcade.glade |  95 ++++++++--
 data/gnome-video-arcade.ui    |  16 +-
 src/Makefile.am               |   6 +-
 src/gva-main.c                | 304 ++++----------------------------
 src/gva-main.h                |   2 -
 src/gva-models.c              | 139 ---------------
 src/gva-models.h              |  21 ---
 src/gva-tree-view.c           | 396 ++++++++++++++++++++++++++++++++++++++++++
 src/gva-tree-view.h           |  14 ++
 src/gva-ui.c                  |  16 +-
 src/gva-ui.h                  |  11 +-
 11 files changed, 559 insertions(+), 461 deletions(-)

commit 0c6e0e70b3d0ec7d19546184be2912513af601a0
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon May 14 01:13:17 2007 +0000

    - Remember the selected game when switching views (sorta works).

 data/gnome-video-arcade.schemas |  4 +--
 src/gva-main.c                  | 29 +++++++++++++++-------
 src/gva-main.h                  |  1 +
 src/gva-models.c                | 54 ++++++++++++++++++++++++++++++++++++++++-
 src/gva-models.h                |  1 +
 src/gva-ui.c                    |  6 ++---
 6 files changed, 80 insertions(+), 15 deletions(-)

commit 38721eb72db456f1456cc1c3d153dc2877fd5c3a
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun May 13 01:54:38 2007 +0000

    - Initial implementation of "Favorites" view.

 configure.ac         |  2 +-
 src/Makefile.am      |  2 ++
 src/gva-game-db.c    | 48 +++++++++++++++++++++--------
 src/gva-game-store.h |  2 +-
 src/gva-main.c       | 43 ++++++++++++++------------
 src/gva-main.h       |  2 --
 src/gva-models.c     | 87 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/gva-models.h     | 20 ++++++++++++
 src/gva-play-back.c  | 29 ++++++++----------
 src/gva-ui.c         |  6 ++--
 src/gva-xmame.c      | 26 ++++++++++++++++
 src/gva-xmame.h      |  1 +
 12 files changed, 213 insertions(+), 55 deletions(-)

commit bd46186e9b71ab9427280cb2cc616015c1af1426
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Thu May 10 11:58:09 2007 +0000

    - Support recorded game play back.

 data/gnome-video-arcade.ui |  2 +-
 src/gva-play-back.c        |  2 +
 src/gva-ui.c               | 50 +++++++++++++++++++++++-
 src/gva-ui.h               |  1 +
 src/gva-xmame.c            | 96 ++++++++++++++++++++++++++++++++++++++++++++--
 5 files changed, 145 insertions(+), 6 deletions(-)

commit eb3e4e21337095647fa767c993537b9a8fa65140
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Wed May 9 12:26:45 2007 +0000

    - Support adding time_t to a GtkTreeModel portably.
    - Support sorting and deletion in Recorded Games window.
    - No need to use GtkTreeModelSort (thank goodness!).

 src/Makefile.am      |   2 +
 src/gva-favorites.c  |   4 +-
 src/gva-game-db.c    |  20 ++--
 src/gva-game-store.c |  50 ++++++++--
 src/gva-game-store.h |   4 +-
 src/gva-main.c       |  27 ++---
 src/gva-play-back.c  | 276 +++++++++++++++++++++++++++++++++++----------------
 src/gva-play-back.h  |   2 +-
 src/gva-time.c       |  32 ++++++
 src/gva-time.h       |  23 +++++
 src/gva-ui.c         |  12 +--
 src/gva-util.c       |   2 +-
 src/main.c           |   8 +-
 13 files changed, 314 insertions(+), 148 deletions(-)

commit 8b4f6c89355e5fbfc36fd826e648770a6aff8103
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon May 7 11:08:02 2007 +0000

    - Merge gva-actions.[ch] into gva-ui.[ch].

 src/Makefile.am   |   2 -
 src/gva-actions.c | 232 ----------------------------------------------------
 src/gva-actions.h |  24 ------
 src/gva-main.c    |   2 +-
 src/gva-ui.c      | 241 +++++++++++++++++++++++++++++++++++++++++++++++++++---
 src/gva-ui.h      |  18 +++-
 6 files changed, 246 insertions(+), 273 deletions(-)

commit 409e506284df9cb09f0132732aaee32e9d28afb9
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon May 7 05:43:43 2007 +0000

    - Port UI to Glade 3.
    - Add favorites and a play back window.

 config.h.in                     |   3 +
 configure.ac                    |   1 +
 data/gnome-video-arcade.glade   | 639 ++++++++++++++++++----------------------
 data/gnome-video-arcade.schemas |  17 +-
 data/gnome-video-arcade.ui      |   9 +-
 src/Makefile.am                 |  14 +-
 src/gva-actions.c               |  60 +++-
 src/gva-actions.h               |  11 +
 src/gva-cell-renderer-pixbuf.c  |  90 ++++++
 src/gva-cell-renderer-pixbuf.h  |  48 +++
 src/gva-favorites.c             |  98 ++++++
 src/gva-favorites.h             |  14 +
 src/gva-game-db.c               |  96 ++++++
 src/gva-game-db.h               |  14 +
 src/gva-game-store.c            | 105 +------
 src/gva-game-store.h            |  10 +-
 src/gva-main.c                  | 335 +++++++++++++++++++++
 src/gva-main.h                  |  15 +
 src/gva-play-back.c             | 174 +++++++++++
 src/gva-play-back.h             |  12 +
 src/gva-tree-view.c             | 123 --------
 src/gva-tree-view.h             |  14 -
 src/gva-ui.c                    | 156 ++--------
 src/gva-ui.h                    |  25 +-
 src/gva-xmame.c                 |  78 ++++-
 src/gva-xmame.h                 |   5 +-
 src/main.c                      |  13 +-
 27 files changed, 1429 insertions(+), 750 deletions(-)

commit 6daf1823c9b506dac3f128847fc481058869670a
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue May 1 20:17:55 2007 +0000

    - Fix a typo.

 src/gva-game-store.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 5a84b1b68be8bd5dfb5959f46ffa6884ed7b03da
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue May 1 20:17:17 2007 +0000

    - Remove tab characters.

 src/gva-game-store.c | 13 ++++++++++---
 src/gva-game-store.h |  1 +
 src/gva-xmame.c      | 10 +++++-----
 3 files changed, 16 insertions(+), 8 deletions(-)

commit 446a9055daa7cbea075d0051e1f3ec0d89e10d2c
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue May 1 19:33:30 2007 +0000

    - Design the "Recorded Games" dialog.

 data/gnome-video-arcade.glade | 159 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 159 insertions(+)

commit b53e348da8bc29c1e944e51a9f6dd2ca46e337a6
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue May 1 18:46:41 2007 +0000

    - Delete autotool-generated files.
    - Abort gracefully when xmame doesn't exist.

 Makefile.in       |  662 ----
 aclocal.m4        | 1718 ----------
 config.guess      | 1516 ---------
 config.sub        | 1622 ----------
 configure         | 8935 -----------------------------------------------------
 data/Makefile.in  |  448 ---
 depcomp           |  530 ----
 install-sh        |  323 --
 intltool-merge.in | 1403 ---------
 missing           |  360 ---
 mkinstalldirs     |  158 -
 src/Makefile.in   |  501 ---
 src/gva-xmame.c   |   10 +-
 13 files changed, 8 insertions(+), 18178 deletions(-)

commit ec048b4fc3e6fb6a413072d34b68e23b51975687
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue May 1 17:58:37 2007 +0000

    Initial repository layout

 ABOUT-NLS                          |    1 +
 AUTHORS                            |    0
 COPYING                            |  340 ++
 ChangeLog                          |    3 +
 INSTALL                            |  236 +
 Makefile.am                        |   15 +
 Makefile.in                        |  662 +++
 NEWS                               |    0
 README                             |    0
 aclocal.m4                         | 1718 +++++++
 autogen.sh                         |   22 +
 config.guess                       | 1516 ++++++
 config.h.in                        |   73 +
 config.rpath                       |    1 +
 config.sub                         | 1622 +++++++
 configure                          | 8935 ++++++++++++++++++++++++++++++++++++
 configure.ac                       |   48 +
 data/Makefile.am                   |   30 +
 data/Makefile.in                   |  448 ++
 data/gnome-video-arcade.desktop.in |   12 +
 data/gnome-video-arcade.glade      |  196 +
 data/gnome-video-arcade.gladep     |    9 +
 data/gnome-video-arcade.schemas    |   15 +
 data/gnome-video-arcade.ui         |   25 +
 depcomp                            |  530 +++
 install-sh                         |  323 ++
 intltool-extract.in                |  861 ++++
 intltool-merge.in                  | 1403 ++++++
 intltool-update.in                 | 1098 +++++
 missing                            |  360 ++
 mkinstalldirs                      |  158 +
 po/ChangeLog                       |    0
 po/Makevars                        |   41 +
 po/POTFILES.in                     |    4 +
 po/Rules-quot                      |    1 +
 po/boldquot.sed                    |    1 +
 po/en@boldquot.header              |    1 +
 po/en@quot.header                  |    1 +
 po/insert-header.sin               |    1 +
 po/quot.sed                        |    1 +
 po/remove-potcdate.sin             |    1 +
 src/Makefile.am                    |   31 +
 src/Makefile.in                    |  501 ++
 src/gva-actions.c                  |  184 +
 src/gva-actions.h                  |   13 +
 src/gva-common.h                   |   16 +
 src/gva-game-store.c               |  165 +
 src/gva-game-store.h               |   56 +
 src/gva-tree-view.c                |  123 +
 src/gva-tree-view.h                |   14 +
 src/gva-ui.c                       |  168 +
 src/gva-ui.h                       |   15 +
 src/gva-util.c                     |   81 +
 src/gva-util.h                     |   13 +
 src/gva-xmame.c                    |  306 ++
 src/gva-xmame.h                    |   36 +
 src/main.c                         |   63 +
 57 files changed, 22497 insertions(+)

commit 0d6d7da539513cf35ae236d4a502599f267b365d
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sun Jun 25 08:58:02 2006 +0000

    2006-06-25  Matthew F. Barnes  <matthew@barnes.net>
    
    	* Merge updates to PCL 0.0.24
    
    	* pcl-compiler.c: (compiler_cut)
    	Pass depth value from cut node to PCL_OPCODE_STORE_CUT arg.
    
    	* pcl-eval.c: (pcl_eval_frame)
    	PCL_OPCODE_STORE_CUT: Set the cut flag on the appropriate frame.
    
    	* pcl-eval.c: (pcl_eval_code_ex)
    	Fix logic for populating cell variable slots.
    
    	* pcl-opcode.h:
    	PCL_OPCODE_STORE_CUT now takes an argument.
    
    	* pcl-parser.y: (normalize_conjunction)
    	Tag cut nodes at depth 2 for post-processing.
    
    	* pcl-parser.y: (normalize_cut)
    	New function normalizes tagged cut nodes.
    
    	* pcl-string.c: (string_method_join)
    	Refactor logic and handle iterator arguments properly.

 ChangeLog                  |   25 +
 aclocal.m4                 |   19 +-
 configure                  |  158 +-
 configure.ac               |    2 +-
 docs/reference/version.xml |    2 +-
 src/pcl-compiler.c         |   10 +-
 src/pcl-eval.c             |   28 +-
 src/pcl-opcode.h           |    6 +-
 src/pcl-parser.c           | 6400 +++++++++++++++++++++++++-------------------
 src/pcl-parser.h           |  274 +-
 src/pcl-parser.y           |   89 +-
 src/pcl-string.c           |   65 +-
 12 files changed, 4119 insertions(+), 2959 deletions(-)

commit ba01b3478f74ef797694edd028d4ad89e597586f
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Sat Apr 29 22:05:54 2006 +0000

    2006-04-25  Matthew F. Barnes  <matthew@barnes.net>
    
    	* src/pcl-cell.h:
    	Add a PCL_CELL_GET() fast-access macro.
    
    	* src/pcl-frame.c: (names_to_dict, dict_to_names)
    	Tweak logic to match Python.
    	Fix reference leak (use PCL_CELL_GET, not pcl_cell_get).
    
    	* src/pcl-frame.c: (pcl_frame_block_setup, pcl_frame_block_pop)
    	Remove superfluous function call; embed logic directly.
    
    	* src/pcl-frame.c: (pcl_frame_fast_to_locals, pcl_frame_locals_to_fast)
    	Remove superfluous function call; embed logic directly.

 ChangeLog | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

commit 54b395f84ff5e200a12e82575d390dda79f5bd1d
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Apr 25 22:35:22 2006 +0000

    2006-04-25  Matthew F. Barnes  <matthew@barnes.net>
    
    	* src/pcl-cell.h:
    	Add a PCL_CELL_GET() fast-access macro.
    
    	* src/pcl-frame.c: (names_to_dict, dict_to_names)
    	Tweak logic to match Python.
    	Fix reference leak (use PCL_CELL_GET, not pcl_cell_get).
    
    	* src/pcl-frame.c: (pcl_frame_block_setup, pcl_frame_block_pop)
    	Remove superfluous function call; embed logic directly.
    
    	* src/pcl-frame.c: (pcl_frame_fast_to_locals, pcl_frame_locals_to_fast)
    	Remove superfluous function call; embed logic directly.

 src/pcl-cell.h  |   4 +
 src/pcl-frame.c | 237 +++++++++++++++++++++++++-------------------------------
 2 files changed, 110 insertions(+), 131 deletions(-)

commit 7996b9d9af57d74f9b25fbc43a075a28c2c1248f
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Tue Apr 25 13:04:49 2006 +0000

    2006-04-25  Matthew F. Barnes  <matthew@barnes.net>
    
    	* src/pcl-compiler.c:
    	Change PCL_OPCODE_xxx_NAME to PCL_OPCODE_xxx_LOCAL,
    		where xxx is one of { LOAD, STORE, DELETE }.
    
    	* src/pcl-eval.c: (pcl_eval_frame)
    	Define IS_DICT() macro (uses G_OBJECT_TYPE()).
    	Change PCL_OPCODE_xxx_NAME to PCL_OPCODE_xxx_LOCAL,
    		where xxx is one of { LOAD, STORE, DELETE }.
    	Rearrange switch cases to match new opcode sequence.
    	PCL_OPCODE_LIST_APPEND: Better error handling.
    	PCL_OPCODE_LOAD_LOCAL: More efficient logic.
    	PCL_OPCODE_STORE_LOCAL: Better error handling.
    	PCL_OPCODE_DELETE_LOCAL: Better error handling.
    	PCL_OPCODE_LOAD_GLOBAL: More efficient logic.
    	PCL_OPCODE_DELETE_GLOBAL: Better error handling.
    	PCL_OPCODE_LOAD_DEREF: Cosmetic changes.
    
    	* src/pcl-opcode.h:
    	Rename PCL_OPCODE_xxx_NAME to PCL_OPCODE_xxx_LOCAL,
    		where xxx is one of { LOAD, STORE, DELETE }.
    	Resequence opcode range 0x90 - 0x9F.
    
    	* src/pcl-optimizer.c: (pcl_optimize)
    	Change PCL_OPCODE_LOAD_NAME to PCL_OPCODE_LOAD_LOCAL.

 ChangeLog           |  27 ++++++++
 src/pcl-compiler.c  |  10 +--
 src/pcl-eval.c      | 175 +++++++++++++++++++++++++++++++++++-----------------
 src/pcl-opcode.h    |  18 +++---
 src/pcl-optimizer.c |   4 +-
 5 files changed, 163 insertions(+), 71 deletions(-)

commit 1b897409003d30e616b224cb42750bf93cc75c79
Author: Matthew Barnes <mbarnes@redhat.com>
Date:   Mon Apr 24 18:03:57 2006 +0000

    Initial repository layout

 AUTHORS                                          |     2 +
 COPYING                                          |   340 +
 ChangeLog                                        |  8355 ++++++++
 HACKING                                          |   250 +
 INSTALL                                          |   236 +
 Makefile.am                                      |    14 +
 Makefile.in                                      |   733 +
 NEWS                                             |     0
 README                                           |    39 +
 aclocal.m4                                       |  7500 +++++++
 config.guess                                     |  1463 ++
 config.h.in                                      |   104 +
 config.sub                                       |  1579 ++
 configure                                        | 22679 +++++++++++++++++++++
 configure.ac                                     |   228 +
 depcomp                                          |   530 +
 docs/Makefile.am                                 |     3 +
 docs/Makefile.in                                 |   497 +
 docs/reference/Makefile.am                       |    84 +
 docs/reference/Makefile.in                       |   569 +
 docs/reference/html/home.png                     |   Bin 0 -> 654 bytes
 docs/reference/html/index.html                   |     3 +
 docs/reference/html/ix01.html                    |     2 +
 docs/reference/html/left.png                     |   Bin 0 -> 459 bytes
 docs/reference/html/pcl.devhelp                  |    13 +
 docs/reference/html/pt01.html                    |     2 +
 docs/reference/html/pt02.html                    |     2 +
 docs/reference/html/pt03.html                    |     2 +
 docs/reference/html/pt04.html                    |     2 +
 docs/reference/html/pt05.html                    |     2 +
 docs/reference/html/pt06.html                    |     2 +
 docs/reference/html/right.png                    |   Bin 0 -> 472 bytes
 docs/reference/html/style.css                    |    66 +
 docs/reference/html/up.png                       |   Bin 0 -> 406 bytes
 docs/reference/pcl-docs.sgml                     |   112 +
 docs/reference/pcl-overrides.txt                 |     0
 docs/reference/pcl-sections.txt                  |  1439 ++
 docs/reference/pcl.types                         |    61 +
 docs/reference/tmpl/glib-ext.sgml                |    53 +
 docs/reference/tmpl/pcl-arg.sgml                 |    90 +
 docs/reference/tmpl/pcl-attr-getter.sgml         |    33 +
 docs/reference/tmpl/pcl-base-set.sgml            |    25 +
 docs/reference/tmpl/pcl-bool.sgml                |    72 +
 docs/reference/tmpl/pcl-callable-iterator.sgml   |    43 +
 docs/reference/tmpl/pcl-callable.sgml            |    88 +
 docs/reference/tmpl/pcl-cell.sgml                |    61 +
 docs/reference/tmpl/pcl-class-method.sgml        |    33 +
 docs/reference/tmpl/pcl-code.sgml                |    86 +
 docs/reference/tmpl/pcl-comparable.sgml          |    53 +
 docs/reference/tmpl/pcl-compiler.sgml            |    36 +
 docs/reference/tmpl/pcl-complex.sgml             |   180 +
 docs/reference/tmpl/pcl-container.sgml           |    46 +
 docs/reference/tmpl/pcl-descriptor.sgml          |    33 +
 docs/reference/tmpl/pcl-dict-item-iterator.sgml  |    42 +
 docs/reference/tmpl/pcl-dict-iterator.sgml       |    25 +
 docs/reference/tmpl/pcl-dict-key-iterator.sgml   |    42 +
 docs/reference/tmpl/pcl-dict-proxy.sgml          |    42 +
 docs/reference/tmpl/pcl-dict-value-iterator.sgml |    42 +
 docs/reference/tmpl/pcl-dict.sgml                |   144 +
 docs/reference/tmpl/pcl-ellipsis.sgml            |    48 +
 docs/reference/tmpl/pcl-enumerate.sgml           |    33 +
 docs/reference/tmpl/pcl-error.sgml               |   211 +
 docs/reference/tmpl/pcl-eval.sgml                |   205 +
 docs/reference/tmpl/pcl-exception.sgml           |   234 +
 docs/reference/tmpl/pcl-factory.sgml             |    46 +
 docs/reference/tmpl/pcl-file.sgml                |   157 +
 docs/reference/tmpl/pcl-float.sgml               |    69 +
 docs/reference/tmpl/pcl-frame.sgml               |    91 +
 docs/reference/tmpl/pcl-free.sgml                |    48 +
 docs/reference/tmpl/pcl-frozen-set.sgml          |    42 +
 docs/reference/tmpl/pcl-function.sgml            |   156 +
 docs/reference/tmpl/pcl-generator.sgml           |    42 +
 docs/reference/tmpl/pcl-getset-descriptor.sgml   |    72 +
 docs/reference/tmpl/pcl-hashable.sgml            |    73 +
 docs/reference/tmpl/pcl-import.sgml              |   141 +
 docs/reference/tmpl/pcl-instance-method.sgml     |    68 +
 docs/reference/tmpl/pcl-int.sgml                 |    70 +
 docs/reference/tmpl/pcl-item-getter.sgml         |    33 +
 docs/reference/tmpl/pcl-iterable.sgml            |    72 +
 docs/reference/tmpl/pcl-iterator.sgml            |    43 +
 docs/reference/tmpl/pcl-list.sgml                |   177 +
 docs/reference/tmpl/pcl-long.sgml                |    42 +
 docs/reference/tmpl/pcl-main.sgml                |    29 +
 docs/reference/tmpl/pcl-mapping.sgml             |   147 +
 docs/reference/tmpl/pcl-measurable.sgml          |    51 +
 docs/reference/tmpl/pcl-member-descr.sgml        |    33 +
 docs/reference/tmpl/pcl-member-descriptor.sgml   |    43 +
 docs/reference/tmpl/pcl-member.sgml              |    58 +
 docs/reference/tmpl/pcl-method-descr.sgml        |    33 +
 docs/reference/tmpl/pcl-method-descriptor.sgml   |    43 +
 docs/reference/tmpl/pcl-method.sgml              |    98 +
 docs/reference/tmpl/pcl-mod-gc.sgml              |    65 +
 docs/reference/tmpl/pcl-mod-sys.sgml             |    73 +
 docs/reference/tmpl/pcl-module.sgml              |   138 +
 docs/reference/tmpl/pcl-none.sgml                |    48 +
 docs/reference/tmpl/pcl-not-implemented.sgml     |    48 +
 docs/reference/tmpl/pcl-number.sgml              |   410 +
 docs/reference/tmpl/pcl-object.sgml              |   462 +
 docs/reference/tmpl/pcl-property.sgml            |    33 +
 docs/reference/tmpl/pcl-range.sgml               |    33 +
 docs/reference/tmpl/pcl-reversed.sgml            |    33 +
 docs/reference/tmpl/pcl-rich-comparable.sgml     |   151 +
 docs/reference/tmpl/pcl-run.sgml                 |   256 +
 docs/reference/tmpl/pcl-sequence-iterator.sgml   |    42 +
 docs/reference/tmpl/pcl-sequence.sgml            |   126 +
 docs/reference/tmpl/pcl-set.sgml                 |    42 +
 docs/reference/tmpl/pcl-slice.sgml               |    58 +
 docs/reference/tmpl/pcl-state.sgml               |   152 +
 docs/reference/tmpl/pcl-static-method.sgml       |    33 +
 docs/reference/tmpl/pcl-string.sgml              |   162 +
 docs/reference/tmpl/pcl-subscriptable.sgml       |    64 +
 docs/reference/tmpl/pcl-super.sgml               |    33 +
 docs/reference/tmpl/pcl-table.sgml               |    43 +
 docs/reference/tmpl/pcl-tablerecord.sgml         |    53 +
 docs/reference/tmpl/pcl-traceback.sgml           |    52 +
 docs/reference/tmpl/pcl-tuple.sgml               |   111 +
 docs/reference/tmpl/pcl-type.sgml                |    71 +
 docs/reference/tmpl/pcl-unused.sgml              |  1192 ++
 docs/reference/tmpl/pcl-util.sgml                |   106 +
 docs/reference/tmpl/pcl-weak-ref.sgml            |    59 +
 docs/reference/tmpl/pcl-zip.sgml                 |    33 +
 docs/reference/tmpl/pcl.sgml                     |   184 +
 docs/reference/version.xml                       |     1 +
 docs/reference/version.xml.in                    |     1 +
 docs/reference/xml/glib-ext.xml                  |   106 +
 docs/reference/xml/pcl-arg.xml                   |   229 +
 docs/reference/xml/pcl-attr-getter.xml           |    82 +
 docs/reference/xml/pcl-base-set.xml              |    71 +
 docs/reference/xml/pcl-bool.xml                  |   155 +
 docs/reference/xml/pcl-callable-iterator.xml     |   104 +
 docs/reference/xml/pcl-callable.xml              |   210 +
 docs/reference/xml/pcl-cell.xml                  |   131 +
 docs/reference/xml/pcl-class-method.xml          |    85 +
 docs/reference/xml/pcl-code.xml                  |   258 +
 docs/reference/xml/pcl-comparable.xml            |   125 +
 docs/reference/xml/pcl-complex.xml               |   353 +
 docs/reference/xml/pcl-container.xml             |   134 +
 docs/reference/xml/pcl-descriptor.xml            |    90 +
 docs/reference/xml/pcl-dict-item-iterator.xml    |   100 +
 docs/reference/xml/pcl-dict-iterator.xml         |    73 +
 docs/reference/xml/pcl-dict-key-iterator.xml     |   100 +
 docs/reference/xml/pcl-dict-proxy.xml            |   103 +
 docs/reference/xml/pcl-dict-value-iterator.xml   |   100 +
 docs/reference/xml/pcl-dict.xml                  |   314 +
 docs/reference/xml/pcl-ellipsis.xml              |   104 +
 docs/reference/xml/pcl-enumerate.xml             |    83 +
 docs/reference/xml/pcl-error.xml                 |   360 +
 docs/reference/xml/pcl-eval.xml                  |   408 +
 docs/reference/xml/pcl-exception.xml             |   393 +
 docs/reference/xml/pcl-factory.xml               |    91 +
 docs/reference/xml/pcl-file.xml                  |   343 +
 docs/reference/xml/pcl-float.xml                 |   152 +
 docs/reference/xml/pcl-frame.xml                 |   197 +
 docs/reference/xml/pcl-free.xml                  |   104 +
 docs/reference/xml/pcl-frozen-set.xml            |   105 +
 docs/reference/xml/pcl-function.xml              |   294 +
 docs/reference/xml/pcl-generator.xml             |    97 +
 docs/reference/xml/pcl-getset-descriptor.xml     |   139 +
 docs/reference/xml/pcl-hashable.xml              |   144 +
 docs/reference/xml/pcl-import.xml                |   253 +
 docs/reference/xml/pcl-instance-method.xml       |   148 +
 docs/reference/xml/pcl-int.xml                   |   157 +
 docs/reference/xml/pcl-item-getter.xml           |    82 +
 docs/reference/xml/pcl-iterable.xml              |   163 +
 docs/reference/xml/pcl-iterator.xml              |   113 +
 docs/reference/xml/pcl-list.xml                  |   363 +
 docs/reference/xml/pcl-long.xml                  |    96 +
 docs/reference/xml/pcl-main.xml                  |    70 +
 docs/reference/xml/pcl-mapping.xml               |   280 +
 docs/reference/xml/pcl-measurable.xml            |   122 +
 docs/reference/xml/pcl-member-descr.xml          |    84 +
 docs/reference/xml/pcl-member-descriptor.xml     |    84 +
 docs/reference/xml/pcl-member.xml                |   128 +
 docs/reference/xml/pcl-method-descr.xml          |    84 +
 docs/reference/xml/pcl-method-descriptor.xml     |    91 +
 docs/reference/xml/pcl-method.xml                |   219 +
 docs/reference/xml/pcl-mod-gc.xml                |   118 +
 docs/reference/xml/pcl-mod-sys.xml               |   152 +
 docs/reference/xml/pcl-module.xml                |   252 +
 docs/reference/xml/pcl-none.xml                  |   104 +
 docs/reference/xml/pcl-not-implemented.xml       |   109 +
 docs/reference/xml/pcl-number.xml                |   811 +
 docs/reference/xml/pcl-object.xml                |   935 +
 docs/reference/xml/pcl-property.xml              |    83 +
 docs/reference/xml/pcl-range.xml                 |    83 +
 docs/reference/xml/pcl-reversed.xml              |    83 +
 docs/reference/xml/pcl-rich-comparable.xml       |   279 +
 docs/reference/xml/pcl-run.xml                   |   608 +
 docs/reference/xml/pcl-sequence-iterator.xml     |    99 +
 docs/reference/xml/pcl-sequence.xml              |   267 +
 docs/reference/xml/pcl-set.xml                   |   105 +
 docs/reference/xml/pcl-slice.xml                 |   147 +
 docs/reference/xml/pcl-state.xml                 |   261 +
 docs/reference/xml/pcl-static-method.xml         |    85 +
 docs/reference/xml/pcl-string.xml                |   328 +
 docs/reference/xml/pcl-subscriptable.xml         |   154 +
 docs/reference/xml/pcl-super.xml                 |    83 +
 docs/reference/xml/pcl-table.xml                 |   102 +
 docs/reference/xml/pcl-tablerecord.xml           |   121 +
 docs/reference/xml/pcl-traceback.xml             |   116 +
 docs/reference/xml/pcl-tuple.xml                 |   242 +
 docs/reference/xml/pcl-type.xml                  |   155 +
 docs/reference/xml/pcl-util.xml                  |   196 +
 docs/reference/xml/pcl-weak-ref.xml              |   127 +
 docs/reference/xml/pcl-zip.xml                   |    83 +
 docs/reference/xml/pcl.xml                       |   301 +
 gtk-doc.make                                     |   153 +
 install-sh                                       |   323 +
 ltmain.sh                                        |  6863 +++++++
 missing                                          |   360 +
 mkinstalldirs                                    |   158 +
 pcl.1                                            |    43 +
 pcl.pc.in                                        |    12 +
 src/.gdbinit                                     |    34 +
 src/Makefile.am                                  |   199 +
 src/Makefile.in                                  |   885 +
 src/glib-ext.c                                   |    76 +
 src/glib-ext.h                                   |    36 +
 src/graph.pcl                                    |    54 +
 src/main.c                                       |     7 +
 src/pcl-arg.c                                    |   958 +
 src/pcl-arg.h                                    |    53 +
 src/pcl-attr-getter.c                            |   150 +
 src/pcl-attr-getter.h                            |    64 +
 src/pcl-bool.c                                   |   255 +
 src/pcl-bool.h                                   |    69 +
 src/pcl-callable-iterator.c                      |   179 +
 src/pcl-callable-iterator.h                      |    67 +
 src/pcl-cell.c                                   |   169 +
 src/pcl-cell.h                                   |    67 +
 src/pcl-class-method.c                           |   183 +
 src/pcl-class-method.h                           |    64 +
 src/pcl-code.c                                   |   353 +
 src/pcl-code.h                                   |   128 +
 src/pcl-compiler.c                               |  3419 ++++
 src/pcl-compiler.h                               |    35 +
 src/pcl-complex.c                                |   934 +
 src/pcl-complex.h                                |    99 +
 src/pcl-config.h                                 |    55 +
 src/pcl-container.c                              |   107 +
 src/pcl-container.h                              |    74 +
 src/pcl-descriptor.c                             |   104 +
 src/pcl-descriptor.h                             |    73 +
 src/pcl-dict-proxy.c                             |   204 +
 src/pcl-dict-proxy.h                             |    65 +
 src/pcl-dict.c                                   |  1885 ++
 src/pcl-dict.h                                   |   297 +
 src/pcl-ellipsis.c                               |   112 +
 src/pcl-ellipsis.h                               |    66 +
 src/pcl-enumerate.c                              |   186 +
 src/pcl-enumerate.h                              |    65 +
 src/pcl-error.c                                  |   393 +
 src/pcl-error.h                                  |    70 +
 src/pcl-eval.c                                   |  3375 +++
 src/pcl-eval.h                                   |    76 +
 src/pcl-exception.c                              |   139 +
 src/pcl-exception.h                              |    90 +
 src/pcl-factory.c                                |   102 +
 src/pcl-factory.h                                |    38 +
 src/pcl-file.c                                   |  1648 ++
 src/pcl-file.h                                   |   105 +
 src/pcl-float.c                                  |   590 +
 src/pcl-float.h                                  |    70 +
 src/pcl-frame.c                                  |   521 +
 src/pcl-frame.h                                  |   110 +
 src/pcl-free.c                                   |   112 +
 src/pcl-free.h                                   |    66 +
 src/pcl-function.c                               |   466 +
 src/pcl-function.h                               |    97 +
 src/pcl-generator.c                              |   179 +
 src/pcl-generator.h                              |    67 +
 src/pcl-getset-descriptor.c                      |   171 +
 src/pcl-getset-descriptor.h                      |    79 +
 src/pcl-import.c                                 |  1414 ++
 src/pcl-import.h                                 |    73 +
 src/pcl-instance-method.c                        |   497 +
 src/pcl-instance-method.h                        |    77 +
 src/pcl-int.c                                    |   829 +
 src/pcl-int.h                                    |    72 +
 src/pcl-item-getter.c                            |   150 +
 src/pcl-item-getter.h                            |    64 +
 src/pcl-iterator.c                               |   182 +
 src/pcl-iterator.h                               |    67 +
 src/pcl-lexer.c                                  |  3087 +++
 src/pcl-lexer.l                                  |   840 +
 src/pcl-list.c                                   |  1467 ++
 src/pcl-list.h                                   |    95 +
 src/pcl-long.c                                   |   143 +
 src/pcl-long.h                                   |    64 +
 src/pcl-main.c                                   |   140 +
 src/pcl-main.h                                   |    30 +
 src/pcl-mapping.c                                |   475 +
 src/pcl-mapping.h                                |    70 +
 src/pcl-member-descriptor.c                      |   153 +
 src/pcl-member-descriptor.h                      |    65 +
 src/pcl-member.c                                 |   187 +
 src/pcl-member.h                                 |    59 +
 src/pcl-method-descriptor.c                      |   246 +
 src/pcl-method-descriptor.h                      |    65 +
 src/pcl-method.c                                 |   299 +
 src/pcl-method.h                                 |   116 +
 src/pcl-mod-builtin.c                            |  1069 +
 src/pcl-mod-exceptions.c                         |   143 +
 src/pcl-mod-gc.c                                 |  1010 +
 src/pcl-mod-gc.h                                 |    52 +
 src/pcl-mod-math.c                               |   240 +
 src/pcl-mod-operator.c                           |   626 +
 src/pcl-mod-signal.c                             |   461 +
 src/pcl-mod-sys.c                                |   455 +
 src/pcl-mod-sys.h                                |    38 +
 src/pcl-module.c                                 |   384 +
 src/pcl-module.h                                 |    88 +
 src/pcl-mro.c                                    |   344 +
 src/pcl-node.c                                   |   161 +
 src/pcl-node.h                                   |   122 +
 src/pcl-none.c                                   |   112 +
 src/pcl-none.h                                   |    66 +
 src/pcl-not-implemented.c                        |   115 +
 src/pcl-not-implemented.h                        |    66 +
 src/pcl-number.c                                 |  1493 ++
 src/pcl-number.h                                 |   177 +
 src/pcl-object.c                                 |  1837 ++
 src/pcl-object.h                                 |   243 +
 src/pcl-opcode.h                                 |   149 +
 src/pcl-optimizer.c                              |   641 +
 src/pcl-parse-info.c                             |   104 +
 src/pcl-parse-info.h                             |    41 +
 src/pcl-parser.c                                 |  4515 ++++
 src/pcl-parser.h                                 |    97 +
 src/pcl-parser.y                                 |  2787 +++
 src/pcl-property.c                               |   272 +
 src/pcl-property.h                               |    67 +
 src/pcl-range.c                                  |   187 +
 src/pcl-range.h                                  |    73 +
 src/pcl-reversed.c                               |   200 +
 src/pcl-reversed.h                               |    65 +
 src/pcl-run.c                                    |   338 +
 src/pcl-run.h                                    |   102 +
 src/pcl-scope.c                                  |   201 +
 src/pcl-scope.h                                  |   134 +
 src/pcl-sequence-iterator.c                      |   183 +
 src/pcl-sequence-iterator.h                      |    66 +
 src/pcl-sequence.c                               |   324 +
 src/pcl-sequence.h                               |    77 +
 src/pcl-set.c                                    |  1395 ++
 src/pcl-set.h                                    |   136 +
 src/pcl-slice.c                                  |   340 +
 src/pcl-slice.h                                  |    75 +
 src/pcl-state.c                                  |   163 +
 src/pcl-state.h                                  |    99 +
 src/pcl-static-method.c                          |   169 +
 src/pcl-static-method.h                          |    64 +
 src/pcl-string.c                                 |  2420 +++
 src/pcl-string.h                                 |    88 +
 src/pcl-super.c                                  |   322 +
 src/pcl-super.h                                  |    66 +
 src/pcl-symbol-table.c                           |   888 +
 src/pcl-symbol-table.h                           |    43 +
 src/pcl-table.c                                  |  1019 +
 src/pcl-table.h                                  |    71 +
 src/pcl-tablerecord.c                            |   273 +
 src/pcl-tablerecord.h                            |    70 +
 src/pcl-traceback.c                              |   243 +
 src/pcl-traceback.h                              |    71 +
 src/pcl-tuple.c                                  |   774 +
 src/pcl-tuple.h                                  |    82 +
 src/pcl-type.c                                   |  1013 +
 src/pcl-type.h                                   |    80 +
 src/pcl-util.c                                   |   514 +
 src/pcl-util.h                                   |    43 +
 src/pcl-weak-ref.c                               |   254 +
 src/pcl-weak-ref.h                               |    74 +
 src/pcl-zip.c                                    |   205 +
 src/pcl-zip.h                                    |    64 +
 src/pcl.c                                        |   274 +
 src/pcl.h                                        |   153 +
 376 files changed, 141123 insertions(+)
