commit c21560021dd9253f243a168a450785f4793863f3 Author: Matthew Barnes 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 Date: Sun May 15 18:24:27 2011 -0400 Fix a typo. src/gva-screen-saver.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 35e340b23a91df6d75331382b7ddfe1143540ac6 Author: Matthew Barnes 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 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 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 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 Date: Thu May 12 03:02:49 2011 +0200 Updated Catalan translation. po/ca.po | 663 +++++++++++++++++++++++++++++++++----------------------------- 1 files changed, 349 insertions(+), 314 deletions(-) commit da82b588a709001ad8fec0c4f7fdff63624ceec6 Author: Jordi Mallach 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 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 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 files changed, 3 insertions(+), 19 deletions(-) commit 19dce88d36c6505880cf703a33229770ff15e71b Author: Matthew Barnes Date: Sun Apr 24 15:22:02 2011 -0400 Update GTK+ dependency description in README. README | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) commit 76999b3ffe0b511797187eb8010684ea08c12619 Author: Matthew Barnes 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 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 files changed, 5 insertions(+), 2 deletions(-) commit 148da91ca960a45ab43c0fed701c3b72f8f9a269 Author: Matthew Barnes 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 files changed, 8 insertions(+), 2 deletions(-) commit d9488ad8dc3227767270884d9961a3161bc5d67a Author: Matthew Barnes 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 Date: Sun Apr 24 09:24:50 2011 -0400 Update GtkBuilder file in Glade 3.10. data/gnome-video-arcade.builder | 708 +++++++++++++++++++++++++-------------- 1 files changed, 448 insertions(+), 260 deletions(-) commit c894ee33229808a10998e201768e579083333f03 Author: Matthew Barnes 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 Date: Sun Apr 10 20:51:52 2011 +0200 [l10n] Updated German translation po/de.po | 55 ++++++++++++++++++++++++------------------------------- 1 files changed, 24 insertions(+), 31 deletions(-) commit fe79a95a9535301c35ebcefc3a2d84678aec02aa Author: Daniel Nylander Date: Sat Apr 9 10:55:07 2011 +0200 Updated Swedish translation po/sv.po | 87 ++++++++++++++++++++++++++++++++++--------------------------- 1 files changed, 48 insertions(+), 39 deletions(-) commit 9d6756fce298a44cbb987c4d3142ddb009f06042 Author: Matthew Barnes 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 Date: Wed Mar 30 19:56:07 2011 +0200 Updated Norwegian bokmål translation po/nb.po | 657 ++++++++++++++++++++++++++++++++++++++++++-------------------- 1 files changed, 444 insertions(+), 213 deletions(-) commit 4c26d6b23fac7774668825bc573b0d7b732e6293 Author: Matthew Barnes 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 Date: Wed Mar 30 09:58:40 2011 -0400 GvaMuteButton: Remove a redundant #include. src/gva-mute-button.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) commit 7acd16b4b3aeb6c591b00ad0105a4eeb17a8ce87 Author: Andrej Žnidaršič Date: Tue Mar 29 16:16:03 2011 +0200 Updated Slovenian translation po/sl.po | 67 +++++++++++++++++++++++++++++++++++-------------------------- 1 files changed, 38 insertions(+), 29 deletions(-) commit dd8c7d3c28bb8115c9358b05c1f2279236d2180b Author: Matthew Barnes 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 files changed, 22 insertions(+), 22 deletions(-) commit 2f07386b6ed163a643cdaf18cffac81cc7e95d44 Author: Matthew Barnes 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 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 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 Date: Sat Mar 26 17:14:34 2011 -0400 Fix widget packing in Properties window. data/gnome-video-arcade.builder | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) commit d2f53d50de6114a00bb0c9237548c5c36e268fcd Author: Matthew Barnes Date: Sat Mar 26 16:23:13 2011 -0400 Fix paths in gnome-video-arcade.convert. data/gnome-video-arcade.convert | 44 +++++++++++++++++++------------------- 1 files changed, 22 insertions(+), 22 deletions(-) commit dbf0140533a3f7f3dc40d8a606f294f611a35382 Author: Marek Černocký Date: Sat Mar 26 19:23:38 2011 +0100 Updated Czech translation po/cs.po | 50 +++++++++++++++++++++++--------------------------- 1 files changed, 23 insertions(+), 27 deletions(-) commit 5f60348dea8069971af7948cdb01c748aff62cd1 Author: Daniel Mustieles Date: Mon Mar 21 19:22:12 2011 +0100 Updated Spanish translation po/es.po | 15 +++++++++++++-- 1 files changed, 13 insertions(+), 2 deletions(-) commit a7ba0a5056c5cfebb87b5fc21bc3650458b06015 Author: Jordi Mallach Date: Sat Mar 19 17:59:29 2011 +0100 Remove deprecated "Encoding" key from desktop file. data/gnome-video-arcade.desktop.in | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) commit fc659a01d7409d33c8bb3611db4b27bda0cb8101 Author: Jordi Mallach Date: Sat Mar 19 15:17:33 2011 +0100 New Catalan translation. po/LINGUAS | 1 + po/ca.po | 1109 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 1110 insertions(+), 0 deletions(-) commit baf1c913b6f8d4a2574bddd1d79b21ebb598300a Author: Jordi Mallach 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 Date: Thu Mar 17 20:27:17 2011 +0100 Updated Spanish translation po/es.po | 20 ++++++++++++++++---- 1 files changed, 16 insertions(+), 4 deletions(-) commit cf76672705aee0b03032827c2d93231e2ba447b8 Author: Daniel Mustieles Date: Mon Mar 14 22:17:18 2011 +0100 Updated Spanish translation po/es.po | 23 +++++++++++++++++++---- 1 files changed, 19 insertions(+), 4 deletions(-) commit 7506e77aaf533e94c4df6ca90c9190d3fb6ed929 Author: Daniel Nylander Date: Sun Mar 6 23:00:08 2011 +0100 Updated Swedish translation po/sv.po | 851 +++++++++++++++++++++++++++++++++++++++++++------------------- 1 files changed, 599 insertions(+), 252 deletions(-) commit 5619873703b15d8a400050a89629f25a31479c8a Author: Andrej Žnidaršič Date: Sat Mar 5 18:38:47 2011 +0100 Updated Slovenian translation po/sl.po | 287 +++++++++++++++++++++++++++++++++++++++++++++++++++----------- 1 files changed, 238 insertions(+), 49 deletions(-) commit 0478dd56cfca7abd67ee4f25032aeacee9af81ec Author: Daniel Mustieles Date: Sat Mar 5 11:39:43 2011 +0100 Updated Spanish translation po/es.po | 82 +++++++++++++++++++++++++------------------------------------ 1 files changed, 34 insertions(+), 48 deletions(-) commit aa729ac43dea2eee12ad2db589a31a11a067db78 Author: Marek Černocký Date: Sun Feb 27 23:58:28 2011 +0100 Updated Czech translation po/cs.po | 367 ++++++++++++++++++++++++++++++++++++++++++++++++++++---------- 1 files changed, 310 insertions(+), 57 deletions(-) commit 64ce8e7a5559115d29262fd5818efee1451fedd1 Author: Mario Blättermann Date: Sun Feb 27 15:51:58 2011 +0100 [l10n] Updated German translation po/de.po | 370 +++++++++++++++++++++++++++++++++++++++++++++++++++----------- 1 files changed, 306 insertions(+), 64 deletions(-) commit 4495694a3e9b7913bc1fe3f6c9fbf0b921b0497e Author: Jorge González Date: Sun Feb 27 13:32:20 2011 +0100 Updated Spanish translation po/es.po | 340 ++++++++++++++++++++++++++++++++++++++++++++++++++++---------- 1 files changed, 285 insertions(+), 55 deletions(-) commit d284d3be60d75e1519074c9bbe89a48117280d80 Author: Matthew Barnes Date: Sat Feb 26 22:02:20 2011 -0500 Hide resize grip when showing progress bar. src/gva-main.c | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) commit 2a8f8e2f3b3a77664221988af9a7f17a90b959b9 Author: Matthew Barnes 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 Date: Sat Feb 26 07:03:22 2011 -0500 Bug 643000 - Bump libwnck requirement to 2.91.6 configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 4c291ddb4dc65bb17a61efb686c0bed397498cdd Author: Matthew Barnes Date: Sat Feb 26 06:58:05 2011 -0500 Bump GTK+ requirement to 3.0. configure.ac | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) commit 54fa092b3fdad5091aee451baf709864829c4b1e Author: Matthew Barnes Date: Sat Feb 26 06:55:21 2011 -0500 gva-music-button: Remove a dead assignment. src/gva-music-button.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) commit 8c6cf0fa5587362c675a03bb7d463843ebd25eb4 Author: Daniel Mustieles Date: Mon Feb 21 21:08:45 2011 +0100 Updated Spanish translation help/es/es.po | 16 +++++++++------- 1 files changed, 9 insertions(+), 7 deletions(-) commit 35cbbe6afbccfdc51b79066c02eeebbf145ae1a4 Author: Matthew Barnes 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 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 files changed, 7 insertions(+), 8 deletions(-) commit 3f7ccf016b4a341c2ef65e231d29d5d4bd24031e Author: Matthew Barnes Date: Sun Jan 30 21:02:25 2011 -0500 Adapt main.c to gtk+-3.0. src/main.c | 35 +++++++++++++++-------------------- 1 files changed, 15 insertions(+), 20 deletions(-) commit e2abe4f375d5385ff301757180c05fb2a7e12fa0 Author: Matthew Barnes Date: Sun Jan 30 21:10:54 2011 -0500 Adapt gva-util.c to gtk+-3.0. src/gva-util.c | 11 +++++------ 1 files changed, 5 insertions(+), 6 deletions(-) commit 6e330e7a56d790369ae635bbb2fda98187b36dc5 Author: Matthew Barnes Date: Sun Jan 30 20:54:08 2011 -0500 Adapt gva-properties.c to gtk+-3.0. src/gva-properties.c | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) commit 946caafb6654d8bbae25fcce240e65c1c734d811 Author: Matthew Barnes Date: Sun Jan 30 20:51:55 2011 -0500 Adapt gva-preferences.c to gtk+-3.0. src/gva-preferences.c | 24 ++++++++++++------------ 1 files changed, 12 insertions(+), 12 deletions(-) commit 4a096cc3a860a91db93aab209afb1850e08b540f Author: Matthew Barnes 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 files changed, 1 insertions(+), 1 deletions(-) commit 61ea39f6ad0c6ae5c8ce87990f559bc34cfbd64f Author: Matthew Barnes Date: Sun Jan 30 20:48:44 2011 -0500 Adapt gva-main.c to gtk+-3.0. src/gva-main.c | 45 +++++++++++++++++++++++++-------------------- 1 files changed, 25 insertions(+), 20 deletions(-) commit bbf1f938fb4c2a0dd9b8f7b5ed275c5384f62f23 Author: Matthew Barnes Date: Sun Jan 30 20:40:30 2011 -0500 Adapt gva-columns.c to gtk+-3.0. src/gva-columns.c | 16 +++++++++++----- 1 files changed, 11 insertions(+), 5 deletions(-) commit b2c8d4ccbdfc8893784475a65f6a89a00b181e51 Author: Matthew Barnes 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 files changed, 6 insertions(+), 4 deletions(-) commit b3bf9ad8d7c76409531416953cb2b291d9edbbb9 Author: Matthew Barnes Date: Sun Jan 30 21:06:12 2011 -0500 Adapt gva-audit.c to gtk+-3.0. src/gva-audit.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) commit ef90bec645365a077761919d01731c7c463e4512 Author: Matthew Barnes 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 Date: Sun Jan 30 20:28:32 2011 -0500 Require gtk+ 3.0, glib 2.28 and unique 3.0. configure.ac | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) commit 49b766f5f1ecd393a69ccf561696cb01c3627a50 Author: Matthew Barnes 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 Date: Fri Dec 3 05:23:29 2010 +0200 Updated Romanian translation po/LINGUAS | 1 + po/ro.po | 893 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 894 insertions(+), 0 deletions(-) commit 387f568c2f77b883708990a11eb585d02b38ebfa Author: Matej Urbančič Date: Fri Oct 22 14:43:22 2010 +0200 Added sl for Slovenian translation help/Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 583a7612a851f45eecd26addadd3b4455b1c8b19 Author: Matej Urbančič Date: Fri Oct 22 14:43:14 2010 +0200 Added Slovenian translation help/sl/sl.po | 562 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 562 insertions(+), 0 deletions(-) commit bf9572f038f4ef4f038bded9681a1b297d961603 Author: Joe Hansen Date: Mon Sep 27 00:51:04 2010 +0200 Updated Danish translation po/da.po | 369 ++++++++++++++++++++++++++++++++++++-------------------------- 1 files changed, 214 insertions(+), 155 deletions(-) commit 301fbdacea9e2f88a50b3a672fb707a0e1b3290d Author: Yuri Myasoedov Date: Sun Sep 19 12:09:02 2010 +0400 Added Russian translation po/LINGUAS | 1 + po/ru.po | 886 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 887 insertions(+), 0 deletions(-) commit 7df6d08ce0ab18493e13e669a4577a7c039f3c00 Author: Jorge González Date: Thu Aug 26 18:25:56 2010 +0200 Updated Spanish translation, fixes bug #627996 po/es.po | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) commit 1c46c2a5bfbec2d1f2beff79ba085bf8cc62a686 Author: Yinghua Wang 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(+), 0 deletions(-) commit 342a1e11c4fd1dd74b184fa904f9456fbc3882d3 Author: Matej Urbančič Date: Mon Jul 19 14:44:45 2010 +0200 Updated Slovenian translation po/sl.po | 90 ++++++++++++++++++++++++++++--------------------------------- 1 files changed, 41 insertions(+), 49 deletions(-) commit 36dd9a109faf8d08ea637610b66821e63d4659a1 Author: Fran Diéguez Date: Mon Jun 21 10:42:25 2010 +0200 Added Galician translations po/gl.po | 265 ++++++++++++++++++++++++++++++++++--------------------------- 1 files changed, 148 insertions(+), 117 deletions(-) commit 551860beb9fa16a9ca38f7e92e8302635ceeceae Author: Djavan Fagundes Date: Sun Jun 13 22:12:27 2010 -0300 Updated Brazilian Portuguese translation po/pt_BR.po | 215 ++++++++++++++++++++++++++++++++++------------------------- 1 files changed, 123 insertions(+), 92 deletions(-) commit 8f1850912b5811542959ae625241912c3954daf5 Author: Claude Paroz Date: Wed Jun 9 21:15:02 2010 +0200 Updated French translation po/fr.po | 212 +++++++++++++++++++++++++++++++++++--------------------------- 1 files changed, 119 insertions(+), 93 deletions(-) commit 64bbde740b1251525e03117adc0def3cbf9d6293 Author: Matthew Barnes Date: Mon May 31 21:16:03 2010 -0400 Post-release version bump. configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 64afdada92cfec28eb89f95219865c0ec1a19aa9