Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Kill em_utils_temp_save_part(). | Matthew Barnes | 2010-10-01 | 1 | -4/+109 |
| | | | | | | | | | Rewrite the last usage of it in itip-formatter.c to use EAttachments instead. This also allowed me to kill mail_save_part() in mail-ops.c. I may need to reevaluate the EAttachment API at some point for all these fringe EAttachment uses we're accumulating. Having to asynchronously "load" an EAttachment whose content is already in memory kinda sucks. | ||||
* | camel_operation_new() now returns a GCancellable pointer. | Matthew Barnes | 2010-09-29 | 2 | -2/+2 |
| | |||||
* | Bug #629799 - Crash importing a mail with an ics attachment | Milan Crha | 2010-09-29 | 1 | -5/+7 |
| | |||||
* | Bug #630294 - Shouldn't send invitation reply when has no organizer | Milan Crha | 2010-09-29 | 1 | -1/+1 |
| | |||||
* | Bug #629972 - [backup-restore] Problems restoring old data | Milan Crha | 2010-09-29 | 1 | -40/+255 |
| | |||||
* | Adapt to Camel API changes. | Matthew Barnes | 2010-09-28 | 17 | -99/+116 |
| | |||||
* | Pass GCancellable to Camel. | Matthew Barnes | 2010-09-28 | 11 | -40/+107 |
| | |||||
* | Bug #629737 - [publish-calendar] Could not find widget 'file_label' | Milan Crha | 2010-09-22 | 1 | -1/+1 |
| | |||||
* | Use new GDK keysym names if available. | Matthew Barnes | 2010-09-18 | 1 | -6/+9 |
| | | | | | | | In GTK+ 2.21.8, the keysym names were renamed from GDK_* to GDK_KEY_*. I've added backward-compatibility macors to gtk-compat.h, which can be dumped as soon as we require GTK+ >= 2.22.0. | ||||
* | Bug #611154 - problem in accessing folder property | Vibha Yadav | 2010-09-16 | 5 | -46/+224 |
| | |||||
* | Increase safety on Windows | Fridrich Štrba | 2010-09-15 | 1 | -0/+36 |
| | | | | Call SetDllDirectory() to reduce risk of DLL hijacking, and call SetProcessDEPPolicy() to reduce risk of rogue code execution. | ||||
* | Adapt to CamelOperation API changes. | Matthew Barnes | 2010-09-15 | 2 | -16/+12 |
| | |||||
* | Kill the subject-thread plugin. | Matthew Barnes | 2010-09-15 | 3 | -115/+0 |
| | | | | | | All this time I never realized the subject-thread plugin was nothing more than a stupid checkbox. The actual thread-by-subject code lives in the core mail library. | ||||
* | Bug #624321 - Reply requested today does not work. | Bharath Acharya | 2010-09-14 | 1 | -1/+1 |
| | | | | | Do not check for the "reply_within" if it is not the "convenient" option. 0 can be an option too. | ||||
* | Convert plugin-manager to an EExtension. | Matthew Barnes | 2010-09-13 | 3 | -505/+0 |
| | | | | How ironic. | ||||
* | Coding style cleanups. | Matthew Barnes | 2010-09-13 | 46 | -799/+799 |
| | |||||
* | Bug #627812 - GW shouldn't use global folder tree. | Milan Crha | 2010-09-13 | 1 | -7/+4 |
| | | | | Groupwise shouldn't use global folder tree for UI. | ||||
* | Bug #629132 - set_attachments: assertion failed. | Punit Jain | 2010-09-13 | 1 | -4/+5 |
| | | | | | [mail-to-task] CRITICAL **: set_attachments: assertion `status.uris != NULL' failed Uri was actually a path. | ||||
* | Coding style and whitespace cleanups. | Matthew Barnes | 2010-09-12 | 14 | -52/+62 |
| | |||||
* | Re-work my GtkDialog:has-separator workaround. | Matthew Barnes | 2010-09-11 | 4 | -8/+8 |
| | | | | | | | If we're using GTK+ 2.21.8 (where gtk_dialog_set_has_separator() is deprecated but the property is still present and defaults to TRUE), we still need to set the property to FALSE. So instead use g_object_set() up through GTK+ 2.90.6, after which the property itself is gone. | ||||
* | No more blinking status icon. | Matthew Barnes | 2010-09-11 | 2 | -48/+0 |
| | | | | GTK+ came to its senses and dropped support for it. Thank goodness. | ||||
* | Work around deprecation of gtk_dialog_set_has_separator() | Matthew Barnes | 2010-09-11 | 4 | -0/+8 |
| | | | | | | Unfortunately the default value for this property is TRUE (bzzt, WRONG!) so we can't just remove the function outright until we require GTK+ 2.22. It was deprecated in GTK+ 2.21.8. | ||||
* | Bug #626579 - [bbdb] Crash in free_gaim_body() (gaimbuddies.c) | Milan Crha | 2010-09-10 | 1 | -9/+6 |
| | |||||
* | Various memory leaks | Milan Crha | 2010-09-08 | 1 | -0/+1 |
| | |||||
* | Bug #628694 - Customize options for local calendar are missing | Milan Crha | 2010-09-03 | 1 | -1/+1 |
| | |||||
* | Composer autosave cleanups. | Matthew Barnes | 2010-08-31 | 1 | -2/+26 |
| | | | | | | This simplifies the async autosave logic and improves error handling. Hoping this will solve bug #616987 but I've yet to reproduce it myself. | ||||
* | GObject boilerplate cleanup. | Matthew Barnes | 2010-08-25 | 2 | -7/+7 |
| | | | | | | | Prefer thread-safe G_DEFINE_TYPE and G_DEFINE_INTERFACE macros over manual GType registration. This is just a start... lots more to do. | ||||
* | Bug 627601 - Memory leak in itip_get_comp_attendee() | David Woodhouse | 2010-08-24 | 1 | -1/+3 |
| | |||||
* | Use the new e_load_book_source_async() where possible. | Matthew Barnes | 2010-08-19 | 1 | -15/+39 |
| | | | | | | It's easier to use than addressbook_load() but requires starting with an ESource rather than an EBook, and there's a couple places left where that's not so easy. I'll spend more time on it later. | ||||
* | Pass an EShell to EMsgComposer instances. | Matthew Barnes | 2010-08-14 | 2 | -3/+12 |
| | | | | Reduce the composer's dependency on e_shell_get_default(). | ||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2010-08-03 | 1 | -4/+12 |
| | |||||
* | dbx-importer: Fix printf format warning | David Woodhouse | 2010-08-02 | 1 | -2/+2 |
| | |||||
* | addressbook/gui, plugins/groupwise, widgets/misc: Update to new icon theme | Rob Bradford | 2010-08-02 | 2 | -2/+2 |
| | | | | | | | Since gnome-icon-theme 2.30.x the icon name for the default avatar has changed from stock_person to avatar-default Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=616822 | ||||
* | Bug #625606 - git/master build dies with glib-2.25.12 | Milan Crha | 2010-07-30 | 1 | -1/+1 |
| | |||||
* | Bug 622181 - Backup settings uses unhelpful yes/no dialog | Matthew Barnes | 2010-07-29 | 1 | -8/+8 |
| | |||||
* | Bug #622912 - Migrate from dbus-glib to glib's GDBus | Milan Crha | 2010-07-28 | 2 | -52/+56 |
| | |||||
* | Bug 624534 - Adapt to GTK+ GtkNotebookPage changes | Kjartan Maraas | 2010-07-26 | 2 | -3/+3 |
| | |||||
* | Bug 624216 - Runtime warning in Attachment Reminder plugin | Matthew Barnes | 2010-07-13 | 2 | -218/+101 |
| | | | | Also fixes the same bug in Email Custom Header plugin. | ||||
* | Bug 624128 - Folder -> Subscriptions is always enabled | Matthew Barnes | 2010-07-12 | 2 | -8/+3 |
| | |||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2010-07-12 | 5 | -36/+38 |
| | |||||
* | Fix some compiler warnings. | Matthew Barnes | 2010-07-11 | 1 | -1/+3 |
| | |||||
* | Bug #623204 - Be able to report detailed errors from backends | Milan Crha | 2010-07-09 | 2 | -16/+17 |
| | |||||
* | Migrate from CamelException to GError. | Matthew Barnes | 2010-07-09 | 16 | -134/+159 |
| | |||||
* | Fix transience problems with ENameSelectorDialogs ... | Michael Meeks | 2010-07-08 | 2 | -18/+6 |
| | |||||
* | Bug 623157 - Missing linker flag in dbx-import | Guido Günther | 2010-06-30 | 1 | -0/+1 |
| | |||||
* | Add Outlook Express DBX mailbox file importer plugin | David Woodhouse | 2010-06-29 | 3 | -0/+822 |
| | | | | [patch v2: Don't error on empty mailboxes, build plugin by default] | ||||
* | audio-inline: Fix linking order issue. | Matthew Barnes | 2010-06-27 | 1 | -2/+2 |
| | |||||
* | Warn the user before marking all messages as read | Chenthill Palanisamy | 2010-06-17 | 1 | -9/+22 |
| | |||||
* | Coding style and whitespace cleanups. | Matthew Barnes | 2010-06-07 | 1 | -22/+53 |
| | |||||
* | More GTK3 preparation. | Matthew Barnes | 2010-06-04 | 1 | -2/+3 |
| | | | | | This uses the new gtk_assistant_commit() I had added to GTK+ for our EImportAssistant progress page. | ||||
* | Add translator comments in mail-to-task plugin | Milan Crha | 2010-06-03 | 1 | -0/+18 |
| | |||||
* | Convert "startup-wizard" to an EExtension. | Matthew Barnes | 2010-06-03 | 3 | -359/+0 |
| | | | | | | | | | | | | | | Convert the "startup-wizard" EPlugin to an EExtension, and fix up the importing UI a bit (but it still needs a lot more love). Importing progress is now shown directly in the GtkAssistant window. Define a new EConfigItem type (E_CONFIG_PAGE_PROGRESS) for creating progress pages in a GtkAssistant. Also, change EMAccountEditor semantics slightly: you now have to call e_config_create_window() manually after creating a new EMAccountEditor instance. This allows extra EConfigItems (specifications for the window content) to be added manually before the window is created. | ||||
* | Keep chipping away at direct GtkHTML usage. | Matthew Barnes | 2010-06-01 | 3 | -12/+14 |
| | | | | | | | | | | EMFormatHTML now holds a sealed EWebView instead of a public GtkHTML, accessible through em_format_html_get_web_view(). Rename e_mail_reader_get_html_display() to e_mail_reader_get_formatter() and have it return an EMFormatHTML instead of an EMFormatHTMLDisplay, since that's usually the type you want (or else an EMFormat, but never an EMFormatHTMLDisplay). | ||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2010-05-27 | 1 | -1/+8 |
| | |||||
* | Fix linking issue in bogo-junk-plugin. | Matthew Barnes | 2010-05-27 | 1 | -0/+1 |
| | |||||
* | Fix linking issue in sa-junk-plugin. | Matthew Barnes | 2010-05-27 | 1 | -0/+1 |
| | |||||
* | Merge branch 'express2' | Matthew Barnes | 2010-05-27 | 3 | -5/+30 |
|\ | |||||
| * | Coding style and whitespace cleanup. | Matthew Barnes | 2010-05-25 | 1 | -1/+0 |
| | | |||||
| * | Fix compiler warnings. | Matthew Barnes | 2010-05-25 | 1 | -4/+6 |
| | | |||||
| * | Merge branch 'gnome-2-30' into express2 | Matthew Barnes | 2010-05-25 | 1 | -0/+3 |
| |\ | |||||
| | * | Bug #531013 - Proxy login window is not in focus. | Vibha Yadav | 2010-05-21 | 1 | -0/+3 |
| | | | | | | | | | | | | Grab focus for the Proxy Login window. | ||||
| | * | Fix linking of face plugin | Fridrich Štrba | 2010-04-26 | 1 | -0/+1 |
| | | | |||||
| | * | Bug #613392 - No copyright/licensing information for geo-utils | Cedric Bosdonnat | 2010-04-26 | 2 | -0/+44 |
| | | | |||||
| * | | Fix linking of face plugin | Fridrich Štrba | 2010-04-30 | 1 | -0/+1 |
| | | | |||||
| * | | Bug #613392 - No copyright/licensing information for geo-utils | Cedric Bosdonnat | 2010-04-30 | 2 | -0/+44 |
| | | | |||||
| * | | Store the initial view request and use that to decide whether to show | Srinivasa Ragavan | 2010-04-22 | 1 | -0/+8 |
| | | | | | | | | | | | | startup wizard or not. Show only for mail and not calendar. | ||||
| * | | Merge commit 'origin/gnome-2-30' into express2 | Michael Meeks | 2010-04-22 | 3 | -4/+4 |
| |\| | |||||
| | * | Fix migration event hook for google-account-setup and calendar-weather plugins | Philip Withnall | 2010-04-21 | 2 | -2/+2 |
| | | | |||||
| | * | Bug 600861 - Backup utility should use --quit instead of --force-shutdown | Matthew Barnes | 2010-04-18 | 1 | -2/+2 |
| | | | |||||
| * | | Hide the junk plugin options in Express mode | Federico Mena Quintero | 2010-04-14 | 2 | -4/+20 |
| | | | | | | | | | | | | Signed-off-by: Federico Mena Quintero <federico@novell.com> | ||||
| * | | More build fixes. | Matthew Barnes | 2010-04-07 | 1 | -7/+19 |
| | | | |||||
| * | | Fix mismatched quotes. | Matthew Barnes | 2010-04-07 | 3 | -4/+4 |
| | | | |||||
| * | | Alter UI conditional syntax to be more familiar cpp style, which | Michael Meeks | 2010-04-07 | 1 | -0/+1 |
| |/ | | | | | | | avoids the need for intltool changes. | ||||
| * | Alter UI conditional syntax to be more familiar cpp style, which | Michael Meeks | 2010-03-24 | 1 | -5/+5 |
| | | | | | | | | avoids the need for intltool changes. | ||||
* | | Bug #478090 - Meeting acceptances for attendees who weren't listed are lost | Milan Crha | 2010-05-26 | 1 | -4/+6 |
| | | |||||
* | | Bug #546551 - Dialog for mark-all-read always mentions subfolders | Milan Crha | 2010-05-21 | 1 | -2/+8 |
| | | |||||
* | | Bug #531013 - Proxy login window is not in focus. | Vibha Yadav | 2010-05-21 | 1 | -0/+3 |
| | | | | | | | | Grab focus for the Proxy Login window. | ||||
* | | Bug #607257 - Add checks for event->comp_data != NULL | Milan Crha | 2010-05-14 | 2 | -4/+14 |
| | | |||||
* | | Convert "default-mailer" plugin to an extension. | Matthew Barnes | 2010-05-13 | 5 | -218/+0 |
| | | |||||
* | | Adapt to Camel API changes. | Matthew Barnes | 2010-05-08 | 1 | -1/+1 |
| | | | | | | | | | | This also removes the boxed CamelObject GType, since CamelObject is an honest-to-goodness GObject now. | ||||
* | | Coding style and whitespace cleanup. | Matthew Barnes | 2010-05-02 | 4 | -15/+26 |
| | | |||||
* | | Adapt to Camel API changes. | Matthew Barnes | 2010-04-30 | 8 | -24/+46 |
| | | |||||
* | | Bug #610495 - Plugins should define e_plugin_lib_enable | Roy Marples | 2010-04-27 | 18 | -0/+136 |
| | | |||||
* | | Fix linking of face plugin | Fridrich Štrba | 2010-04-26 | 1 | -0/+1 |
| | | |||||
* | | Bug #613392 - No copyright/licensing information for geo-utils | Cedric Bosdonnat | 2010-04-26 | 2 | -0/+44 |
| | | |||||
* | | Camel is now GObject-based. | Matthew Barnes | 2010-04-24 | 13 | -56/+56 |
| | | |||||
* | | Bug #360461 - Avoid markup in translatable messages | Milan Crha | 2010-04-23 | 6 | -51/+84 |
| | | |||||
* | | Fix migration event hook for google-account-setup and calendar-weather plugins | Philip Withnall | 2010-04-21 | 2 | -2/+2 |
| | | |||||
* | | Bug 583742 — Port to external libgdata | Philip Withnall | 2010-04-19 | 2 | -37/+42 |
| | | | | | | | | | | | | Port Google account setup plugin to external libgdata. This drops the dependency on libgdata-1.2 from e-d-s, and add a dependency on the external libgdata >= 0.4.0. Closes: bgo#583742 | ||||
* | | Fix usage of "backup" in translatable strings | Philip Withnall | 2010-04-18 | 1 | -1/+1 |
| | | | | | | | | | | "to back up" (verb) is different from "backup" (noun); correct some issues with confusion of the two words. Helps: bgo#615712 | ||||
* | | Bug 610428 - Duplicate mnemonic in itip formatted message | Matthew Barnes | 2010-04-18 | 1 | -5/+5 |
| | | |||||
* | | Bug 600861 - Backup utility should use --quit instead of --force-shutdown | Matthew Barnes | 2010-04-18 | 1 | -2/+2 |
| | | |||||
* | | [win32] Fix a build breakage by adding a proper define for gmtime_r | Fridrich Štrba | 2010-04-15 | 1 | -0/+7 |
| | | | | | | | | | | instead of the broken one that used to be pulled by including pthread.h | ||||
* | | Use accessor functions instead direct access (GSEAL work) | Javier Jardón | 2010-04-13 | 10 | -23/+39 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Still remaining: GtkAccessible::widget GtkAssistant::forward GtkAssistant::back GtkObject::flags GtkTreeStore::stamp The GtkAssistant fields are related to bug #596428. We don't need accessor functions so much as the enhancement described there implemented. https://bugzilla.gnome.org/show_bug.cgi?id=615613 | ||||
* | | Adapt to Camel API changes. | Matthew Barnes | 2010-04-13 | 3 | -18/+26 |
| | | |||||
* | | Giant leap towards GSEAL compliance. | Matthew Barnes | 2010-04-08 | 16 | -51/+89 |
| | | |||||
* | | Replace ESpinner with GtkSpinner. | Matthew Barnes | 2010-04-08 | 1 | -2/+2 |
| | | | | | | | | Also, bump our GTK+ requirement to 2.20. | ||||
* | | Drop the "hula-account-setup" plugin. | Matthew Barnes | 2010-04-07 | 5 | -770/+0 |
| | | | | | | | | Novell's Hula project died half a decade ago. | ||||
* | | Bug #567304 - Review strings for translation | Milan Crha | 2010-04-07 | 1 | -1/+1 |
| | | |||||
* | | Adapt to Camel API changes. | Matthew Barnes | 2010-04-04 | 10 | -25/+25 |
| | | |||||
* | | Generate ChangeLog files for tarball releases. | Matthew Barnes | 2010-04-03 | 36 | -6744/+0 |
| | | | | | | | | Remove old ChangeLog files that predate our switch to git. | ||||
* | | Only #include Camel's top-level header. | Matthew Barnes | 2010-04-03 | 33 | -118/+7 |
| | | |||||
* | | Bug #458510 - Cannot translate "_Backup Settings..." | Milan Crha | 2010-04-02 | 1 | -2/+2 |
| | | |||||
* | | Bug #347330 - Mark forgotten strings for translation | Milan Crha | 2010-04-02 | 1 | -1/+1 |
| | | |||||
* | | Bug #605745 - Use a few more named constants | Paul Bolle | 2010-04-01 | 1 | -2/+2 |
| | | |||||
* | | camel/camel-i18n.h gone, adapt to it properly | Milan Crha | 2010-04-01 | 3 | -3/+3 |
| | | |||||
* | | Stop relying on CamelObject meta-data. | Matthew Barnes | 2010-04-01 | 3 | -5/+5 |
| | | |||||
* | | More build fixes. | Matthew Barnes | 2010-04-01 | 1 | -7/+19 |
| | | |||||
* | | Fix mismatched quotes. | Matthew Barnes | 2010-03-29 | 3 | -4/+4 |
| | | |||||
* | | Bug 611883 - Missing mnemonic in automatic contacts tab | Matthew Barnes | 2010-03-28 | 1 | -1/+1 |
| | | |||||
* | | Alter UI conditional syntax to be more familiar cpp style, which | Michael Meeks | 2010-03-23 | 2 | -5/+6 |
|/ | | | | avoids the need for intltool changes. | ||||
* | Fix misspelled strings. | Srinivasa Ragavan | 2010-03-17 | 1 | -1/+1 |
| | |||||
* | Make the gconf schemas installation rules consistent in all Makefiles.am | Fridrich Strba | 2010-03-16 | 3 | -18/+46 |
| | |||||
* | Prevent future bugs like #612792. | Matthew Barnes | 2010-03-15 | 1 | -3/+3 |
| | | | | | | Add G_GNUC_NULL_TERMINATED to EAlert functions with variable-length parameter lists and drop the unnecessary "arg0" parameter so the function attribute works correctly. | ||||
* | Actually respect the --disable-schemas-install configure option | Fridrich Strba | 2010-03-15 | 8 | -0/+32 |
| | |||||
* | Disable a chunk of UI from the mail-to-task plugin | Michael Meeks | 2010-03-14 | 1 | -0/+4 |
| | | | | | | Allow plugins to disable chunks of their UI - *NB* requires patched intltool, that doesn't elide comments in XML Remove some debug | ||||
* | Removed obsolete method signatures in em-account-editor.h | Michael Meeks | 2010-03-14 | 1 | -14/+10 |
| | | | | | | Added em_account_editor_get_widget, and cleaned up the widget listing. Cleaned the startup wizard code to find it's label by name Added disabling of power-user 'indentity' frame in the first page express capplet. | ||||
* | Restructure capplet stuffs and load only on express mode. | Srinivasa Ragavan | 2010-03-14 | 2 | -2/+2 |
| | |||||
* | Switch to anjal style on express mode. | Srinivasa Ragavan | 2010-03-14 | 1 | -12/+14 |
| | |||||
* | Integrate into new account button. | Srinivasa Ragavan | 2010-03-14 | 1 | -1/+1 |
| | |||||
* | Integrate account assistant wizard to anjal style. | Srinivasa Ragavan | 2010-03-14 | 1 | -1/+1 |
| | |||||
* | Integrate anjal's account capplet lib in start up wizard. | Srinivasa Ragavan | 2010-03-14 | 2 | -2/+23 |
| | |||||
* | Some more directories relocated on windows | Fridrich Strba | 2010-03-11 | 1 | -0/+1 |
| | |||||
* | Work around recent GTK+ deprecations. | Matthew Barnes | 2010-03-05 | 2 | -0/+8 |
| | |||||
* | Bug #610327 - Proxy login doesn't show folder list | Bharath Acharya | 2010-03-05 | 1 | -1/+2 |
| | |||||
* | Bug #601551 - [PST] evolution crashed with SIGSEGV | Milan Crha | 2010-02-25 | 1 | -3/+11 |
| | |||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2010-02-20 | 1 | -6/+32 |
| | |||||
* | Bug 609982 - Avoid unnecessary prompts when marking folders as read | Matthew Barnes | 2010-02-17 | 1 | -93/+120 |
| | |||||
* | [itip-formatter] Show reason of failed calendar open | Milan Crha | 2010-02-12 | 1 | -8/+21 |
| | |||||
* | Bug #604522 - Mouse wheel scroll doesn't work above inline images | Milan Crha | 2010-02-11 | 1 | -0/+25 |
| | |||||
* | Fix some dead assignments. | Matthew Barnes | 2010-02-08 | 1 | -2/+2 |
| | |||||
* | Add more missing linker flags. | Matthew Barnes | 2010-02-08 | 1 | -0/+1 |
| | |||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2010-02-08 | 6 | -257/+286 |
| | |||||
* | Move some ESource-plugin common code to e-plugin-util.h/.c | Milan Crha | 2010-02-04 | 12 | -1257/+201 |
| | |||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2010-01-31 | 7 | -32/+32 |
| | |||||
* | Revert "Without this evo 2.28.2 will not link/run at all" | Matthew Barnes | 2010-01-29 | 1 | -1/+0 |
| | | | | | | | This reverts commit 013ce5b70e85d6c9008cebd1d5efbe87a539d445. Looks like it was meant for gnome-2-28 branch. In any case it contains unresolved merge conflicts which breaks compilation. | ||||
* | Without this evo 2.28.2 will not link/run at all | Fridrich Strba | 2010-01-28 | 1 | -0/+1 |
| | | | | | | The change is needed: 1) To export the right symbols from the right dummy import library so that the loader does not look for symbols where they are not 2) Export that comp_editor_registry using a getter function for win32 so that we don't have to decorate the data string so that the autoexport works again | ||||
* | Bug #607776 - Crash in image-inline.c:size_allocate_cb | Milan Crha | 2010-01-28 | 1 | -0/+9 |
| | |||||
* | Make authentication functionality available | Gustavo Noronha Silva | 2010-01-27 | 7 | -7/+7 |
| | | | | | | | This involves renaming the calendar auth-related functions to have a prefix, and shipping the headers. Part of https://bugzilla.gnome.org/show_bug.cgi?id=608175 | ||||
* | Coding style and whitespace cleanups. | Matthew Barnes | 2010-01-23 | 1 | -30/+38 |
| | |||||
* | Add a EShellWindow::shell-view-created signal. | Matthew Barnes | 2010-01-23 | 1 | -5/+17 |
| | | | | | | | | | | | | | The signal uses the name of the newly created shell view as the detail, so for example "shell-view-created::mail" is emitted when the "mail" view is created. Also, add e_shell_window_peek_shell_view() to obtain a shell view if it exists but without instantiating it. Using these new tools, teach the templates plugin to wait for the user to switch to the "mail" view before connecting to its "update-actions" signal. Previously is was instantiating the "mail" view itself. | ||||
* | Bug #603480 - [bbdb] Traverse lists in destinations properly | Milan Crha | 2010-01-19 | 1 | -5/+21 |
| | |||||
* | Bug #603480 - [bbdb] Crash on unref of uninitialized memory | Milan Crha | 2010-01-19 | 1 | -6/+7 |
| | | | | after address book error | ||||
* | Remove dead assignments found by clang. | Matthew Barnes | 2010-01-16 | 15 | -61/+17 |
| | |||||
* | Bug 606449 - empty mail-notification popups | Lucian Langa | 2010-01-09 | 1 | -3/+5 |
| | |||||
* | Bug 598305 - Use Exif data to rotate inlined photos | Matthew Barnes | 2010-01-09 | 1 | -1/+80 |
| | |||||
* | Bug #606340 - Crash on non-utf8 letter in mail folder name | Milan Crha | 2010-01-08 | 1 | -32/+14 |
| | |||||
* | Bug 606250 - Remove usage of deprecated GTK+ symbols | Matthew Barnes | 2010-01-08 | 2 | -3/+3 |
| | | | | Several GtkWidget macros were recently deprecated. | ||||
* | Bug #603469 - Crash in contacts-map with no Home address filled | Cedric Bosdonnat | 2010-01-07 | 1 | -1/+13 |
| | | | | | | There was some confusion between the query using E_CONTACT_ADDRESS and the address used. Now the first of the following is shown in the map: Home, Work, Other. | ||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2010-01-05 | 2 | -9/+25 |
| | |||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2010-01-04 | 1 | -2/+8 |
| | |||||
* | Compiler and linker flag cleanups. | Matthew Barnes | 2009-12-28 | 37 | -55/+107 |
| | |||||
* | Bug #329693 - Add contexts to translated "None" words | Milan Crha | 2009-12-24 | 3 | -5/+9 |
| | |||||
* | Bug 604822 - Drop more alert titles | Paul Bolle | 2009-12-20 | 3 | -4/+2 |
| | | | | | Drop all alert titles to be found in *.error.xml. HIG suggests alerts do not have a title. | ||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2009-12-20 | 1 | -3/+2 |
| | |||||
* | Bug #603701 - Don't treat 4 byte values as DDWORDs | Paul Bolle | 2009-12-18 | 1 | -12/+12 |
| | | | | | The values of PT_LONG and PT_BOOLEAN MAPI tags are 4 byte wide so they should be accessed as DWORDs. | ||||
* | Bug #359755 - Do not fetch content of a CalDAV calendar when given it | Milan Crha | 2009-12-16 | 1 | -17/+62 |
| | |||||
* | Make the mail folder cache a proper GObject | Jonathon Jongsma | 2009-12-16 | 1 | -1/+2 |
| | | | | | | | | | | | mail-folder-cache previously was a bit of a pseudo object (sort of a singleton) that operated on some file static data. This commit re-factors things so that it is a proper class named MailFolderCache. At the moment, this doesn't gain us much, but in the future, it will allow us to add signals, etc so that we can de-couple a lot of the interdependencies in here. This is essentially a pre-requisite to splitting up a lot of the mail backend stuff. https://bugzilla.gnome.org/show_bug.cgi?id=604627 | ||||
* | Bug #603342 - Memory leak fixes | Milan Crha | 2009-12-15 | 1 | -0/+1 |
| | |||||
* | Bug #604512 - Calendar publishing tab misses button label | Milan Crha | 2009-12-15 | 1 | -4/+6 |
| | |||||
* | Bug #604182 - Hide variable used only with HAVE_LIBNOTIFY | Milan Crha | 2009-12-11 | 1 | -0/+2 |
| | |||||
* | Bug #499322 - Use extension for "Save as" suggested file name | Milan Crha | 2009-12-10 | 2 | -2/+2 |
| | |||||
* | Bug #591938 - Update translator's comments | Milan Crha | 2009-12-10 | 1 | -1/+5 |
| | |||||
* | Bug #604182 - Do not block UI with publish-calendar messages | Milan Crha | 2009-12-10 | 1 | -6/+113 |
| | |||||
* | Bug #359755 - Support for CalDAV collections | Milan Crha | 2009-12-08 | 4 | -9/+1436 |
| | |||||
* | Port all error code to use GObject-ified EAlert / EAlertDialog | Jonathon Jongsma | 2009-12-08 | 14 | -19/+19 |
| | | | | | | The changes are mainly including the e-alert-header.h header instead of just e-alert.h. This allows us to include e-alert.h in non-UI situations when necessary. | ||||
* | Bug #603061 - Use .ics for temp vcalendar files | Paul Bolle | 2009-12-02 | 1 | -2/+2 |
| | |||||
* | Expand the EMailReader interface so it's easier to use. | Matthew Barnes | 2009-12-02 | 7 | -62/+47 |
| | | | | | | | | Adds the following methods: CamelFolder * (*get_folder) (EMailReader *reader); const gchar * (*get_folder_uri) (EMailReader *reader); GPtrArray * (*get_selected_uids) (EMailReader *reader); | ||||
* | Kill message_list_free_uids(). | Matthew Barnes | 2009-12-02 | 3 | -3/+6 |
| | | | | Use em_utils_uids_free() instead. | ||||
* | Merge bits and pieces of the anjal-evo-2-30 branch. | Matthew Barnes | 2009-12-01 | 7 | -25/+32 |
| | |||||
* | Rename EError to EAlert to match general use better | Jonathon Jongsma | 2009-12-01 | 24 | -65/+53 |
| | | | | | | | | | | The EError mechanism is used both for error dialogs as well as basic alerts or user prompts, so we should give it a more general name which matches this use. This patch also cleans up a few includes of e-alert.h (formerly e-error.h) that were not actually being used. https://bugzilla.gnome.org/show_bug.cgi?id=602963 | ||||
* | port plugins to use new EError API | Jonathon Jongsma | 2009-12-01 | 10 | -32/+67 |
| | | | | https://bugzilla.gnome.org/show_bug.cgi?id=602963 | ||||
* | Rewrite champlain-gtk and geoclue detection. | Matthew Barnes | 2009-11-29 | 1 | -7/+8 |
| | | | | | | | Disabling desktop integration features must be explicit. If experimental plugins are enabled and unless --disable-contacts-map is given, configuration will fail if champlain-gtk or geoclue is missing. | ||||
* | Coding style and whitespace cleanups. | Matthew Barnes | 2009-11-29 | 4 | -12/+9 |
| | |||||
* | Bug #361156 - contacts-map plugin | Cedric Bosdonnat | 2009-11-27 | 5 | -0/+396 |
| | | | | | Add a map showing the location of contacts when possible. It's disabled at the moment. | ||||
* | Bug #602177 - Plug leaks. Fix race. | Paul Bolle | 2009-11-26 | 1 | -99/+55 |
| | |||||
* | Bug #598166 - All Day Meeting String Improvement | Milan Crha | 2009-11-26 | 3 | -51/+77 |
| | |||||
* | Bug 602625 - Typos in translation messages | Matthew Barnes | 2009-11-22 | 1 | -3/+3 |
| | | | | Caused by libglade to GtkBuilder migration. | ||||
* | Remove the last traces of libglade. | Matthew Barnes | 2009-11-21 | 1 | -1/+0 |
| | |||||
* | Add e_attachment_store_load_async(). | Matthew Barnes | 2009-11-20 | 1 | -19/+22 |
| | | | | | | | This is a convenience function for adding multiple attachments to a store and loading them concurrently. Also included: e_attachment_store_load_finish() | ||||
* | Bug #601517 - Accept/decline options are missing on event right click | Milan Crha | 2009-11-18 | 1 | -1/+1 |
| | |||||
* | Remove unused files after GtkBuilder merge | Milan Crha | 2009-11-18 | 8 | -2713/+0 |
| | |||||
* | Remove markup from translatable strings in ui files | Claude Paroz | 2009-11-17 | 7 | -29/+57 |
| | | | | | | GTKBuilder format allows to separate markup from translatable content. Whenever possible, this should be preferred so as there is less content to translate and less error opportunities. | ||||
* | Bug 360461 - Do not hardcode invisible_char in ui files | Claude Paroz | 2009-11-17 | 6 | -9/+0 |
| | |||||
* | Bug 589153 - Use GtkBuilder instead of libglade | Matthew Barnes | 2009-11-17 | 52 | -4957/+6609 |
| | |||||
* | EWebView popup menu enhancements. | Matthew Barnes | 2009-11-14 | 1 | -7/+19 |
| | | | | Bumps the GtkHtml dependency to 3.29.2 for gtk_html_unselect_all(). | ||||
* | Bug 601626 - pst-import missing link to libeutil | Travis Reitter | 2009-11-12 | 1 | -0/+1 |
| | |||||
* | More build failures due to missing internal lib dependencies | Jonathon Jongsma | 2009-11-12 | 3 | -0/+3 |
| | |||||
* | Use EVOLUTION_CALENDAR_CFLAGS instead of EVOLUTION_MAIL_CFLAGS | Tor Lillqvist | 2009-11-11 | 1 | -1/+1 |
| | | | | | The code uses ical stuff and the libical CFLAGS are present in EVOLUTION_CALENDAR_CFLAGS but not EVOLUTION_MAIL_CFLAGS. | ||||
* | Enable building without Canberra-GTK | Tor Lillqvist | 2009-11-11 | 1 | -0/+9 |
| | |||||
* | Kill more redundant save dialogs and related utilities. | Matthew Barnes | 2009-11-11 | 2 | -92/+81 |
| | |||||
* | EMFormat plugins should always be enabled. | Matthew Barnes | 2009-11-10 | 3 | -3/+6 |
| | | | | | | Marks them as "system plugins" so they're not shown in Plugin Manager. This is a temporary fix until I can rework EMFormat to use GTypeModule extensions instead of EPlugins. | ||||
* | Add zooming and drag-and-drop to the plugin. | Matthew Barnes | 2009-11-10 | 2 | -28/+138 |
| | | | | A bunch of crusty old code in em-format-html-display.c falls out. | ||||
* | Prototype an inline image plugin. | Matthew Barnes | 2009-11-10 | 3 | -0/+373 |
| | | | | Uses GtkImageView to display the image. | ||||
* | Bug 600926 - Fails to build due to missing dependencies | Jonathon Jongsma | 2009-11-10 | 5 | -0/+6 |
| | |||||
* | Kill more redundant save functions. | Matthew Barnes | 2009-11-08 | 2 | -56/+147 |
| | |||||
* | Bug #482327 - Save attached calendar with multiple items easily | Milan Crha | 2009-11-07 | 1 | -1/+32 |
| | |||||
* | Build filename using g_build_filename instead of hardcoding forward-slash | Tobias Mueller | 2009-11-06 | 1 | -2/+4 |
| | |||||
* | Quote filename during restore to prevent user assisted arbitrary code execution | Tobias Mueller | 2009-11-06 | 1 | -1/+5 |
| | | | | Fixes bug 540516. | ||||
* | Bug #557505 - [bbdb] hangs and is unresponsive | Milan Crha | 2009-11-04 | 3 | -58/+229 |
| | | | | Reverted some parts of bug #599199 and did the same differently | ||||
* | Bug #464400 - New mail notify should display sender and subject | Milan Crha | 2009-10-31 | 1 | -5/+57 |
| | |||||
* | Bug #583450 - [prefer-plain] Ability to hide html attachments | Milan Crha | 2009-10-30 | 1 | -12/+38 |
| | |||||
* | Bug #570835 - Custom e-mail headers inserted with double column | Milan Crha | 2009-10-30 | 1 | -18/+16 |
| | |||||
* | Bug #561843 - Properly check for filename being set, to not crash | Milan Crha | 2009-10-30 | 1 | -1/+1 |
| | |||||
* | Bug #552727 - Flooded by spam checking errors if bogofilter not installed | Milan Crha | 2009-10-28 | 2 | -18/+69 |
| | |||||
* | Bug #550049 - Disable Mark messages as read actions when unusable | Milan Crha | 2009-10-28 | 1 | -1/+95 |
| | |||||
* | Cleanup and rename filter classes. | Matthew Barnes | 2009-10-27 | 1 | -2/+2 |
| | |||||
* | Prefer G_N_ELEMENTS over sizeof calculations. | Matthew Barnes | 2009-10-27 | 1 | -2/+2 |
| | |||||
* | Prefer GLib mutexes over pthread mutexes. | Matthew Barnes | 2009-10-27 | 1 | -31/+30 |
| | |||||
* | Bug #599199 - Hangs regularly when synchro with pidgin is activated | Milan Crha | 2009-10-27 | 3 | -35/+41 |
| | | | | | | | The sync is done only once on idle after start. The method of checking for buddy list changes is done by md5 checksum now, as the pidgin start/stop changed file time, which was the old method of detecting changes. Also not using getenv("HOME"), but g_get_home_dir() instead. | ||||
* | Coding style and whitespace cleanups. | Matthew Barnes | 2009-10-24 | 2 | -5/+5 |
| | |||||
* | Bug #575208 - Use complete template message with all attachments | Milan Crha | 2009-10-24 | 1 | -61/+9 |
| | |||||
* | Bug 599245 - Use bitwise AND instead of logical AND for checking flags | Thomas Andersen | 2009-10-22 | 1 | -2/+2 |
| | |||||
* | Bug 480361 - Useful action when clicking on a mail notification | Matthew Barnes | 2009-10-21 | 1 | -39/+80 |
| | |||||
* | Bug #470291 - [prefer-plain] Be able to show HTML only messages | Milan Crha | 2009-10-16 | 1 | -34/+65 |
| | |||||
* | Bug #322261 - vCalendar replies are sent out using the default account | Milan Crha | 2009-10-16 | 2 | -9/+14 |
| | |||||
* | Bug #329710 - [PublishCal] 'Enable' button should update on change | Milan Crha | 2009-10-15 | 1 | -13/+19 |
| | |||||
* | Bug #373297 - Option for autocomplete in address book preferences | Milan Crha | 2009-10-15 | 2 | -2/+43 |
| | |||||
* | Bug #523335 - [mail-to-task] Enhancements | Milan Crha | 2009-10-15 | 1 | -6/+54 |
| | |||||
* | Bug #573878 - [face] Plugin is unusable | Milan Crha | 2009-10-15 | 5 | -85/+450 |
| | |||||
* | Bug #597123 - Composer's Send Options doesn't work | Milan Crha | 2009-10-14 | 2 | -22/+85 |
| | |||||
* | Bug #594471 - Shouldn't call e_error_new/run with NULL 'parent' | Milan Crha | 2009-10-13 | 12 | -46/+65 |
| | |||||
* | Bug #456240 - Move exchange plugin to exchange package | Milan Crha | 2009-10-02 | 30 | -12371/+0 |
| | | | | Also added gtkhtml-editor and libgnomecanvas-2.0 to evolution-plugin.pc | ||||
* | Build with GTK_DISABLE_DEPRECATED and fix resulting breakage. | Matthew Barnes | 2009-10-02 | 1 | -0/+2 |
| | |||||
* | Bug 596848 - Use per-target CPPFLAGS in automake files | H.Habighorst | 2009-10-01 | 38 | -271/+371 |
| | |||||
* | Trim unused or unnecessary bits from the import framework. | Matthew Barnes | 2009-09-26 | 2 | -1/+2 |
| | |||||
* | Overlooked compiler warnings from exchange-operations plugin | Milan Crha | 2009-09-25 | 2 | -2/+2 |
| | |||||
* | Bug #593609 - Have buildable exchange-operations plugin again | Milan Crha | 2009-09-25 | 29 | -3805/+1574 |
| | |||||
* | Fix duplicate symbols in Glade files. | Matthew Barnes | 2009-09-25 | 4 | -4/+4 |
| | |||||
* | Rework optional plugin detection to fix distcheck. | Matthew Barnes | 2009-09-24 | 1 | -1/+1 |
| | |||||
* | Remove trailing whitespaces | Milan Crha | 2009-09-23 | 2 | -2/+2 |
| | |||||
* | GN-bug #593617 - GroupWise plugins are not built | Milan Crha | 2009-09-23 | 20 | -780/+789 |
| | |||||
* | Kill the ipod-sync plugin, along with the HAL dependency. | Matthew Barnes | 2009-09-22 | 10 | -1539/+0 |
| | |||||
* | Goodbye libgnome and libgnomeui!! | Matthew Barnes | 2009-09-19 | 10 | -6/+24 |
| | |||||
* | Fix crashes in mail-to-task plugin. | Matthew Barnes | 2009-09-13 | 1 | -14/+9 |
| | |||||
* | Bug 594863 - Message body doesn't allow right click pop up menu | Matthew Barnes | 2009-09-13 | 1 | -0/+16 |
| | |||||
* | Bug 595002 - There should not be a space before ? in strings | Matthew Barnes | 2009-09-13 | 2 | -4/+4 |
| | |||||
* | Bug #582780 - Use proxy in Google calendar setup plugin | Alexander Klepikov | 2009-09-11 | 1 | -0/+20 |
| | |||||
* | Finish killing Bonobo. | Matthew Barnes | 2009-09-09 | 1 | -2/+3 |
| | |||||
* | Bug 594284 - FTBFS: missing links | Diego Escalante Urrelo | 2009-09-06 | 9 | -0/+11 |
| | |||||
* | Get the mailing-list-actions plugin working. | Matthew Barnes | 2009-09-05 | 6 | -180/+365 |
| | | | | | | | Also get mail-to-task working for the message browser window. Came up with a new technique for managing actions and action groups in the process. Also gave the EMailReader interface an "update-actions" signal for plugins to connect to. | ||||
* | Remove some obsolete utility functions. | Matthew Barnes | 2009-09-05 | 4 | -5/+5 |
| | |||||
* | Make dbus-glib mandatory. | Matthew Barnes | 2009-09-05 | 2 | -24/+5 |
| | |||||
* | Kill the default parent window hack in e-error.c. | Matthew Barnes | 2009-09-05 | 1 | -1/+6 |
| | | | | | | Fix as many cases that relied on it as I could find, but there may be more cases out there. They should be fixed too. Passing a NULL parent window to e_error_new() is illegal and will emit a runtime warning. | ||||
* | Bug 593442 - plugin-manager: HIG-ify main screen | Paul Bolle | 2009-09-04 | 1 | -12/+13 |
| | | | | | | The main screen of the plugin-manager is a bit sloppy. HIG-ify it. Signed-off-by: Paul Bolle <pebolle@tiscali.nl> | ||||
* | Get the "save-calendar" plugin working. | Matthew Barnes | 2009-09-04 | 7 | -54/+196 |
| | | | | Based on initial work by Milan Crha. | ||||
* | Relax the EBinding API to reduce GObject casting. | Matthew Barnes | 2009-09-02 | 1 | -4/+4 |
| | | | | | Also make it more fault-tolerant by warning about non-existent property names instead of just crashing. | ||||
* | Get the publish-calendar plugin working. | Milan Crha | 2009-09-02 | 4 | -50/+67 |
| | |||||
* | Kill debug messages in default-mailer plugin. | Matthew Barnes | 2009-09-02 | 1 | -3/+0 |
| | |||||
* | Cleanup up templates using EPluginUI callback feature. | Matthew Barnes | 2009-09-02 | 2 | -29/+14 |
| |