commit e5a838adf08ad33eb044c2488f9d41baaf8bc023 Author: Matthew Barnes Date: Sun Feb 6 01:22:25 2011 -0500 NEWS update for 2.32.2 release. NEWS | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 46 insertions(+), 0 deletions(-) commit 807f08c1f3c9d904eae88360062593546f900000 Author: Chao-Hsiung Liao Date: Tue Jan 25 18:53:52 2011 +0800 Updated Traditional Chinese translation(Hong Kong and Taiwan) po/zh_HK.po | 1021 +++++++++++++++++++++++++++++------------------------------ po/zh_TW.po | 1021 +++++++++++++++++++++++++++++------------------------------ 2 files changed, 1000 insertions(+), 1042 deletions(-) commit 8542059ec53e51f56ddc4b4ad720739ec075c72a Author: Matthew Barnes Date: Sat Jan 22 11:01:11 2011 -0500 Bug 640083 - Cannot configure LDAPS on port 636 modules/addressbook/addressbook-config.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 32cc60f329168ee6fcea02ef87d4915f953947c9 Author: Milan Crha Date: Tue Jan 18 15:20:47 2011 +0100 Bug #553438 - Deletes lines of a reply when changing address composer/e-msg-composer.c | 10 ++++------ 1 files changed, 4 insertions(+), 6 deletions(-) commit 9f76afb18d5432c457d066245d90a49283f16299 Author: Milan Crha Date: Tue Jan 11 10:36:22 2011 +0100 Bug #638808 - camel_shutdown() called too early mail/e-mail-backend.c | 11 ++++++++++- shell/e-shell.c | 1 + 2 files changed, 11 insertions(+), 1 deletions(-) commit a6d25b06d66576082a5756c9b2ed13fadce88f56 Author: Daniel Nylander Date: Sun Jan 9 20:31:56 2011 +0100 Updated Swedish translation po/sv.po | 24 ++++++++++++------------ 1 files changed, 12 insertions(+), 12 deletions(-) commit 197635633a52222943e3eecd39944b7aa4733bd1 Author: Milan Crha Date: Thu Jan 6 15:54:21 2011 +0100 Bug #633854 - [templates] Crash in build_template_menus_recurse plugins/templates/templates.c | 13 ++++++++++--- 1 files changed, 10 insertions(+), 3 deletions(-) commit fcf6412fe0a946a0e33755a4120b8e07ad52f05b Author: Daniel Nylander Date: Fri Dec 31 14:07:35 2010 +0100 Updated Swedish translation po/sv.po | 1567 ++++++++++++++++++++++++++++++++++++-------------------------- 1 files changed, 913 insertions(+), 654 deletions(-) commit 4df6ef961dbf00f9e573333cde9fa28c97a660b3 Author: Matthew Barnes Date: Mon Dec 27 09:56:23 2010 -0500 Bug 637482 - Flushing outbox gives up on first error mail/mail-ops.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit e91dcae7c683d65b5789a79161f1998f43a2b425 Author: Milan Crha Date: Wed Dec 15 16:03:00 2010 +0100 Bug #634385 - Crash in smtp_connect mail/mail-ops.c | 6 +++++- mail/mail-session.c | 6 ++++++ 2 files changed, 11 insertions(+), 1 deletions(-) commit e32cf32a6c7a563dda590cbad727f693088cfea0 Author: Ani Peter Date: Tue Dec 7 17:47:27 2010 +0530 Updated Malalayam translations po/ml.po |34186 ++++++++++++++++++++++++++++++-------------------------------- 1 files changed, 16715 insertions(+), 17471 deletions(-) commit 25f2dfb3811d5da1de1622377b2391b80cc7b888 Author: Federico Mena Quintero Date: Thu Dec 2 17:55:36 2010 -0600 Don't set the URL's defaults when the providers have not been refreshed Signed-off-by: Federico Mena Quintero mail/em-account-editor.c | 22 ++++++++-------------- 1 files changed, 8 insertions(+), 14 deletions(-) commit 18a445e832162581ac477fafcbf66f9d79145aa7 Author: Federico Mena Quintero Date: Thu Dec 2 17:33:57 2010 -0600 Only set the URL's defaults when we are creating a new account mail/em-account-editor.c | 15 +++++++++------ 1 files changed, 9 insertions(+), 6 deletions(-) commit e18121ce0ba71e952e7b0217421badf9cf8305ab Author: Federico Mena Quintero Date: Wed Dec 1 17:30:35 2010 -0600 Set the provider's defaults on when CamelURLs get refreshed with a new protocol Signed-off-by: Federico Mena Quintero mail/em-account-editor.c | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) commit 6ed48b87de9e768e717915a849d84c46e2c391e2 Author: Federico Mena Quintero Date: Wed Dec 1 13:23:41 2010 -0600 Don't set the provider's defaults on the URL from the widget functions We will do that in a separate function to deal only with transferring the defaults from CamelProviderConfEntry structures to a CamelURL for an account. Signed-off-by: Federico Mena Quintero mail/em-account-editor.c | 88 ++++++++++++++++++++++++---------------------- 1 files changed, 46 insertions(+), 42 deletions(-) commit 176895e4ebc119274a26436b307c258d6af4388a Author: Federico Mena Quintero Date: Wed Dec 1 11:48:01 2010 -0600 Function to set a CamelURL's defaults based on a provider's defaults In http://bugs.meego.com/show_bug.cgi?id=6498, part of the problem is that when a mail account is created through the startup wizard in Express mode, that account does not receive the default values that were defined by its respective CamelProvider (i.e. the provider->extra_conf CamelProviderConfEntry structures). However, the defaults *are* used if an account is created when not in Express mode. The problem is that Express mode doesn't include the "Receiving options" page in its mail account editor, while non-express mode does. The utility functions to populate that page's widgets are the ones responsible for setting the provider's default values on the CamelURL for the new account. Since in Express mode those widgets don't even get created, the provider's defaults are never even considered. Here, what we do is to pull out the logic from those functions that create widgets, so that we have set_provider_defaults_on_url(), a single function to set default values from a CamelProvider into a CamelURL. We will use that function to set the defaults in both Express and non-express modes, instead of depending on the widget code to do that. Signed-off-by: Federico Mena Quintero mail/em-account-editor.c | 89 ++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 89 insertions(+), 0 deletions(-) commit 0e29a4877ba80e136683296f56964abcb056333b Author: Milan Crha Date: Thu Dec 2 13:19:46 2010 +0100 Bug #627176 - Do not spawn other process when clicking mailto: uri mail/e-mail-display.c | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) commit 058d18ca5c82b4410b51c20baf34fdac8d36cf4d Author: Milan Crha Date: Tue Nov 30 16:19:45 2010 +0100 Default to beginning of the day for the last alarm notification calendar/gui/alarm-notify/alarm-queue.c | 2 +- calendar/gui/alarm-notify/config-data.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) commit 950309c51fbfc3215cd7a168942f833586dc9e33 Author: Milan Crha Date: Tue Nov 30 09:36:31 2010 +0100 Update actions in EMailBrowser on message select too mail/e-mail-browser.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) commit c2996eea8b32be944478e93e514a833017a85452 Author: Milan Crha Date: Mon Nov 29 10:28:49 2010 +0100 Revert certain parts from the previous commit mail/e-mail-reader.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) commit 97b56f8aaf9497cf978b655bb5230e7b833fe006 Author: Milan Crha Date: Fri Nov 26 11:24:32 2010 +0100 Bug #635738 - Sanitize Previous/Next buttons when not usable mail/e-mail-reader.c | 34 +++++++++++++++++++++++++++------- 1 files changed, 27 insertions(+), 7 deletions(-) commit e972c5b2bc57f74d71d83fabbb821ebf646e5c03 Author: Milan Crha Date: Fri Nov 26 10:23:10 2010 +0100 [vCard-inline] Check also text/directory parts .../vcard-inline/org-gnome-vcard-inline.eplug.xml | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) commit ed8619da88fe1cf6d2a73b4dfc3f577759789da5 Author: Milan Crha Date: Thu Nov 25 18:23:22 2010 +0100 Bug #634387 - Crash in bbdb_sync_buddy_list_in_thread plugins/bbdb/gaimbuddies.c | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) commit b87510d25f03a355498f81cfc5c3b4131e9989f8 Author: Milan Crha Date: Wed Nov 24 14:31:09 2010 +0100 Bug #635673 - Stack overflow when opening slow calendar calendar/common/authentication.c | 1 + calendar/gui/e-cal-model.c | 21 +++++++++++++++++---- 2 files changed, 18 insertions(+), 4 deletions(-) commit 42d44c1059abebe21f70693ca1e078f03fef6e48 Author: Milan Crha Date: Wed Nov 24 13:39:04 2010 +0100 Bug #632962 - Duplicate "On this computer" sources after update capplet/settings/mail-capplet-shell.c | 24 ++++++++++++++---------- modules/addressbook/e-book-shell-migrate.c | 24 +++++++++++++----------- modules/calendar/e-cal-shell-migrate.c | 24 +++++++++++------------- modules/calendar/e-memo-shell-migrate.c | 26 +++++++++++++------------- modules/calendar/e-task-shell-migrate.c | 26 +++++++++++++------------- 5 files changed, 64 insertions(+), 60 deletions(-) commit d3d6d96ed54b29787d79863e4808dbaab56a0f02 Author: Mathieu Trudel-Lapierre Date: Tue Nov 23 10:47:42 2010 +0100 Bug #635087 - Leftover files after migration of config/data/cache to XDG directories shell/e-shell-migrate.c | 18 +++++++++++------- 1 files changed, 11 insertions(+), 7 deletions(-) commit 9f9d69559d85becd389c20ab43aac90ea8545f7e Author: Ivar Smolin Date: Sun Nov 21 12:51:07 2010 +0200 [l10n] Updated Estonian translation po/et.po | 39 ++++++++++++++++++++------------------- 1 files changed, 20 insertions(+), 19 deletions(-) commit 2a1c2ec90874aa790adbe268a862e0100648dd1d Author: Bharath Acharya Date: Tue Nov 16 11:14:08 2010 +0530 Post-release version bump. configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)