3b6c8972a5
Coding style and whitespace cleanup.
2011-06-29 18:41:36 +02:00
a4e2599f95
Fix few memory leaks
2011-06-29 18:41:35 +02:00
274697623e
Remove NULL checks for GObject methods.
...
As of GLib 2.28 all GObject virtual methods, including constructed(),
are safe to chain up to unconditionally. Remove unnecessary checks.
2011-06-29 18:41:34 +02:00
809b8bdc51
Bug #641701 - Issues with pst-import plugin
2011-06-29 18:41:31 +02:00
8efc1bc6f9
Bug 641756 - Fix warnings from GCC 4.6
...
GCC learned how to find dead assignments.
2011-06-29 18:41:31 +02:00
919c690de0
Bug #641451 - Crash in folder_selection_button_new
...
Crash when importing any pst file.
2011-06-29 18:41:31 +02:00
28d1b270ab
Bug #641011 - Ugly appointment editing windows
2011-06-29 18:41:31 +02:00
d92cfbebd8
Bug 222423 - Support Face headers
...
The configuration section for the Face plugin now has a preview image.
Also promoting this plugin out of "experimental" status so more distros
will pick it up.
2011-06-29 18:41:30 +02:00
d7ff1792f7
Bug #635144 - Using external editor duplicates signature
2011-06-29 18:41:30 +02:00
24d9dfaed2
bug #641069 - tnef plugin vulnerabilities
...
Resolves directory traversal and buffer overflow vulnerabilities.
2011-06-29 18:41:30 +02:00
27338a30c5
Add translator comment. See bug #641020 .
2011-06-29 18:41:30 +02:00
dbc22f9de5
More whitespace cleanup.
2011-06-29 18:41:29 +02:00
6af0c53b69
Coding style and whitespace cleanup.
2011-06-29 18:41:29 +02:00
7a49a21178
Dialogs no longer have separators.
2011-06-29 18:41:25 +02:00
a3ba231fcc
Drop backward-compatibility cruft.
2011-06-29 18:41:25 +02:00
9687179673
Drop support for gtk+-2.0.
2011-06-29 18:41:25 +02:00
40fbcd95b7
Bug 640025 - Silence debug output in spamassassin plugin
2011-06-29 18:41:21 +02:00
c36bd27fa8
Bug #634403 - Mails Label popup menu is not updated properly
2011-06-29 18:41:20 +02:00
d009b5b365
Bug #633788 - Mail plugin's update-actions handler is never called
2011-06-29 18:41:19 +02:00
2485ba3936
Fudge gtk_widget_get_preferred_size() for gtk2.
...
Easy enough to fake gtk_widget_get_preferred_size() in gtk2 using
gtk_widget_size_request(). Reduces diff noise with gtk3 branch.
2011-06-29 18:41:19 +02:00
8f25c74bf2
Fix all back up that should be backup
2011-06-29 18:41:15 +02:00
824a754c58
Bug #633854 - [templates] Crash in build_template_menus_recurse
2011-06-29 18:41:15 +02:00
eb36fb6469
Properly translate NC_ messages
2011-06-29 18:41:10 +02:00
60dc92eb44
Bug #633332 - Preserve port number in WebDAV address book
2011-06-29 18:41:10 +02:00
49dd425fc9
Bug #631568 - Scheduling Meetings with CalDAV calendars
2011-06-29 18:41:09 +02:00
1182cdfec8
Avoid a crash when building templates menu.
2011-06-29 18:41:07 +02:00
8e848e5059
CalDAV plugin - use saved password, if available, for server browsing
2011-06-29 18:41:07 +02:00
cfffc1befe
Bug #555324 - Ask for destination before "Save in Addressbook" inline vCard
2011-06-29 18:41:06 +02:00
27f701169e
Added few translator comments
...
As requested in bug #635414
2011-06-29 18:41:05 +02:00
5e7c9f2d39
[vCard-inline] Check also text/directory parts
2011-06-29 18:41:04 +02:00
0f1b35a8c3
Bug #634387 - Crash in bbdb_sync_buddy_list_in_thread
2011-06-29 18:41:04 +02:00
5d79bdce74
Fix windows build of backup-restore plugin
2010-11-16 10:43:16 +01:00
5e633737a8
Bug #632176 - Force user name on Google calendar/address book
2010-11-09 23:33:23 +01:00
dce5bdc369
Move calendar preferences to the calendar module.
...
Continue replacing the use of calendar-config functions with GObject
property bindings to EShellSettings properties.
2010-11-09 23:33:22 +01:00
c1e412618a
Rename CalUnits to EDurationType.
...
And move the definition to e-util-enums.h so we get a GType for it.
2010-11-09 23:33:22 +01:00
8d291318b0
Add missing libeshell.la to LIBADD in pst-import plugin
2010-11-09 23:33:21 +01:00
26afa6081c
Utilize the new ESourceSelector:primary-selection property.
2010-11-09 23:33:21 +01:00
58727dbb22
Kill mail_append_mail().
...
Use e_mail_folder_append_message() instead.
2010-11-09 23:33:19 +01:00
709a0807d3
Bug #632280 - Backup file name should include date (YYYYMMDD)
2010-10-29 17:07:00 +02:00
9662ac73cc
Bug 631731 - Remove status icon from mail notifier
2010-10-27 15:08:32 -04:00
8854c727c1
Bug 632903 - Support libnotify-0.7
2010-10-22 18:54:27 -04:00
c881b5bc5e
Simplify EActivity.
...
With unintrusive error dialogs gone, we can cut some unnecessary bits
out of EActivity.
I'm also adding a new enum property called "state", which is one of:
E_ACTIVITY_RUNNING
E_ACTIVITY_WAITING
E_ACTIVITY_CANCELLED
E_ACTIVITY_COMPLETED
The state of an activity must be explicitly changed. In particular,
when the user cancels an activity the state should be set only after
confirming the operation has been cancelled and not when cancellation
is requested (e.g. after receiving a G_IO_ERROR_CANCELLED, not when
the GCancellable emits "cancelled"). EActivityBar and EActivityProxy
widgets have been updated to make this distinction clearer in the UI.
E_ACTIVITY_WAITING will be used when activities have to be queued and
dispatched in sequence, which I haven't written yet.
2010-10-22 14:21:22 -04:00
8da37ea812
Bug 632641 - Handle combo box text API going away
2010-10-20 15:08:16 -04:00
ae478d1e3c
Collect mail enum types in e-mail-enums.h.
...
And generate GTypes for each of them in e-mail-enumtypes.[ch].
Also, the glib-gen.mak script forced me to add a <mail/e-mail.h>
top-level header, which really isn't a bad idea anyway.
TODO: We should do this for calendar and addressbook too.
2010-10-18 14:31:16 -04:00
ec170e47fd
Move more account utilities to e-account-utils.c.
2010-10-18 12:32:38 -04:00
35e55a8d6e
Send errors to an EAlertSink instead of the task bar.
...
This marks the end of unintrusive error dialogs, which were too
unintrusive. We now show errors directly in the main window using
the EAlert / EAlertSink framework.
2010-10-18 12:32:37 -04:00
f7f4014e22
Bug #630518 - Hides calendar parts from multipart/alternative
2010-10-18 13:15:39 +02:00
d4e5485e02
Bug 632127 - Composer is editable while sending message
2010-10-14 16:32:29 -04:00
1e663aa132
Replace EBinding with GBinding.
...
GObject now does property bindings itself.
Requires GLib >= 2.26.
2010-10-14 07:12:52 -04:00
ed45d23b84
Remove mail_tools_folder_to_url().
...
Use camel_folder_get_uri() instead.
2010-10-12 13:59:00 -04:00