commit c512d16570d8b355525a019d71ea66be27fe1d01 Author: Matthias Clasen Date: Mon Aug 19 23:31:40 2013 -0400 2.37.6 NEWS | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) commit 739874c5dad77d5a5f0e88cc45d2199d9fa4b40e Author: Matthias Clasen Date: Mon Aug 19 23:29:54 2013 -0400 Set up test environment properly To make the G_TEST_SRCDIR and G_TEST_BUILDDIR variables reach our test binaries, we have to add it to the TESTS_ENVIRONMENT variable. glib-tap.mk | 6 ++++++ 1 file changed, 6 insertions(+) commit 820406931b0fccc46fd3a4ebae0bb3a8629d9f57 Author: Matthias Clasen Date: Mon Aug 19 22:31:56 2013 -0400 Dist tap-test script Otherwise it won't be around when make distcheck is looking for it. Makefile.am | 1 + 1 file changed, 1 insertion(+) commit 49cf439ce7432203688a32c5087ce50591f90329 Author: Matthias Clasen Date: Mon Aug 19 20:00:25 2013 -0400 Fix make check The glib/tests contained some tests for gtester. Now that we're not including glib.mk anymore, we have to define GTESTER ourselves. Makefile.am | 3 ++- glib/tests/Makefile.am | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) commit 01156b122c1c57bb27b664c6b973a35418b1f86d Author: Sebastian Dröge Date: Wed Jul 31 14:11:55 2013 +0200 GSocket – Implement multicast interface selection on Windows https://bugzilla.gnome.org/show_bug.cgi?id=697185 gio/Makefile.am | 2 +- gio/gnetworking.h.in | 1 + gio/gnetworking.h.win32 | 1 + gio/gsocket.c | 59 +++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 62 insertions(+), 1 deletion(-) commit c069c51db5767ae0973e3bbbfd9f3a1d2b2320a3 Author: Dan Winship Date: Mon Aug 19 12:14:27 2013 -0400 gnetworkaddress: allow IPv6 scope ids in URIs GNetworkAddress was allowing IPv6 scope ids in g_network_address_new() / g_network_address_parse(), but not in g_network_address_parse_uri(). Fix that. Part of https://bugzilla.gnome.org/show_bug.cgi?id=669724 gio/gnetworkaddress.c | 31 +++++++++--- gio/tests/inet-address.c | 55 -------------------- gio/tests/network-address.c | 120 +++++++++++++++++++++++++++++++++++++++++++- 3 files changed, 143 insertions(+), 63 deletions(-) commit e1f92431c1bc430362d27f9bce2f14bf8176aa5b Author: Dan Winship Date: Mon Aug 19 12:09:59 2013 -0400 gnetworkaddress: fix parsing of URIs with IPv6 literal and port Addresses like "http://[::1]:8080/" were being parsed as though they did not include a port. Fix that, and add some more parsing tests. gio/gnetworkaddress.c | 3 ++ gio/tests/network-address.c | 107 +++++++++++++++++++++++--------------------- 2 files changed, 60 insertions(+), 50 deletions(-) commit 635196b1ffc5e810431b5746d52138d2c3bcb1db Author: Matthias Clasen Date: Sun Aug 18 18:13:02 2013 -0400 Expand docs for thread names Thread names may be NULL, and don't have to be unique. The docs should tell you that. glib/gthread.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) commit 3c040f8534d87782d2ffefd88dfe87cd00393271 Author: Milo Casagrande Date: Sun Aug 18 14:29:29 2013 +0200 [l10n] Updated Italian translation. po/it.po | 557 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 281 insertions(+), 276 deletions(-) commit b0e6a38d952f9c123e5966f382e77395daff2586 Author: William Jon McCann Date: Wed Jan 16 15:07:54 2013 -0500 Remove legacy icon name support https://bugzilla.gnome.org/show_bug.cgi?id=684327 gio/gcontenttype.c | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) commit 6ed46cd2a493e405623b8e46d3c1eca89cba5929 Author: Matej Urbančič Date: Sun Aug 18 01:59:54 2013 +0200 Updated Slovenian translation po/sl.po | 695 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 349 insertions(+), 346 deletions(-) commit 0e9f9867fab2e17f4723e739125d764bc40c9791 Author: Matthias Clasen Date: Sat Aug 17 15:46:00 2013 -0400 Start using TAP Convert {glib,gobject,gio}/tests to use the automake TAP driver and test harness instead of gtester. To do so, we add a glib-tap.mk that provides the same interface as glib.mk, except for the reporting and coverage testing functionality. Eventually, we may want to replace glib.mk with it. I've not yet converted the toplevel tests/ directory, since it mixes gtestutils tests with other binaries. https://bugzilla.gnome.org/show_bug.cgi?id=692125 gio/tests/Makefile.am | 3 +- glib-tap.mk | 128 ++++++++++++++++++++++++++++++++++++++++++++++ glib/tests/Makefile.am | 2 +- gobject/tests/Makefile.am | 2 +- tap-test | 5 ++ 5 files changed, 137 insertions(+), 3 deletions(-) commit 1ea340529737a0a020ac67353e24661eaf3678b1 Author: Matthias Clasen Date: Sat Aug 17 15:23:41 2013 -0400 Update the documentation for assertion macros The assertion macros that are part of gtestutils (but not g_assert) can now be made non-fatal. Update the documentation to reflect that. https://bugzilla.gnome.org/show_bug.cgi?id=692125 glib/gtestutils.c | 56 ++++++++++++++++++++++++++++++++++--------------------- 1 file changed, 35 insertions(+), 21 deletions(-) commit a6a87506877939fee54bdc7eca70d47fc7d893d4 Author: Matthias Clasen Date: Sat Aug 17 15:18:29 2013 -0400 Add a way to make assertions non-fatal When using test harnesses other than gtester (e.g. using TAP), it can be suboptimal to have the very first failed assertion abort the test suite. This commit adds a g_test_set_nonfatal_assertions() that can be called in a test binary to change the behaviour of most assert macros to just call g_test_fail() and continue. We don't change the behavior of g_assert() and g_assert_not_reached(), since these to assertion macros are older than GTest, are widely used outside of testsuites, and will cause compiler warnings if they loose their noreturn annotation. https://bugzilla.gnome.org/show_bug.cgi?id=692125 glib/gtestutils.c | 27 +++++++++++++++++++++++++++ glib/gtestutils.h | 10 ++++++---- 2 files changed, 33 insertions(+), 4 deletions(-) commit b63739e60ea03364a7a06e0c697b5c6c4690d0b6 Author: Matthias Clasen Date: Sat Feb 2 12:53:05 2013 -0500 Add g_assert_true, g_assert_false and g_assert_null These are just like g_assert(), but using a different entry point for the message, so we can repurpose them together with the other assertion macros. https://bugzilla.gnome.org/show_bug.cgi?id=692125 glib/gtestutils.c | 27 +++++++++++++++++++++++++++ glib/gtestutils.h | 15 ++++++++++++++- 2 files changed, 41 insertions(+), 1 deletion(-) commit a32c9c7e9c9500f151ccae602d92f88e43d8df45 Author: Matthias Clasen Date: Sat Feb 2 12:47:54 2013 -0500 Make g_assert and g_assert_not_reached use the same entry point These two assertion macros are commonly used outside tests, so we can't repurpose them, as we are going to do with the other assertion macros in the following commits. This change is in preparation for that. https://bugzilla.gnome.org/show_bug.cgi?id=692125 glib/gtestutils.c | 6 +++++- glib/gtestutils.h | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) commit 19aafc4ca4dba2b63d24f01d23890ff30ef9b133 Author: Matthias Clasen Date: Sat Aug 17 14:16:37 2013 -0400 Support TAP as an output format Initial support for the Test Anything Protocol for GTest output. Use the --tap option to get TAP output. More information about TAP can be found e.g. here: http://en.wikipedia.org/wiki/Test_Anything_Protocol https://bugzilla.gnome.org/show_bug.cgi?id=692125 glib/gtestutils.c | 59 +++++++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 51 insertions(+), 8 deletions(-) commit 69582bf63565c187a64daa1b9b22fc5a4d322db3 Author: Matthias Clasen Date: Sat Aug 17 14:14:20 2013 -0400 Add a function to check test status from the inside The new g_test_failed() function can be used to find out if a currently running testcase is already marked as failed. https://bugzilla.gnome.org/show_bug.cgi?id=692125 glib/gtestutils.c | 24 ++++++++++++++++++++++++ glib/gtestutils.h | 2 ++ 2 files changed, 26 insertions(+) commit 88eaefb9d5f52bedf34a359b21c62f3c2cb95f20 Author: Matthias Clasen Date: Sat Aug 17 14:11:24 2013 -0400 Add functions to mark tests as skipped or incomplete We also expand the GTestResult enumeration to include values for skipped and incomplete tests, and pass that on when logging a test result. https://bugzilla.gnome.org/show_bug.cgi?id=692125 glib/gtestutils.c | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++--- glib/gtestutils.h | 4 ++++ 2 files changed, 60 insertions(+), 3 deletions(-) commit 4e6d25f00501c0b9b3660d62409ea002ad24ca0a Author: Matthias Clasen Date: Sat Aug 17 14:04:58 2013 -0400 Add a GTestResult enumeration This enumeration will be expanded to introduce more results in the following commits. https://bugzilla.gnome.org/show_bug.cgi?id=692125 glib/gtestutils.c | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) commit 8253f98a18043cba76cc7524f752b3586e63b747 Author: Matthias Clasen Date: Sun Jan 20 03:23:38 2013 -0500 Add start/stop suite log messages These will be used in the following commits, when implementing support for TAP as an alternative test driver protocol. https://bugzilla.gnome.org/show_bug.cgi?id=692125 glib/gtester.c | 2 ++ glib/gtestutils.c | 10 ++++++++++ glib/gtestutils.h | 4 +++- glib/tests/protocol.c | 4 ++++ 4 files changed, 19 insertions(+), 1 deletion(-) commit de9cf58f6578e3c801a1b86d141502a8c147925e Author: Matthias Clasen Date: Sat Aug 17 17:25:25 2013 -0400 GApplication: Stop using deprecated api gio/gapplication.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) commit 18accd43f79bc27cb68767cfcf1e3899b5349d57 Author: Matthias Clasen Date: Sat Aug 17 17:22:05 2013 -0400 Quell a few compiler warnings glib/tests/protocol.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 5cd169810edb711964930f20b42796edce355ce5 Author: Matthias Clasen Date: Sat Aug 17 13:45:34 2013 -0400 Take out an unused line from gdatetime tests This line was apparently causing build problems on Win64, and since the only test involving the t_str variable was already commented out, lets just take this out altogether. https://bugzilla.gnome.org/show_bug.cgi?id=696970 glib/tests/gdatetime.c | 3 --- 1 file changed, 3 deletions(-) commit 409a6db3492e8d5e81f5e248e9e9abe100506ff5 Author: Stef Walter Date: Tue May 14 08:49:55 2013 +0200 Mark up warnings/critical functions for clang analyzer The clang code analyzer needs to know that functions like g_error g_critical an g_return_if_fail should be seen by the analyzer in the same way as g_assert(). That is the analyzer should think they are fatal. https://bugzilla.gnome.org/show_bug.cgi?id=700268 glib/gmacros.h | 13 +++++++++++++ glib/gmessages.h | 13 +++++++------ 2 files changed, 20 insertions(+), 6 deletions(-) commit 547df5937cc3b821498e27eb55cebc1f414ce597 Author: Dan Winship Date: Sun Feb 17 15:11:18 2013 -0500 GSocket: fix g_socket_bind() allow_reuse semantics With UDP sockets, g_socket_bind() with allow_reuse=TRUE on Linux behaved in a way that the documentation didn't suggest, and that didn't match other OSes. (Specifically, it allowed binding multiple multicast sockets to the same address.) Since this behavior is useful, and since allow_reuse didn't have any other meaning with UDP sockets, update the docs to reflect the Linux behavior, and make it do the same thing on non-Linux. https://bugzilla.gnome.org/show_bug.cgi?id=689245 gio/gsocket.c | 67 +++++++++++++++++++++++++++++++-------------- gio/tests/socket.c | 79 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 126 insertions(+), 20 deletions(-) commit 2ea4af6f019632b810ea6f7c0f0c44498cf5dddf Author: Dan Winship Date: Sun Feb 17 09:41:55 2013 -0500 GSocket: fix broadcast documentation The :broadcast property only affects sending broadcast packets, not receiving them. gio/gsocket.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) commit 37849277645d05c1e1cd9c5e585d7231f75ffa2f Author: Robert Ancell Date: Fri May 31 11:07:55 2013 +1200 Add G_SPAWN_DEFAULT to GSpawnFlags This is convenient for language bindings, and also makes invocations of g_spawn functions in C more readable. https://bugzilla.gnome.org/show_bug.cgi?id=701318 glib/gspawn.h | 2 ++ glib/tests/spawn-multithreaded.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) commit 8b3d779d1ece535680724812fddffbdc940f328c Author: Matthias Clasen Date: Sat Aug 17 12:35:33 2013 -0400 Make g_date_time_new check its arguments The documentation for this function explicitly gives valid ranges for the arguments and states that out-of-range arguments will cause NULL to be returned. Only, the code didn't check the ranges, and crashed instead. Fix that and add a testcase for invalid arguments. It turns out that the test_z testcase was providing invalid arguments and relied on g_date_time_new to return a non-NULL value anyway, so this commit fixes that testcase as well. https://bugzilla.gnome.org/show_bug.cgi?id=702674 glib/gdatetime.c | 8 ++++++++ glib/tests/gdatetime.c | 14 +++++++++++++- 2 files changed, 21 insertions(+), 1 deletion(-) commit e70250bbd5e786240fee7ad373ee16657518acf7 Author: Ryan Lortie Date: Fri Jun 7 11:41:41 2013 -0400 Export __glib_assert_msg Put __glib_assert_msg in the dynamic symbol table, but not in any public headers. This variable is _not_ part of our API but this way debuggers and automated crash report utilities will be able to access this variable, even if debug symbols are not available. https://bugzilla.gnome.org/show_bug.cgi?id=701800 glib/gtestutils.c | 1 + 1 file changed, 1 insertion(+) commit f550c0dc9dafc582d323735d9e220e441a337f9a Author: Dan Winship Date: Sat Aug 17 10:35:13 2013 -0400 update .gitignores gio/tests/.gitignore | 2 ++ gobject/tests/.gitignore | 1 + 2 files changed, 3 insertions(+) commit fd5b1939bddf4b935c7e8dea21496483d15c4ece Author: Dan Winship Date: Thu Feb 7 10:02:55 2013 -0500 build: fix dtrace-related warnings Fix the warnings when compiling and linking the probes files by calling dtrace with all the -W flags removed from CFLAGS (since dtrace generates bad C code), and with CC set to "libtool --mode=compile ..." (so that it will output a proper .lo file and libtool won't warn when linking it into the .la). https://bugzilla.gnome.org/show_bug.cgi?id=693335 glib/Makefile.am | 15 ++++++++++----- gobject/Makefile.am | 15 ++++++++++----- 2 files changed, 20 insertions(+), 10 deletions(-) commit 5415537edb383fedfc5d4edc17dcf2bd2b8a38af Author: Dan Winship Date: Sun Jun 2 19:59:09 2013 -0300 glib/tests/gdatetime: use UTC time in test_GDateTime_diff() test_GDateTime_diff() checks that the span from 2009-01-01 to 2010-01-01 is exactly 365 * G_TIME_SPAN_DAY, but it does this using local time, and so fails if you are in a timezone that is in the southern hemisphere which only did DST during one of 2008-2009 and 2009-2010 (in which case the year will end up being one hour too long or too short). Switch the diff tests to use UTC time instead; there are plenty of other local time tests already. https://bugzilla.gnome.org/show_bug.cgi?id=701529 glib/tests/gdatetime.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) commit 74a5e920767eb350979595c3bc51f126158608d9 Author: Wouter Bolsterlee Date: Sat Aug 17 14:58:12 2013 +0200 Updated Dutch translation po/nl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit a7f2765dbabf889df065e601fc072644dda625e4 Author: Daiki Ueno Date: Fri Aug 16 17:44:14 2013 +0200 codegen: Treat input file as binary Under C locale, open() in Python 3 sets the file encoding to ASCII. As expat looks at encoding="..." in XML declaration, gdbus-codegen can simply open the input file as binary and let expat decode the content. https://bugzilla.gnome.org/show_bug.cgi?id=696633 gio/gdbus-2.0/codegen/codegen_main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 1e945933d4709131730294df0f9076a4424e6e1c Author: Chun-wei Fan Date: Fri Aug 16 10:35:19 2013 +0800 config.h.win32.in: Drop unneeded item ...We no longer have the iconv cache code around. config.h.win32.in | 3 --- 1 file changed, 3 deletions(-) commit 2ab9e544778b040c26d422138bea307f69064958 Author: Chun-wei Fan Date: Fri Aug 16 10:29:41 2013 +0800 Update config.h.win32.in Make its entries match the items that are being checked by the autotools builds in config.h.in. config.h.win32.in | 66 +++++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 59 insertions(+), 7 deletions(-) commit 4cea6625cb377daa1a0088189447750427a146c3 Author: Colin Walters Date: Thu Aug 15 18:24:45 2013 -0400 giochannel: Add an out annotation for g_io_channel_read_unichar() Since it's an output variable. https://bugzilla.gnome.org/show_bug.cgi?id=704165 glib/giochannel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit a93d373812e37dbac3b749457cedf290227ef441 Author: Dan Winship Date: Thu Aug 15 11:30:59 2013 -0400 gio/tests/task: fix a race condition in test_run_in_thread() When running a task in a thread, GTask may still be internally holding a ref on the task in that thread even after the callback is called in the original thread (depending on thread scheduling). Fix the test to handle that by using a weak notify that signals a GCond, and wait for that GCond from the main thread. (And add a corresponding check to test_return_on_cancel().) https://bugzilla.gnome.org/show_bug.cgi?id=705152 gio/tests/task.c | 45 ++++++++++++++++++++++++++++++++++++++------- 1 file changed, 38 insertions(+), 7 deletions(-) commit 4b334ef8f1393c997a2d83de4ffe0976dff238c3 Author: Nick Schermer Date: Wed Aug 7 21:01:00 2013 +0200 gobject: Handle ref_count==0 in notify_by_pspec Just like g_object_notify, check for a zero ref_count in g_object_notify_by_pspec and leave if it is 0. This allows using functions in ->finalize() that possibly also notify a property change on the object. Previously, this resulted in an error from g_object_ref. https://bugzilla.gnome.org/show_bug.cgi?id=705570 gobject/gobject.c | 3 +++ gobject/tests/properties.c | 7 +++++++ 2 files changed, 10 insertions(+) commit 62f173f1f3e5da028fd11cb827a54418e1ca8ec2 Author: Theppitak Karoonboonyanan Date: Wed Aug 14 17:07:38 2013 +0700 Updated Thai translation. po/th.po | 880 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 442 insertions(+), 438 deletions(-) commit 844589b03e39ac07af3b63b234d03221ac11e766 Author: Matthias Clasen Date: Tue Aug 13 16:48:51 2013 -0400 GSimpleActionGroup: Deprecated redundant API See https://bugzilla.gnome.org/show_bug.cgi?id=705600 gio/gsimpleactiongroup.c | 8 ++++++++ gio/gsimpleactiongroup.h | 8 ++++---- 2 files changed, 12 insertions(+), 4 deletions(-) commit a5fd296cc8583de6ac10c5a6adc84751495ad7e1 Author: Cosimo Cecchi Date: Tue Aug 13 15:16:48 2013 +0200 themedicon: correctly fallback to symbolic icons When an icon is requested as symbolic, our generic fallback algorithm uses fullcolor icons when the specified icon name is not found, treating the "-symbolic" suffix as another component of the icon name. Change the algorithm to check beforehand if the icon is symbolic, remove the suffix if so, and re-add it at the end for all the generated icon names. https://bugzilla.gnome.org/show_bug.cgi?id=680926 gio/gthemedicon.c | 35 +++++++++++++++++++++++++++++------ 1 file changed, 29 insertions(+), 6 deletions(-) commit aa4b9429b43e125a05c4c1c0d7b168c13efbb2ad Author: Aurimas Černius Date: Sun Aug 11 21:01:50 2013 +0300 Updated Lithuanian translation po/lt.po | 867 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 437 insertions(+), 430 deletions(-) commit 0dcb1db7a0ec73a67b37a911c6b52b135365e37e Author: Kjartan Maraas Date: Thu Aug 8 22:14:04 2013 +0200 Updated Norwegian bokmål translation po/nb.po | 551 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 278 insertions(+), 273 deletions(-) commit 4ab30c0770f21444682a1671f017293b8631900c Author: Daniel Mustieles Date: Thu Aug 8 11:14:31 2013 +0200 Updated Spanish translation po/es.po | 80 +++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 41 insertions(+), 39 deletions(-) commit c2352409051df49a08d9dced5b69ede434e90723 Author: Ryan Lortie Date: Mon Jul 29 10:00:20 2013 -0400 g_get_tmp_dir(): Clean up envars On UNIX, we should only ever be looking at TMPDIR. On Windows, we should only ever look at TEMP. Also, clean up the documentation to better describe what is actually happening. The previous docs may have left someone confused about why this function returns "/var/tmp" on Solaris, even with no TMPDIR set. https://bugzilla.gnome.org/show_bug.cgi?id=705075 glib/gutils.c | 40 ++++++++++++++++++---------------------- 1 file changed, 18 insertions(+), 22 deletions(-) commit 05d6175ded6ce5f1f7721e2ea90792d348505d89 Author: Yaron Shahrabani Date: Sun Aug 4 10:31:19 2013 +0300 Updated Hebrew translation. po/he.po | 1720 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 846 insertions(+), 874 deletions(-) commit 66233f1d1b70a4c220b1dc98e5338e8469a82ff1 Author: Emanuele Aina Date: Sat Aug 3 11:51:00 2013 +0200 gtype: Fix typo in g_type_class_add_private() error message https://bugzilla.gnome.org/show_bug.cgi?id=705398 gobject/gtype.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 9edd65ad99194ed549a2cdac7c40898451be13ab Author: Yuri Myasoedov Date: Sun Aug 4 09:44:21 2013 +0400 Updated Russian translation po/ru.po | 847 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 433 insertions(+), 414 deletions(-) commit 29b2d3b74bf97b3f950bda666dfc208a1c34c8d7 Author: Sandeep Sheshrao Shedmake Date: Sun Aug 4 08:57:37 2013 +0530 Updated Marathi Translations po/mr.po | 624 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 312 insertions(+), 312 deletions(-) commit 13759f9ce8c691f0ac7b9c7afe9da896ec9377a3 Author: Marek Černocký Date: Sat Aug 3 20:05:34 2013 +0200 Updated Czech translation po/cs.po | 101 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 50 insertions(+), 51 deletions(-) commit 0d99699ee447745c4e1a622282542be1cbff0d3f Author: Chao-Hsiung Liao Date: Sat Aug 3 21:06:46 2013 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) po/zh_HK.po | 863 ++++++++++++++++++++++++++++++------------------------------ po/zh_TW.po | 863 ++++++++++++++++++++++++++++++------------------------------ 2 files changed, 872 insertions(+), 854 deletions(-) commit 8c170c565b700099d738ea06eab0ed8c8c1aa565 Author: Rafael Ferreira Date: Fri Aug 2 23:15:58 2013 -0300 Updated Brazilian Portuguese translation proofread by Enrico Nicoletto po/pt_BR.po | 889 ++++++++++++++++++++++++++++++------------------------------ 1 file changed, 450 insertions(+), 439 deletions(-) commit 3d15261a5c90822587e91a49074f3224b8e8cd6e Author: Fran Diéguez Date: Fri Aug 2 12:16:30 2013 +0200 Updated Galician translations po/gl.po | 533 ++++++++++++++++++++++++++++++++------------------------------- 1 file changed, 269 insertions(+), 264 deletions(-) commit 7c0d527fa63f9b84ba8bd084b742676d3d5ebb82 Author: Rico Tzschichholz Date: Thu Aug 1 20:41:50 2013 +0200 GMenuModel: Fix typo in annotation gio/gmenumodel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 5451265cf40b58678e60662bccaa92e3dcb2a8ec Author: Sweta Kothari Date: Thu Aug 1 13:46:52 2013 +0530 Updated Gujarati Translations po/gu.po | 48 +++++++++++++++++++++++++----------------------- 1 file changed, 25 insertions(+), 23 deletions(-) commit 8a1b55372857fa628eb3a1f27d63891374d13bef Author: Daniel Svensson Date: Tue Jul 30 18:20:44 2013 -0400 gdesktopappinfo: Add missing return value gio/gdesktopappinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 097ba61b33cd69b81260520ec1a891f3c0ccfb8c Author: Nilamdyuti Goswami Date: Tue Jul 30 22:40:49 2013 +0530 Assamese translation updated po/as.po | 47 +++++++++++++++++++++++++---------------------- 1 file changed, 25 insertions(+), 22 deletions(-) commit 54a76e24b3ac2d03851ac4825482f915cfcdc470 Author: Dan Winship Date: Tue Jul 30 09:12:48 2013 -0400 gsocket: fix a cut-and-pasted error message gio/gsocket.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit 0f46a48ee3f8eaa9aaf7c4b2bd3ccff5eff061e3 Author: Matthias Clasen Date: Mon Jul 29 18:07:32 2013 -0400 post-release version bump configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)