Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Clean up GalView and related classes. | Matthew Barnes | 2010-03-11 | 18 | -381/+600 |
| | |||||
* | Bug 612374 - Build failure due to recent GTK+ deprecations | Matthew Barnes | 2010-03-10 | 2 | -4/+13 |
| | |||||
* | Update win32 directory relocation and some consistency cleanup | Fridrich Strba | 2010-03-10 | 2 | -4/+3 |
| | |||||
* | ECalendar header cleanup. | Matthew Barnes | 2010-03-10 | 2 | -81/+80 |
| | |||||
* | Bug 610023 - Does not restore "Current View" on startup | Matthew Barnes | 2010-03-10 | 2 | -0/+12 |
| | | | | | Adds a GalViewInstance::loaded signal so EShellView gets notified when the initial view is loaded. | ||||
* | Remove a long lived win32 hack | Fridrich Strba | 2010-03-06 | 1 | -4/+0 |
| | | | | | It seems that the dummy libraries are not needed anymore on windows nowadays. | ||||
* | Work around recent GTK+ deprecations. | Matthew Barnes | 2010-03-05 | 19 | -1/+167 |
| | |||||
* | Fix a misspelled icon name. | Matthew Barnes | 2010-03-04 | 1 | -1/+1 |
| | |||||
* | Filtering out g_chmod on windows because it makes no sense there | Fridrich Strba | 2010-03-03 | 1 | -0/+2 |
| | |||||
* | Bug #610824 - Contacts list view column width doesn't follow header | Milan Crha | 2010-02-24 | 1 | -1/+5 |
| | |||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2010-02-20 | 1 | -1/+0 |
| | |||||
* | Fix ETable/ETree signal signatures. | Matthew Barnes | 2010-02-19 | 10 | -109/+110 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | To avoid another case like bug #587014, add GSignalAccumulator functions to all ETable and ETree signals that return a flag to indicate the signal has been handled. See commit e9dc381d3ace3404d0eafe94eb6da3b9a843abb8 for an example of the kind of problems not having a GSignalAccumulator can cause. Signals changed: ETree::click ETree::right-click ETree::white-space-event ETable::click ETable::key-press ETable::right-click ETable::start-drag ETable::white-space-event ETableItem::click ETableItem::right-click ETableItem::start-drag ETableGroup::click ETableGroup::key-press ETableGroup::right-click ETableGroup::start-drag | ||||
* | Bug 587014 - Magic space does not work as expected | Matthew Barnes | 2010-02-18 | 4 | -8/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | Neither ETree::key-press nor ETableItem::key-press signal definitions specify a GSignalAccumulator that terminates the signal emission when a handler returns TRUE, and Evolution 2.29 connects multiple handlers to ETree::key-press. When the space key is pressed, the first handler implements the magic space bar behavior and returns TRUE, which should terminate signal emission but doesn't because there's no accumulator function on the signal. So the second handler runs and checks for other keys besides space. It returns FALSE since it didn't handle the key press. End result: emission site gets back FALSE (from the second handler) as the return value, so it thinks the key press was not handled at all and invokes the fallback handler -- e_selection_model_toggle_single_row() -- which -unselects- the newly selected row, making it appear the next unread message was never selected. Several other ETable-related signals that return "handled" flags also lack GSignalAccumulator functions. I've made a note to myself to fix those as well. | ||||
* | Revert "Bug 587014 - Magic space does not work as expected" | Matthew Barnes | 2010-02-18 | 1 | -0/+1 |
| | | | | | | This reverts commit 2ee273db7c3175d323e55d87432961cfa94e8be1. That commit caused the side-effect reported in bug #610251. | ||||
* | Forgot to disconnect a signal handler in EAttachmentButton. | Matthew Barnes | 2010-02-18 | 1 | -3/+16 |
| | | | | | | The "deactivate" handler for EAttachmentButton's popup menu was never disconnected, and I suspect it may be getting invoked after the button has been finalized. | ||||
* | Bug 609042 - Convert quoted-printing to UTF-8 when copying to clipboard | Matthew Barnes | 2010-02-17 | 1 | -1/+1 |
| | |||||
* | Fix command-line import crasher. | Matthew Barnes | 2010-02-12 | 1 | -0/+1 |
| | | | | | | GtkAssistant's initial reference is floating, so if command-line import fails to find a suitable importer, sink the reference before finalizing the GtkAssistant. | ||||
* | Bug #593700 - Opens folder on top | Milan Crha | 2010-02-11 | 2 | -16/+46 |
| | |||||
* | Add DnD support to e-selection.c. | Matthew Barnes | 2010-02-09 | 1 | -13/+10 |
| | | | | | | Avoid listing calendar and directory targets explicitly, so that e-selection.c contains the one and only master list. Still need to figure out how to centralize "text/x-source-vcard". | ||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2010-02-08 | 11 | -103/+239 |
| | |||||
* | Fix a compiler warning. | Matthew Barnes | 2010-02-07 | 1 | -1/+0 |
| | |||||
* | Bug 602416 - Changing shell views emits many runtime warnings | Matthew Barnes | 2010-02-07 | 4 | -8/+22 |
| | |||||
* | Implement account-wide search scope in mail. | Matthew Barnes | 2010-02-07 | 1 | -0/+3 |
| | | | | Also, let EShellSearchbar handle search state persistence. | ||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2010-01-31 | 61 | -377/+377 |
| | |||||
* | Don't show total attachment size if it's zero. | Matthew Barnes | 2010-01-29 | 1 | -4/+9 |
| | |||||
* | Revise some comments in e-attachment.c. | Matthew Barnes | 2010-01-29 | 1 | -6/+6 |
| | |||||
* | Fix include paths for some files to also work when installed | Gustavo Noronha Silva | 2010-01-27 | 2 | -2/+2 |
| | | | | Part of https://bugzilla.gnome.org/show_bug.cgi?id=608175 | ||||
* | Coding style and whitespace cleanups. | Matthew Barnes | 2010-01-23 | 3 | -38/+76 |
| | |||||
* | Bug #606301 - Slow sort by subject | Milan Crha | 2010-01-20 | 9 | -56/+242 |
| | |||||
* | Add focus tracking to EMailBrowser. | Matthew Barnes | 2010-01-20 | 1 | -0/+31 |
| | |||||
* | Bug 607234 - Open received attachments as read-only | Matthew Barnes | 2010-01-19 | 1 | -0/+18 |
| | |||||
* | Give all preview panes a search bar. | Matthew Barnes | 2010-01-18 | 7 | -0/+2554 |
| | | | | Use Shift+Ctrl+F as the accelerator for consistency with the mailer. | ||||
* | Improve clipboard behavior. | Matthew Barnes | 2010-01-18 | 5 | -14/+315 |
| | | | | | | | | | | | | | | | | | | | | | Add "copy-target-list" and "paste-target-list" to the ESelectable interface. These are underutilized for the moment, but will eventually be used to help integrate drag-and-drop support into ESelectable. Add cut and paste support to EWebView, along with a new "editable" property and new clipboard signals "copy-clipboard", "cut-clipboard" and "paste-clipboard". In EFocusTracker, listen for "owner-changed" signals from the default clipboard as another trigger to update actions, particularly the Paste action. (Unfortunately this doesn't work for EWebView since GtkHtml implements its own clipboard.) In EMsgComposer, convert GtkhtmlEditor's clipboard methods to empty stubs, since EFocusTracker will now trigger EWebView's clipboard actions. Also, intercept EWebView::paste-clipboard signals and improve the interaction between the HTML editor and the attachment bar based on use cases in bug #603715. | ||||
* | Fix a potential uninitialized return value in e-timezone-dialog.c. | Matthew Barnes | 2010-01-16 | 1 | -5/+4 |
| | | | | Caught by the Clang Static Analyzer. | ||||
* | Remove dead assignments found by clang. | Matthew Barnes | 2010-01-16 | 22 | -101/+17 |
| | |||||
* | Fixes #606937 - void function should not have a return value. | Wang Xin | 2010-01-15 | 1 | -1/+1 |
| | |||||
* | Remove unused tooltip support from ECanvas/ETable/EText. | Matthew Barnes | 2010-01-15 | 10 | -471/+1 |
| | |||||
* | Remove unused ECell::show_tooltip method. | Matthew Barnes | 2010-01-15 | 6 | -400/+0 |
| | |||||
* | Remove dead ETableItem code. | Matthew Barnes | 2010-01-15 | 1 | -77/+0 |
| | |||||
* | Remove unused ECanvas functions. | Matthew Barnes | 2010-01-15 | 2 | -190/+3 |
| | |||||
* | Baby steps toward GSEAL compliance. | Matthew Barnes | 2010-01-14 | 17 | -286/+500 |
| | |||||
* | Bug 606250 - Remove usage of deprecated GTK+ symbols | Matthew Barnes | 2010-01-08 | 13 | -26/+26 |
| | | | | Several GtkWidget macros were recently deprecated. | ||||
* | Teach ETable to prefer themed icon names over pixbufs. | Matthew Barnes | 2010-01-07 | 9 | -357/+475 |
| | |||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2010-01-05 | 6 | -56/+158 |
| | |||||
* | Kill widgets/misc/e-colors.[ch]. | Matthew Barnes | 2010-01-05 | 3 | -134/+0 |
| | |||||
* | Kill e_popup_menu(). | Matthew Barnes | 2010-01-05 | 5 | -96/+9 |
| | | | | | The function is trivial and was only used from ETableHeaderItem. This also eliminates widgets/misc/e-gui-utils.[ch]. | ||||
* | Kill redundant RGB/HSV color conversion utilities. | Matthew Barnes | 2010-01-05 | 2 | -138/+17 |
| | | | | | Use gtk_rgb_to_hsv() instead of e_rgb_to_hsv(). Use gtk_hsv_to_rgb() instead of e_hsv_to_rgb(). | ||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2010-01-04 | 16 | -84/+170 |
| | |||||
* | ETableExtras cleanup. | Matthew Barnes | 2010-01-03 | 2 | -86/+144 |
| | |||||
* | Minor ETimezoneDialog cleanup. | Matthew Barnes | 2010-01-03 | 2 | -47/+33 |
| | |||||
* | Bug 361145 - Evolution hangs when formatting message - fixes part of it. | Chenthill Palanisamy | 2009-12-28 | 2 | -11/+7 |
| | |||||
* | Compiler and linker flag cleanups. | Matthew Barnes | 2009-12-28 | 2 | -0/+6 |
| | |||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2009-12-26 | 2 | -15/+24 |
| | |||||
* | Introduce ESelectable and EFocusTracker. | Matthew Barnes | 2009-12-26 | 11 | -15/+1322 |
| | | | | | | | | | | | | | | | | | | EFocusTracker tracks the input focus within a window and helps keep the sensitivity of "selectable" actions in the main menu up-to-date. Selectable actions include Cut, Copy, Paste, Select All and Delete. EFocusTracker has built-in support for widgets that implement the GtkEditable interface such as GtkEntry and GtkTextView. It also supports custom widgets that implement the ESelectable interface, which is a subset of GtkEditable and can apply to anything that displays selectable content (esp. tree views and ETables). This commit integrates EFocusTracker with EShellWindow, CompEditor, EMsgComposer, and ESignatureManager. It also bumps the GtkHTML requirement to 2.29.5 to utilize the new GtkhtmlEditor:html constructor property. | ||||
* | Bug #329693 - Add contexts to translated "None" words | Milan Crha | 2009-12-24 | 5 | -9/+11 |
| | |||||
* | Bug #605192 - New memo window has start date as None | Milan Crha | 2009-12-23 | 1 | -1/+1 |
| | |||||
* | Bug #593896 - Menu > Search > Find now is always enabled (again) | Milan Crha | 2009-12-21 | 1 | -4/+4 |
| | |||||
* | Bug 596947 - Calendar view forgets memo pane height | Matthew Barnes | 2009-12-20 | 2 | -13/+151 |
| | |||||
* | Bug #603972 - Proper title for dialog | Paul Bolle | 2009-12-10 | 1 | -1/+1 |
| | | | | Use proper title for e_table_field_chooser_dialog | ||||
* | Bug #591938 - Update translator's comments | Milan Crha | 2009-12-10 | 1 | -0/+4 |
| | |||||
* | Kill ETableScrolled. | Matthew Barnes | 2009-12-08 | 9 | -1377/+456 |
| | | | | | ETableScrolled is nothing but a GtkScrolledWindow containing an ETable. It adds nothing of value and actually makes customizing ETable harder. | ||||
* | Kill ETreeScrolled. | Matthew Barnes | 2009-12-08 | 3 | -307/+0 |
| | | | | | | | Kill ETreeScrolled and convert MessageList to an ETree subclass. ETreeScrolled is nothing but a GtkScrolledWindow containing an ETree. It adds nothing of value and actually makes customizing ETree harder. | ||||
* | Port all error code to use GObject-ified EAlert / EAlertDialog | Jonathon Jongsma | 2009-12-08 | 1 | -1/+1 |
| | | | | | | 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 603682 - Duplicate mnemonic in meeting window | Matthew Barnes | 2009-12-04 | 1 | -2/+2 |
| | |||||
* | Rename EError to EAlert to match general use better | Jonathon Jongsma | 2009-12-01 | 2 | -6/+5 |
| | | | | | | | | | | 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 widgets/ to use new EError API | Jonathon Jongsma | 2009-12-01 | 1 | -4/+4 |
| | | | | https://bugzilla.gnome.org/show_bug.cgi?id=602963 | ||||
* | Fix some details in our asynchronous functions. | Matthew Barnes | 2009-11-21 | 2 | -87/+33 |
| | | | | | | | | | | Don't unref the GAsyncResult in finish functions. Do it after calling g_simple_async_result_complete(). This allows the GAsyncReadyCallback to be optional, and we'll still clean up resources properly. Also, don't call g_simple_async_result_complete_in_idle() unless we're completing an operation from a separate thread, which we're not in any of the current cases. | ||||
* | Still tweaking pane position restoration. | Matthew Barnes | 2009-11-20 | 1 | -4/+14 |
| | | | | | | | | | My window maximization hack in EPaned works great if the top-level window has not been shown yet. But if it has, we've already missed the window state event we're listening for and so the pane position will not be restored properly. This commit fixes that. | ||||
* | Kill e_util_read_file(). | Matthew Barnes | 2009-11-20 | 1 | -11/+36 |
| | |||||
* | Add e_attachment_store_load_async(). | Matthew Barnes | 2009-11-20 | 2 | -24/+171 |
| | | | | | | | This is a convenience function for adding multiple attachments to a store and loading them concurrently. Also included: e_attachment_store_load_finish() | ||||
* | Bug #579599 - Let the Advanced Search work again | Milan Crha | 2009-11-19 | 1 | -0/+1 |
| | |||||
* | Bug #590127 - Define ETable::vertical-spacing style property | Milan Crha | 2009-11-18 | 2 | -5/+27 |
| | |||||
* | Prefer EWebView calls over direct GtkHTML calls. | Matthew Barnes | 2009-11-18 | 2 | -0/+27 |
| | |||||
* | Remove some redundancy from EABContactDisplay. | Matthew Barnes | 2009-11-18 | 1 | -1/+1 |
| | |||||
* | Remove markup from translatable strings in ui files | Claude Paroz | 2009-11-17 | 2 | -12/+24 |
| | | | | | | 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 | 1 | -1/+0 |
| | |||||
* | Bug 589153 - Use GtkBuilder instead of libglade | Matthew Barnes | 2009-11-17 | 31 | -3771/+3630 |
| | |||||
* | EWebView popup menu enhancements. | Matthew Barnes | 2009-11-14 | 4 | -128/+706 |
| | | | | Bumps the GtkHtml dependency to 3.29.2 for gtk_html_unselect_all(). | ||||
* | Further tweaks for the command-line importing. | Matthew Barnes | 2009-11-13 | 2 | -3/+7 |
| | | | | | Includes Bastien Nocera's patch to register our importable MIME types with the MIME database. | ||||
* | Bug #588093 - Allow import of local files from command line | Milan Crha | 2009-11-12 | 2 | -80/+496 |
| | |||||
* | Bug #601218 - Accepted meeting doesn't show attachments in calendar view | Milan Crha | 2009-11-10 | 1 | -3/+3 |
| | |||||
* | Kill e-cursor(s) (both of them). | Matthew Barnes | 2009-11-10 | 11 | -437/+10 |
| | |||||
* | Bug 601219 - Transient dialogs in composer window blocks main window | Matthew Barnes | 2009-11-10 | 2 | -0/+26 |
| | |||||
* | Bug 271836 - Incorrect signature for "model_cell_changed" signal handler | Li Yuan | 2009-11-09 | 1 | -1/+1 |
| | |||||
* | Convert some "Save As" actions to run asynchronously. | Matthew Barnes | 2009-11-08 | 1 | -1/+1 |
| | | | | | | | | | | This introduces e-shell-utils for miscellaneous utility functions that integrate with the shell or shell settings. First function is e_shell_run_save_dialog(), which automatically remembers the selected folder in the file chooser dialog. Also, kill some redundant save dialog functions, as well as some write-this-string-to-disk functions that block. | ||||
* | Move EActivity and subclasses to e-util. | Matthew Barnes | 2009-11-08 | 8 | -1309/+1 |
| | | | | | Planning to write some asynchronous utility functions in e-util that return EActivity objects. | ||||
* | Add a menu to the Forward toolbar button. | Matthew Barnes | 2009-10-28 | 3 | -0/+148 |
| | | | | | Allows users to choose different mail forwarding methods without navigating the main menu. Suggested by Ng Oon-Ee on evolution-list. | ||||
* | Prefer G_N_ELEMENTS over sizeof calculations. | Matthew Barnes | 2009-10-27 | 4 | -11/+4 |
| | |||||
* | Bug #204900 - The sort indication arrows cover up the icons in tab header | Milan Crha | 2009-10-27 | 1 | -15/+30 |
| | |||||
* | Coding style and whitespace cleanups. | Matthew Barnes | 2009-10-24 | 1 | -5/+5 |
| | |||||
* | Bug #248745 - Indent single mail in a threaded view too | Milan Crha | 2009-10-23 | 1 | -1/+1 |
| | |||||
* | Bug 599190 - Unable to drop attachments in the attachment bar | Matthew Barnes | 2009-10-23 | 1 | -1/+1 |
| | |||||
* | Bug #484839 - Sort, when in threading mode, properly | Milan Crha | 2009-10-23 | 2 | -0/+50 |
| | |||||
* | Bug #598631 - Add tooltip of "Ctrl+click to open a link" in buffer tagger | Milan Crha | 2009-10-21 | 1 | -26/+94 |
| | |||||
* | Bug #267749 - Week numbers are incorrect when the week starts on Sunday | Milan Crha | 2009-10-16 | 1 | -8/+13 |
| | |||||
* | Bug #411768 - Don't remove column by drag&drop out of a table header | Milan Crha | 2009-10-16 | 1 | -4/+0 |
| | |||||
* | Bug #404227 - Over-aggressive appointment editor date check | Milan Crha | 2009-10-16 | 1 | -1/+13 |
| | |||||
* | Bug #562512 - Make hyperlinks clickable in Memos, Tasks and Calendar | Milan Crha | 2009-10-16 | 3 | -0/+571 |
| | |||||
* | Fix error in comment. | Matthew Barnes | 2009-10-07 | 1 | -1/+1 |
| | |||||
* | Bug 593612 - Pane size restoration does not play nice with maximized windows | Matthew Barnes | 2009-10-07 | 1 | -0/+54 |
| | |||||
* | Bug 587014 - Magic space does not work as expected | Lucian Langa | 2009-10-04 | 1 | -1/+0 |
| | |||||
* | Bug 597224 - Cannot close preferences window with escape key | Lucian Langa | 2009-10-04 | 1 | -0/+8 |
| | |||||
* | Build with GTK_DISABLE_DEPRECATED and fix resulting breakage. | Matthew Barnes | 2009-10-02 | 1 | -1/+3 |
| | |||||
* | Bug 596848 - Use per-target CPPFLAGS in automake files | H.Habighorst | 2009-10-01 | 5 | -24/+43 |
| | |||||
* | Show import progress directly in the assistant window. | Matthew Barnes | 2009-09-26 | 1 | -77/+100 |
| | |||||
* | More import assistant cleanup. | Matthew Barnes | 2009-09-26 | 1 | -134/+153 |
| | |||||
* | Rename EShellImporter to EImportAssistant and move it to widgets. | Matthew Barnes | 2009-09-26 | 3 | -0/+966 |
| | |||||
* | Bug #593609 - Have buildable exchange-operations plugin again | Milan Crha | 2009-09-25 | 1 | -1/+0 |
| | |||||
* | Fix duplicate symbols in Glade files. | Matthew Barnes | 2009-09-25 | 1 | -2/+2 |
| | |||||
* | Bug #593633 - Runtime warnings trying to create a recurrence event | Milan Crha | 2009-09-24 | 1 | -0/+1 |
| | |||||
* | Disable gdk_event_get_graphics_expose() call in EMap. | Matthew Barnes | 2009-09-20 | 1 | -0/+8 |
| | | | | | | The function is deprecated in GTK+ now. Looks like it was just an optimization anyway -- the map seems to work fine without it -- but I left the logic intact in case I'm wrong. | ||||
* | Goodbye libgnome and libgnomeui!! | Matthew Barnes | 2009-09-19 | 1 | -0/+2 |
| | |||||
* | Remove a bunch of unused functions. | Matthew Barnes | 2009-09-15 | 7 | -583/+0 |
| | |||||
* | Bug 594863 - Message body doesn't allow right click pop up menu | Matthew Barnes | 2009-09-13 | 1 | -1/+4 |
| | |||||
* | Remove unused ETable files. | Matthew Barnes | 2009-09-09 | 12 | -1852/+0 |
| | |||||
* | Finish killing Bonobo. | Matthew Barnes | 2009-09-09 | 6 | -83/+1269 |
| | |||||
* | Relax the EBinding API to reduce GObject casting. | Matthew Barnes | 2009-09-02 | 5 | -30/+30 |
| | | | | | Also make it more fault-tolerant by warning about non-existent property names instead of just crashing. | ||||
* | Get EConfig and EEvent hooks working again. | Matthew Barnes | 2009-09-01 | 1 | -0/+6 |
| | | | | | | | | | | | | | There were a number of problems: - Walk the GType tree to find EPluginHook subclasses, instead of just registering the immediate children. - Some EConfig and EEvent subclasses were not being configured properly (particularly the mail and calendar subclasses). - Add preference window pages after the main loop starts to make sure all plugins and plugin hooks are installed first. | ||||
* | Fix widget include paths in public header files. | Matthew Barnes | 2009-08-31 | 3 | -3/+3 |
| | |||||
* | Coding style and whitespace cleanup. | Matthew Barnes | 2009-08-30 | 1 | -1/+1 |
| | |||||
* | Remove redundant "vertical view" functions. | Matthew Barnes | 2009-08-28 | 2 | -65/+27 |
| | |||||
* | Add vertical view to Memos and Tasks. | Matthew Barnes | 2009-08-28 | 1 | -0/+1 |
| | |||||
* | Add EPaned widget to generalize vertical view. | Matthew Barnes | 2009-08-28 | 3 | -0/+421 |
| | |||||
* | Fix return types to match the type of function | Kjartan Maraas | 2009-08-27 | 1 | -2/+2 |
| | |||||
* | Bug 511769 - Poor indication of when network is unavailable | Matthew Barnes | 2009-08-25 | 1 | -6/+28 |
| | |||||
* | Bug 359909 - "New" Button too small | Matthew Barnes | 2009-08-25 | 1 | -0/+25 |
| | |||||
* | Chip away at GSEAL compliance. | Matthew Barnes | 2009-08-17 | 1 | -9/+22 |
| | |||||
* | Fix compiler warnings and deprecated GTK+ API usage. | Matthew Barnes | 2009-08-16 | 2 | -4/+5 |
| | |||||
* | Bug #205137 - Configurable date formats in components | Milan Crha | 2009-08-12 | 2 | -64/+16 |
| | |||||
* | Bug #580895 - Kill libgnomeui/gnome-thumbnail.h | Milan Crha | 2009-08-11 | 1 | -0/+50 |
| | |||||
* | Compiler warning fixes (as part of bug #424078) | Milan Crha | 2009-08-11 | 1 | -1/+1 |
| | |||||
* | Add a FIXME comment to e-attachment.c | Matthew Barnes | 2009-08-11 | 1 | -0/+2 |
| | |||||
* | Seal up ESignature and add GObject properties. | Matthew Barnes | 2009-08-07 | 5 | -44/+61 |
| | |||||
* | Replace more "config" classes with property bindings. | Matthew Barnes | 2009-08-06 | 2 | -131/+222 |
| | |||||
* | Merge commit 'EVOLUTION_2_27_5' into kill-bonobo | Matthew Barnes | 2009-07-28 | 10 | -219/+39 |
|\ | |||||
| * | Coding style and whitespace cleanups. | Matthew Barnes | 2009-07-26 | 4 | -8/+8 |
| | | |||||
| * | Bug #589580 - Crashes when dragging an image to the contact editor | Milan Crha | 2009-07-24 | 1 | -7/+10 |
| | | |||||
| * | Fix Attachment bar size of Anjal. | Srinivasa Ragavan | 2009-07-24 | 4 | -4/+20 |
| | | |||||
| * | Use the right api to check for system timezone. | Chenthill Palanisamy | 2009-07-20 | 1 | -1/+8 |
| | | |||||
| * | Add API for getting task count. | Srinivasa Ragavan | 2009-07-20 | 2 | -1/+6 |
| | | |||||
| * | Fix a typo in Chen's prev commit. | Srinivasa Ragavan | 2009-07-20 | 1 | -1/+0 |
| | | |||||
| * | Kill some obsolete utility functions. | Matthew Barnes | 2009-07-19 | 2 | -203/+6 |
| | | |||||
| * | More whitespace cleanup. | Matthew Barnes | 2009-07-19 | 44 | -241/+239 |
| | | |||||
| * | Coding style and whitespace cleanups. | Matthew Barnes | 2009-07-18 | 1 | -2/+2 |
| | | |||||
| * | Search bar stuff for Anjal. | Srinivasa Ragavan | 2009-07-17 | 4 | -0/+82 |
| | | |||||
| * | Bug #266150 - In list view Delete option not working in menu and toolbar | Milan Crha | 2009-07-17 | 1 | -1/+1 |
| | | |||||
* | | Get GnomeCalendar and the a11y stuff building. | Matthew Barnes | 2009-07-28 | 4 | -1/+265 |
| | | |||||
* | | More whitespace cleanup. | Matthew Barnes | 2009-07-19 | 40 | -231/+231 |
| | | |||||
* | | Make errors in taskbar clickable. | Matthew Barnes | 2009-07-18 | 2 | -1/+6 |
| | | |||||
* | | Remove unused EActivity properties and subclasses. | Matthew Barnes | 2009-07-18 | 5 | -618/+0 |
| | | |||||
* | | Merge branch 'master' into kill-bonobo | Matthew Barnes | 2009-07-15 | 1 | -3/+1 |
|\| | |||||
| * | Add an environment variable to show all errors as intrusive | Chenthill Palanisamy | 2009-07-14 | 1 | -1/+20 |
| | | | | | | | | if needed. | ||||
| * | Bug 588277 – Unnecessary special-purpose configure flag | Matthew Barnes | 2009-07-14 | 1 | -3/+1 |
| | | |||||
| * | Fix excessive whitespace. | Matthew Barnes | 2009-07-13 | 125 | -566/+0 |
| | | |||||
* | | Fix excessive whitespace. | Matthew Barnes | 2009-07-14 | 134 | -594/+0 |
| | | |||||
* | | Merge branch 'master' into kill-bonobo | Matthew Barnes | 2009-07-11 | 2 | -1/+8 |
|\| | | | | | | | | | | | | | | | | | | | | | Conflicts: addressbook/util/addressbook.h calendar/gui/e-week-view-main-item.c configure.ac e-util/Makefile.am mail/em-account-editor.c mail/em-folder-selection-button.c shell/e-shell.c | ||||
| * | Bug #245723 - Show days with transparent events in italic | Milan Crha | 2009-07-09 | 1 | -1/+2 |
| | | | | | | | | Also reset the font style back to normal when done with drawing. | ||||
| * | Bug #525689 - Do not show all days as Sunday in a comp-editor | Milan Crha | 2009-07-03 | 1 | -0/+6 |
| | | |||||
* | | Add missing files. | Matthew Barnes | 2009-07-03 | 2 | -0/+497 |
| | | |||||
* | | Kill the last GtkOptionMenu instances. | Matthew Barnes | 2009-07-03 | 3 | -548/+2 |
| | | | | | | | | | | | | | | Wrote a new widget (ECharsetComboBox) to replace e-charset-picker.c. The widget provides a "charset" string property that allows us to bind to GConf keys (via EShellSettings). Moved e_charset_add_radio_actions() to e-util/e-charset.c. Updated Glade files, #include lines, etc. | ||||
* | | Fix merge issues in EMAccountEditor. | Matthew Barnes | 2009-07-02 | 2 | -85/+6 |
| | | |||||
* | | Merge branch 'master' into kill-bonobo | Matthew Barnes | 2009-07-01 | 5 | -16/+44 |
|\| | |||||
| * | Use AM_CPPFLAGS instead of INCLUDE in all Makefile.am. | Matthew Barnes | 2009-07-01 | 5 | -5/+5 |
| | | |||||
| * | Bug #245723 - Show days with transparent events in italic | Milan Crha | 2009-06-30 | 3 | -16/+36 |
| | | |||||
| * | Remove a weak pointer when disposing EAttachmentHandler. | Matthew Barnes | 2009-06-20 | 1 | -0/+18 |
| | | |||||
| * | Stop abusing forward declarations. | Matthew Barnes | 2009-06-19 | 2 | -5/+4 |
| | | |||||
| * | Use G_BEGIN_DECLS / G_END_DECLS macros. | Matthew Barnes | 2009-06-19 | 33 | -215/+66 |
| | | |||||
* | | Fix "make distcheck" errors and other build cleanups. | Matthew Barnes | 2009-07-01 | 5 | -5/+5 |
| | | |||||
* | | Radically reorganize source code. | Matthew Barnes | 2009-06-25 | 56 | -61/+61 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Collect all shell modules into a new top-level 'modules' directory: $(top_srcdir)/modules/addressbook $(top_srcdir)/modules/calendar $(top_srcdir)/modules/mail Nothing is allowed to link to these, not plugins nor other modules. THIS SOLVES BUG #571275 AND OPENS THE DOOR TO PORTING TO MAC OS X. - Mimic the libevolution-mail-shared library from master (except drop the "shared" suffix) and have libevolution-mail-importers and all mail-related plugins link to it. - Discard the a11y subdirectories and have the files live alongside their counterpart widgets. | ||||
* | | Merge commit 'EVOLUTION_2_27_3' into kill-bonobo | Matthew Barnes | 2009-06-20 | 3 | -4/+62 |
|\| | | | | | | | | | | | | | | | | | | | | | | | Conflicts: composer/e-composer-header-table.h composer/e-composer-header.c composer/e-composer-private.c configure.ac mail/em-account-editor.c po/POTFILES.in po/or.po widgets/misc/e-search-bar.c | ||||
| * | Bug 584902 – Disabled default account hides "From" in composer | Matthew Barnes | 2009-06-15 | 1 | -4/+43 |
| | | |||||
| * | Fix coding style. | Matthew Barnes | 2009-06-14 | 2 | -3/+3 |
| | | |||||
| * | Bug 585554 – Opening PDF attachment crashes in ↵ | Matthew Barnes | 2009-06-13 | 1 | -30/+17 |
| | | | | | | | | e_attachment_open_handle_error() | ||||
| * | Added couple of APIS for EAttachmentPaned to hide combo and get the | Srinivasa Ragavan | 2009-06-11 | 2 | -0/+19 |
| | | | | | | | | widget's container. | ||||
| * | Fix a runtime warning for zero-length attachments. | Matthew Barnes | 2009-06-09 | 1 | -4/+8 |
| | | |||||
| * | Whoops, forgot to remove a debug message. | Matthew Barnes | 2009-06-04 | 1 | -2/+0 |
| | | |||||
| * | Bug 572543 – Doesn't show correct application for pdf attachments | Matthew Barnes | 2009-06-04 | 2 | -6/+9 |
| | | | | | | | | | | | | This fix got dropped in the attachment rewrite. Also, ignore the application's NoDisplay setting when building the "open with" menu. That's mainly so "Document Viewer" shows up in the list. | ||||
| * | Anjal stuff's for Evo. | Srinivasa Ragavan | 2009-06-03 | 1 | -1/+6 |
| | | |||||
| * | Bug 581280 – Wrong attachment name in event | Matthew Barnes | 2009-06-03 | 2 | -1/+333 |
| | | |||||
| * | Fix more compiler warnings. | Matthew Barnes | 2009-06-02 | 1 | -1/+1 |
| | | |||||
| * | More code cleanup. | Matthew Barnes | 2009-06-02 | 75 | -318/+318 |
| | | |||||
| * | Bug 583991 – "Suggest automatic display of attachment" does not work | Matthew Barnes | 2009-05-29 | 1 | -0/+1 |
| | | |||||
| * | Whitespace cleanup. | Matthew Barnes | 2009-05-29 | 60 | -257/+257 |
| | | |||||
| * | Prefer GLib basic types over C types. | Matthew Barnes | 2009-05-29 | 200 | -3528/+3528 |
| | | |||||
| * | Remove trailing whitespace, again. | Matthew Barnes | 2009-05-29 | 263 | -320/+320 |
| | | |||||
* | | Remove a weak pointer when disposing EAttachmentHandler. | Matthew Barnes | 2009-06-20 | 1 | -0/+18 |
| | | |||||
* | | Stop abusing forward declarations. | Matthew Barnes | 2009-06-19 | 1 | -3/+2 |
| | | |||||
* | | Use G_BEGIN_DECLS / G_END_DECLS macros. | Matthew Barnes | 2009-06-18 | 28 | -176/+56 |
| | | |||||
* | | Clean up EImageChooser. | Matthew Barnes | 2009-06-15 | 2 | -342/+311 |
| | | |||||
* | | Bug 585554 – Opening PDF attachment crashes in ↵ | Matthew Barnes | 2009-06-13 | 1 | -30/+17 |
| | | | | | | | | e_attachment_open_handle_error() | ||||
* | | Remove ESearchBar and EFilterBar. | Matthew Barnes | 2009-06-09 | 4 | -2721/+0 |
| | | |||||
* | | Search bar improvements. | Matthew Barnes | 2009-06-09 | 3 | -0/+373 |
| | | | | | | | | | | Split the search entry into a new widget to manage hints (EHintedEntry). Let the search entry expand to use available horizontal space. | ||||
* | | Fix a runtime warning for zero-length attachments. | Matthew Barnes | 2009-06-04 | 1 | -4/+8 |
| | | |||||
* | | Whoops, forgot to remove a debug message. | Matthew Barnes | 2009-06-04 | 1 | -2/+0 |
| | | |||||
* | | Bug 572543 – Doesn't show correct application for pdf attachments | Matthew Barnes | 2009-06-04 | 2 | -6/+9 |
| | | | | | | | | | | | | This fix got dropped in the attachment rewrite. Also, ignore the application's NoDisplay setting when building the "open with" menu. That's mainly so "Document Viewer" shows up in the list. | ||||
* | | Use GtkEntry instead of EIconEntry in the main search bar. | Matthew Barnes | 2009-06-04 | 3 | -636/+0 |
| | | |||||
* | | Bug 581280 – Wrong attachment name in event | Matthew Barnes | 2009-06-03 | 2 | -1/+333 |
| | | |||||
* | | More code cleanup. | Matthew Barnes | 2009-06-02 | 69 | -309/+309 |
| | | |||||
* | | Fix more compiler warnings. | Matthew Barnes | 2009-06-02 | 1 | -1/+1 |
| | | |||||
* | | Bug 583991 – "Suggest automatic display of attachment" does not work | Matthew Barnes | 2009-05-29 | 1 | -0/+1 |
| | | |||||
* | | Whitespace cleanup. | Matthew Barnes | 2009-05-29 | 63 | -267/+267 |
| | | |||||
* | | Prefer GLib basic types over C types. | Matthew Barnes | 2009-05-27 | 200 | -3371/+3371 |
| | | |||||
* | | Merge branch 'master' into kill-bonobo | Matthew Barnes | 2009-05-27 | 319 | -536/+496 |
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: a11y/widgets/ea-combo-button.c a11y/widgets/ea-combo-button.h addressbook/gui/component/addressbook-component.c addressbook/gui/component/addressbook-component.h addressbook/gui/component/addressbook-view.c addressbook/gui/component/addressbook-view.h addressbook/gui/component/component-factory.c addressbook/gui/widgets/e-addressbook-view.c addressbook/gui/widgets/eab-contact-display.c addressbook/gui/widgets/eab-gui-util.h addressbook/gui/widgets/eab-menu.c addressbook/gui/widgets/eab-menu.h addressbook/gui/widgets/eab-popup-control.c addressbook/gui/widgets/eab-popup-control.h addressbook/gui/widgets/eab-popup.c addressbook/gui/widgets/eab-popup.h calendar/gui/cal-search-bar.c calendar/gui/calendar-commands.c calendar/gui/calendar-component.c calendar/gui/comp-editor-factory.c calendar/gui/comp-editor-factory.h calendar/gui/control-factory.c calendar/gui/dialogs/comp-editor.c calendar/gui/e-cal-component-memo-preview.c calendar/gui/e-cal-component-memo-preview.h calendar/gui/e-calendar-table.c calendar/gui/e-memo-table.c calendar/gui/e-memos.c calendar/gui/e-tasks.c calendar/gui/gnome-cal.c calendar/gui/gnome-cal.h calendar/gui/itip-bonobo-control.c calendar/gui/itip-bonobo-control.h calendar/gui/main.c calendar/gui/memos-component.c calendar/gui/memos-control.c calendar/gui/memos-control.h calendar/gui/migration.c calendar/gui/migration.h calendar/gui/tasks-component.c calendar/gui/tasks-control.c calendar/importers/main.c composer/Makefile.am composer/e-composer-header-table.c composer/e-composer-header.c composer/e-composer-header.h composer/e-composer-name-header.c composer/e-composer-private.c composer/e-composer-text-header.c composer/e-msg-composer.c composer/e-msg-composer.h e-util/e-corba-utils.h e-util/e-logger.c e-util/e-logger.h e-util/e-util-labels.c e-util/e-util-labels.h em-format/em-format.c mail/Makefile.am mail/e-mail-shell-migrate.c mail/em-account-editor.c mail/em-account-editor.h mail/em-composer-prefs.c mail/em-composer-utils.c mail/em-composer-utils.h mail/em-folder-browser.c mail/em-folder-tree-model.c mail/em-folder-tree.c mail/em-folder-tree.h mail/em-folder-utils.c mail/em-folder-utils.h mail/em-folder-view.c mail/em-format-html-display.c mail/em-format-html.c mail/em-mailer-prefs.c mail/em-mailer-prefs.h mail/em-message-browser.c mail/em-message-browser.h mail/em-network-prefs.h mail/em-popup.c mail/em-utils.c mail/importers/Makefile.am mail/mail-component-factory.c mail/mail-component.c mail/mail-config-factory.c mail/mail-config-factory.h mail/mail-config.c mail/mail-dialogs.glade mail/mail-types.h plugins/calendar-weather/calendar-weather.c plugins/mail-account-disable/mail-account-disable.c plugins/select-one-source/select-one-source.c po/POTFILES.in shell/e-component-registry.c shell/e-component-registry.h shell/e-component-view.c shell/e-component-view.h shell/e-corba-config-page.c shell/e-corba-config-page.h shell/e-shell-constants.h shell/e-shell-settings-dialog.c shell/e-shell-settings-dialog.h shell/e-shell-window-commands.c shell/e-shell-window.c shell/e-shell.h shell/e-sidebar.c shell/e-sidebar.h shell/e-user-creatable-items-handler.c shell/e-user-creatable-items-handler.h shell/es-menu.c shell/es-menu.h shell/evolution-component.h shell/evolution-config-control.c shell/evolution-config-control.h shell/evolution-listener.c shell/evolution-listener.h shell/evolution-shell-component-utils.c shell/evolution-shell-component-utils.h shell/importer/evolution-importer-client.c shell/importer/evolution-importer-client.h shell/importer/evolution-importer-listener.c shell/importer/evolution-importer-listener.h shell/importer/evolution-importer.c shell/importer/evolution-importer.h shell/importer/evolution-intelligent-importer.c shell/importer/evolution-intelligent-importer.h shell/importer/intelligent.c shell/main.c shell/test/evolution-test-component.c shell/test/evolution-test-component.h widgets/menus/gal-view-instance.c widgets/menus/gal-view-menus.c widgets/menus/gal-view-menus.h widgets/misc/Makefile.am widgets/misc/e-activity-handler.c widgets/misc/e-activity-handler.h widgets/misc/e-charset-picker.c widgets/misc/e-combo-button.c widgets/misc/e-combo-button.h widgets/misc/e-config-page.h widgets/misc/e-dropdown-button.c widgets/misc/e-dropdown-button.h widgets/misc/e-filter-bar.c widgets/misc/e-info-label.c widgets/misc/e-info-label.h widgets/misc/e-multi-config-dialog.c widgets/misc/e-multi-config-dialog.h widgets/misc/e-search-bar.c widgets/misc/e-search-bar.h widgets/misc/e-task-bar.c widgets/misc/e-task-bar.h widgets/misc/e-task-widget.c widgets/misc/e-task-widget.h widgets/misc/test-dropdown-button.c widgets/misc/test-error.c widgets/misc/test-info-label.c widgets/table/e-table-example-1.c | ||||
| * | | Remove trailing whitespace, again. | Matthew Barnes | 2009-05-27 | 263 | -320/+320 |
| |/ | |||||
| * | Fix compiler warnings in plugins. | Matthew Barnes | 2009-05-27 | 1 | -6/+1 |
| | | |||||
| * | Fix compiler warnings in mail. | Matthew Barnes | 2009-05-26 | 2 | -2/+2 |
| | | |||||
| * | Fix compiler warnings in calendar. | Matthew Barnes | 2009-05-26 | 3 | -14/+14 |
| | | |||||
| * | Fix compiler warnings in smime. | Matthew Barnes | 2009-05-26 | 1 | -0/+1 |
| | | |||||
| * | Fix compiler warnings in widgets. | Matthew Barnes | 2009-05-26 | 52 | -181/+131 |
| | | |||||
| * | Filter/Search bar changes for Anjal. | Srinivasa Ragavan | 2009-05-22 | 6 | -56/+134 |
| | | |||||
* | | Filter/Search bar changes for Anjal. | Srinivasa Ragavan | 2009-05-24 | 6 | -111/+462 |
| | | |||||
* | | Fix some account UI glitches. | Matthew Barnes | 2009-05-24 | 1 | -0/+11 |
| | | |||||
* | | Bug 583339 – Edit->Preferences->Mail Accounts inconsistent | Matthew Barnes | 2009-05-24 | 9 | -11/+1265 |
| | | |||||
* | | Merge branch 'master' into kill-bonobo | Matthew Barnes | 2009-05-22 | 2 | -11/+5 |
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: addressbook/gui/component/addressbook-view.c addressbook/gui/component/component-factory.c addressbook/gui/component/eab-composer-util.h addressbook/gui/widgets/Makefile.am addressbook/gui/widgets/e-addressbook-model.c addressbook/gui/widgets/e-addressbook-view.c addressbook/gui/widgets/e-addressbook-view.h addressbook/gui/widgets/eab-gui-util.c addressbook/gui/widgets/eab-gui-util.h addressbook/gui/widgets/eab-menu.h addressbook/gui/widgets/eab-popup.h calendar/gui/calendar-component.c calendar/gui/e-cal-event.h calendar/gui/e-calendar-table.c calendar/gui/e-calendar-view.c calendar/gui/e-calendar-view.h calendar/gui/e-memo-table.c calendar/gui/memos-component.c calendar/gui/tasks-component.c composer/e-composer-header-table.c composer/e-composer-private.h composer/e-msg-composer.c composer/e-msg-composer.h composer/evolution-composer.ui configure.ac data/icons/Makefile.am em-format/em-format.c em-format/em-format.h mail/Makefile.am mail/e-mail-shell-migrate.c mail/e-searching-tokenizer.c mail/e-searching-tokenizer.h mail/em-composer-utils.c mail/em-composer-utils.h mail/em-folder-browser.c mail/em-folder-tree-model.c mail/em-folder-view.c mail/em-format-html-display.c mail/em-format-html-display.h mail/em-mailer-prefs.c mail/em-message-browser.c plugins/vcard-inline/Makefile.am plugins/vcard-inline/org-gnome-vcard-inline.eplug.xml plugins/vcard-inline/vcard-inline.c shell/e-component-registry.h shell/e-shell-window.c shell/es-menu.h widgets/misc/e-filter-bar.c widgets/misc/e-filter-bar.h widgets/misc/e-search-bar.c widgets/misc/e-search-bar.h | ||||
| * | Bug 580925 – Better search bar for word searches | Matthew Barnes | 2009-05-21 | 2 | -8/+0 |
| | | | | | | | | | | | | Make the word search bar more like Firefox and get rid of the "Current Message" search scope in the folder search bar. Shift+Ctrl+F now activates the word search bar. | ||||
| * | Fix compiler warnings. | Matthew Barnes | 2009-05-17 | 1 | -10/+0 |
| | | |||||
| * | Bug 578478 – Composer shows not all "From" information | Matthew Barnes | 2009-05-17 | 1 | -1/+1 |
| | | |||||
| * | Fix several types of pedantic compiler warnings. | Matthew Barnes | 2009-05-17 | 14 | -21/+21 |
| | | |||||
| * | Add e_attachment_store_get_attachments(). | Matthew Barnes | 2009-05-15 | 2 | -34/+44 |
| | | |||||
| * | Bug 582585 – Crash when deleting multiple attachments from composed mail | Matthew Barnes | 2009-05-14 | 1 | -0/+6 |
| | | |||||
| * | Bug 582144 – Evolution not showing proper attachment filename | Matthew Barnes | 2009-05-13 | 2 | -9/+14 |
| | | |||||
| * | Bug 440919 – Evolution can't attach "zero length" files | Matthew Barnes | 2009-05-13 | 1 | -0/+10 |
| | | |||||
* | | Fix compiler warnings. | Matthew Barnes | 2009-05-21 | 1 | -10/+0 |
| | | |||||
* | | Bug 578478 – Composer shows not all "From" information | Matthew Barnes | 2009-05-21 | 1 | -1/+1 |
| | | |||||
* | | Fix several types of pedantic compiler warnings. | Matthew Barnes | 2009-05-21 | 13 | -20/+20 |
| | | |||||
* | | Add e_attachment_store_get_attachments(). | Matthew Barnes | 2009-05-21 | 2 | -34/+44 |
| | | |||||
* | | Bug 582585 – Crash when deleting multiple attachments from composed mail | Matthew Barnes | 2009-05-21 | 1 | -0/+6 |
| | | |||||
* | | Bug 582144 – Evolution not showing proper attachment filename | Matthew Barnes | 2009-05-21 | 2 | -9/+14 |
| | | |||||
* | | Bug 440919 – Evolution can't attach "zero length" files | Matthew Barnes | 2009-05-21 | 1 | -0/+10 |
| | | |||||
* | | Use -no-undefined on Linux too | Milan Crha | 2009-05-20 | 78 | -2254/+9534 |
| | | | | | | | | | | There still left two things opened, search for KILL-BONOBO to find them. One is in calendar's Makefile.am, one in composer. | ||||
* | | Merge branch 'master' into kill-bonobo | Matthew Barnes | 2009-05-07 | 1 | -2/+2 |
|\| | | | | | | | | | Conflicts: shell/e-shell-window-commands.c | ||||
| * | Fix a couple attachment drag-and-drop typos. | Matthew Barnes | 2009-05-06 | 1 | -2/+2 |
| | | |||||
| * | Use 'Open with "$foo"' instead of 'Open in $foo...' | Matthew Barnes | 2009-05-06 | 1 | -1/+1 |
| | | | | | | | | For better consistency with Nautilus. | ||||
| * | Bug 581454 – Move nautilus-sendto integration to Evolution | Matthew Barnes | 2009-05-06 | 4 | -0/+314 |
| | | |||||
* | | Use 'Open with "$foo"' instead of 'Open in $foo...' | Matthew Barnes | 2009-05-06 | 1 | -1/+1 |
| | | | | | | | | For better consistency with Nautilus. | ||||
* | | Bug 581454 – Move nautilus-sendto integration to Evolution | Matthew Barnes | 2009-05-06 | 4 | -0/+314 |
| | | |||||
* | | Merge branch 'master' into kill-bonobo | Matthew Barnes | 2009-05-06 | 7 | -7/+26 |
|\| | | | | | | | | | Conflicts: calendar/gui/dialogs/comp-editor.c | ||||
| * | Fix an error extracting URIs from local attachments. | Matthew Barnes | 2009-05-05 | 1 | -0/+19 |
| | | |||||
| * | Another #include path fix. | Matthew Barnes | 2009-05-05 | 1 | -1/+1 |
| | | |||||
| * | Fix include paths. | Matthew Barnes | 2009-05-05 | 5 | -6/+6 |
| | | |||||
* | | Merge branch 'master' into kill-bonobo | Matthew Barnes | 2009-05-04 | 5 | -2/+61 |
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: addressbook/gui/Makefile.am addressbook/gui/widgets/Makefile.am addressbook/gui/widgets/eab-popup-control.c calendar/gui/e-meeting-time-sel.c calendar/gui/migration.c calendar/modules/e-memo-shell-module-migrate.h e-util/e-logger.c mail/e-mail-attachment-bar.c mail/em-composer-utils.c mail/em-format-html-display.c plugins/mail-account-disable/Makefile.am plugins/select-one-source/Makefile.am po/es.po shell/Makefile.am shell/e-shell-common.h shell/e-shell-nm.c shell/e-shell-window-commands.c shell/e-shell-window.c shell/e-sidebar.c shell/e-user-creatable-items-handler.c shell/importer/Makefile.am shell/test/Makefile.am widgets/misc/test-error.c widgets/misc/test-info-label.c widgets/misc/test-multi-config-dialog.c | ||||
| * | ** BUGFIX: 573830 - g_timeout_add_seconds should be preferred to g_timeout_add | Marcel Stimberg | 2009-05-04 | 2 | -2/+2 |
| | | | | | | | | | | | | According to https://wiki.ubuntu.com/SavingTheWorld (and of course according to the gtk docs) using g_timeout_add_seconds is preferred over g_timeout_add if a timeout in seconds is desired. | ||||
| * | ** BUGFIX: 569696 – Memory leak in message-list | Srinivasa Ragavan | 2009-05-04 | 3 | -0/+59 |
| | | | | | | | | | | Not exactly a leak, but a build-up over a period of time. Clear the internal gnode on regen. | ||||
| * | Bug 574781 – Bad e-send-options.glade strings | Matthew Barnes | 2009-05-03 | 1 | -1266/+808 |
| | | |||||
| * | Bug 325131 – Do not translate ETable property nicknames | Matthew Barnes | 2009-05-03 | 4 | -18/+18 |
| | | |||||
| * | Remove obsolete Glade files. | Matthew Barnes | 2009-05-03 | 3 | -413/+1 |
| | | |||||
| * | Use Behdad's brilliant git.mk to generate .gitignore files. | Matthew Barnes | 2009-05-02 | 7 | -0/+14 |
| | | |||||
| * | Only #include specific libgnome[ui] headers; easier to track. | Matthew Barnes | 2009-05-01 | 9 | -1649/+1 |
| | | | | | | | | | | | | | | | | Stop including top-level libgnome[ui] headers -- <gnome.h>, <libgnome/libgnome.h> and <libgnomeui/libgnomeui.h>. Instead, include specific header files so we can track them easier. Also, remove several unshipped test programs. Mostly ETable stuff. | ||||
| * | Bug 580892 – Kill libgnomeui/gnome-app and gnome-app-helper | Matthew Barnes | 2009-05-01 | 5 | -52/+40 |
| | | | | | | | | | | The only remaining case is widgets/test/test-dropdown-button.c, but this file will be removed when the kill-bonobo branch is merged. | ||||
| * | Bump the required GLib and GTK+ versions to latest stable. | Matthew Barnes | 2009-05-01 | 3 | -10/+0 |
| | | | | | | | | | | We now require GLib >= 2.20 and GTK+ >= 2.16. Also removed all GLIB_CHECK_VERSION and GTK_CHECK_VERSION workarounds for older versions. |