commit 2989ea581f7a4a418a9d8b84475def8f0bb2af19 Author: Matthew Barnes Date: Sat Oct 13 15:58:02 2012 -0400 NEWS update for 3.6.1 release. NEWS | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) commit 245080ce8568012c5fa5b8ebe913016b6540f62f Author: Matthew Barnes Date: Sat Oct 13 15:29:11 2012 -0400 ESourceRegistryServer: File monitor should set flags on new sources. ESourceRegistryServer forgot to set WRITABLE and REMOVABLE flags on new ESources created when a GFileMonitor detects a new .source file. Consequently the new ESource could neither be modified nor removed, which causes problems for unit tests that use predefined key files. (cherry picked from commit bb0e0e0cf976c31c10dc2496177a43d9395ada0f) libebackend/e-source-registry-server.c | 8 ++++++++ 1 file changed, 8 insertions(+) commit 5a939bb75f788b24350866f224ff5c07ee0837ba Author: Kjartan Maraas Date: Fri Oct 12 00:19:39 2012 +0200 Updated Norwegian bokmål translation. po/nb.po | 472 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 236 insertions(+), 236 deletions(-) commit c79e0d88075e275919bc20fde73b0d3885ef0dd3 Author: Matthew Barnes Date: Sun Oct 7 09:09:48 2012 -0400 configure.ac: Tweak GOA-related error messages. (cherry picked from commit b7a592101d20da4af510cc78a68d7538a4e2ac5d) configure.ac | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) commit 287a2d795598b641b1aec253454e4a805c98f0e3 Author: Matthew Barnes Date: Wed Oct 10 14:04:32 2012 -0400 Drop the check for libgdata >= 0.9.1 for GOA support. We already require libgdata >= 0.10, so the check is redundant. (cherry picked from commit 21808b9bb8cb3c9f7da3311421ca9df6d2b2878e) configure.ac | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) commit 4a8712991088daae5c716e680874a7ebf929c4ef Author: Matthew Barnes Date: Wed Oct 10 10:08:15 2012 -0400 Eliminate the assertion in camel_provider_register(). camel_provider_register() should automatically set up the module and provider hash tables if needed instead of aborting, but the problem is the GOnce function that sets up these hash tables also calls camel_provider_register(). Break this cycle by moving the bulk of camel_provider_register() to a new internal function (provider_register_internal) and calling it from the GOnce function (provider_setup). The public camel_provider_register() function is then simply: g_once (&setup_once, provider_setup, NULL); provider_register_internal (provider); (cherry picked from commit e4160726f897de9f2e697f8df319f68c2f39d6f2) camel/camel-provider.c | 128 ++++++++++++++++++++++++++---------------------- 1 file changed, 70 insertions(+), 58 deletions(-) commit b90353a272d34d2f1a11424c1c84385734c7d7fc Author: Matthew Barnes Date: Wed Oct 10 08:41:28 2012 -0400 Bug 685713 - ESourceRegistry's manager thread aborts on error If the ESourceRegistry's manager thread fails to create a new GDBusObjectManagerClient during initialization, propagate the GError back to the caller of e_source_registry_new() instead of aborting the whole process with a g_error() call. (cherry picked from commit f47e935e450c132a48d6945cd553ec24b794c708) libedataserver/e-source-registry.c | 72 +++++++++++++++++++++--------------- 1 file changed, 42 insertions(+), 30 deletions(-) commit afd3b7d3ad4c08a4077a3871e3d0d0693fe56cad Author: Bastien Nocera Date: Mon Oct 8 21:06:55 2012 -0400 Bug 685725 - Handle "muser" attributes in %gconf.xml files The migration of account data from GConf to key files parses raw %gconf.xml files. The parsing code neglected to handle "muser" attributes in tags, so that when an "muser" attribute was encountered, g_markup_collect_attributes() would throw an error an cause the whole GConf migration phase to be aborted. (cherry picked from commit 3fd3ab7dc9933cdac150eccc5d4bc6f2a442b697) .../evolution-source-registry-migrate-sources.c | 3 +++ 1 file changed, 3 insertions(+) commit 1777388df92e664eb502ad64c661c20315e8c046 Author: Marián Čavojský Date: Mon Oct 8 16:41:31 2012 +0200 Updated Slovak translation po/sk.po | 4498 ++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 2504 insertions(+), 1994 deletions(-) commit 5c5ddf9de8f360d73b8e91051471b6c11dc45609 Author: Luca Ferretti Date: Sun Oct 7 21:24:53 2012 +0200 l10n: Updated Italian translation po/it.po | 70 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 35 insertions(+), 35 deletions(-) commit 1a887ff81d522e58274b053eb9fbba5719a2f3a0 Author: Peter Hurley Date: Fri Oct 5 19:15:28 2012 -0400 Bug 685588 - Remove useless LIBICAL_CFLAGS and LIBICAL_LIBS These variables are no longer defined by configure.ac but they're still hanging around in a few Makefile.am files. (cherry picked from commit 189fc5d38ae5d96acf40194e923a70c7274e35c0) calendar/libecal/Makefile.am | 6 ++---- calendar/libedata-cal/Makefile.am | 2 -- docs/reference/calendar/libecal/Makefile.am | 1 - docs/reference/calendar/libedata-cal/Makefile.am | 1 - tests/libecal/Makefile.am | 4 ---- 5 files changed, 2 insertions(+), 12 deletions(-) commit 87762bee75139f9fe6df59d3cf35c8544f0fd2c2 Author: Alexander Shopov Date: Wed Oct 3 06:54:08 2012 +0300 Updated Bulgarian translation po/bg.po | 1498 +++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 838 insertions(+), 660 deletions(-) commit 69f6d1aa2964376d879de66e196f9e8935221f40 Author: Antoine Jacoutot Date: Sun Sep 30 11:10:13 2012 +0200 do not hardcode -lgcov While a check for libgcov is made at configure time, -lgcov was still hardcoded here. So use $(CODE_COVERAGE_LDFLAGS) instead. https://bugzilla.gnome.org/show_bug.cgi?id=685127 (cherry picked from commit e7d2d2268ceb0bc194a1ac0dbd399a2c5780a82e) tests/libedata-cal/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) commit a91eef8360b5a018c5b57034f526508c4bf49e1e Author: Matthew Barnes Date: Sun Sep 30 07:50:26 2012 -0400 imapx_connect_to_server: Avoid a runtime warning. Check that the IMAPX stream is non-NULL before unreferencing it during failure cleanup. (cherry picked from commit 19da4b91667003095871d771667fbcee0faa9959) camel/camel-imapx-server.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) commit ddf889be07f82c2ffdbfcfd2a0c767630713974a Author: Žygimantas Beručka Date: Sun Sep 30 13:46:54 2012 +0300 Updated Lithuanian translation po/lt.po | 1090 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 552 insertions(+), 538 deletions(-) commit affaf9add27c3230f9f8ad6f176656a44d980e9e Author: Chao-Hsiung Liao Date: Sun Sep 30 08:04:04 2012 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) po/zh_HK.po | 116 ++++++++++++++++++++++++++++++----------------------------- po/zh_TW.po | 116 ++++++++++++++++++++++++++++++----------------------------- 2 files changed, 118 insertions(+), 114 deletions(-) commit 96901a82553fd8e528765f8cd6dbd34528d347d3 Author: Timo Jyrinki Date: Wed Sep 26 11:37:13 2012 +0300 Updated Finnish translation po/fi.po | 4451 +++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 2507 insertions(+), 1944 deletions(-) commit 36660323a80e35eca7360708b492e4563ac33f63 Author: Petr Kovar Date: Mon Sep 24 15:39:03 2012 +0200 Updated Czech translation by Jiri Eischmann po/cs.po | 3532 +++++++++++++++++++++++++++++++++++--------------------------- 1 file changed, 1977 insertions(+), 1555 deletions(-) commit 53519f2865ba8ba232751aacc5c97a760e01f978 Author: Milo Casagrande Date: Sun Sep 23 19:08:34 2012 +0200 [l10n] Updated Italian translation. po/it.po | 3411 +++++++++++++++++++++++++++++++------------------------------- 1 file changed, 1692 insertions(+), 1719 deletions(-) commit e3a4091b8149b46d370e9b5650a47ab3519cb59d Author: Yuri Myasoedov Date: Sun Sep 23 20:19:59 2012 +0400 Updated Russian translation po/ru.po | 550 ++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 269 insertions(+), 281 deletions(-) commit 25982da1effbfad5026de1fb1c2eb5b0e0f1f4f9 Author: Flemming Christensen Date: Sun Sep 23 17:08:00 2012 +0200 Updated Danish translation po/da.po | 3365 ++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 1858 insertions(+), 1507 deletions(-) commit 6f80f7db82ee458f989f5ce763e0f4c26dd73354 Author: Ani Peter Date: Sun Sep 23 16:07:58 2012 +0530 Updated Malayalam file po/ml.po | 238 ++++++++++++++++++++++++++------------------------------------ 1 file changed, 98 insertions(+), 140 deletions(-) commit feb267cee764d6665fc8d2fe181499ad06000133 Author: Ani Peter Date: Sun Sep 23 02:05:20 2012 +0530 Updated Malayalam file po/ml.po | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) commit f0818d3e3adfe94f55422b805ee6d05189331889 Author: Matthew Barnes Date: Sat Sep 22 11:33:14 2012 -0400 Post-release version bump. configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)