aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Kill e-cursor(s) (both of them).Matthew Barnes2009-11-1020-583/+42
|
* EMFormat plugins should always be enabled.Matthew Barnes2009-11-103-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 Barnes2009-11-108-710/+151
| | | | A bunch of crusty old code in em-format-html-display.c falls out.
* Prototype an inline image plugin.Matthew Barnes2009-11-106-0/+401
| | | | Uses GtkImageView to display the image.
* Bug 600926 - Fails to build due to missing dependenciesJonathon Jongsma2009-11-108-5/+14
|
* Bug 600926 - Fails to build due to missing dependenciesYan Li2009-11-103-2/+17
|
* further Shavian translationThomas Thurman2009-11-101-1/+6744
|
* Bug 601219 - Transient dialogs in composer window blocks main windowMatthew Barnes2009-11-105-0/+54
|
* Bug 271836 - Incorrect signature for "model_cell_changed" signal handlerLi Yuan2009-11-091-1/+1
|
* Bug #601229 - Crashes when replying a mail.Chenthill Palanisamy2009-11-091-1/+1
|
* Bug #557613 - evolution crashed with SIGSEGV in try_open_e_book_cb()Chenthill Palanisamy2009-11-091-3/+4
|
* Further Shavian translationThomas Thurman2009-11-091-0/+1949
|
* Updated Spanish translationJorge González2009-11-081-163/+76
|
* First pass of Shavian translationThomas Thurman2009-11-082-0/+9056
|
* Kill more redundant save functions.Matthew Barnes2009-11-084-298/+147
|
* Convert some "Save As" actions to run asynchronously.Matthew Barnes2009-11-0829-396/+466
| | | | | | | | | | 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.
* Test drive EIOActivity with a simple asynchronous function.Matthew Barnes2009-11-086-91/+284
| | | | | | | | | | | | | | Rename e-fsutils to e-file-utils. This is where we'll add asynchronous functions for common file I/O operations with EActivity integration. Start with e_file_replace_contents_async() (and corresponding finish() function). This is a simple wrapper for g_file_replace_contents_async() which also returns an EActivity. It replaces e_write_file_uri(). Also redesign EIOActivity to -contain- a GAsyncResult rather than implement the interface for itself. This is easier for now but I may change my mind again when I figure out how to tie centralized error reporting into the EActivity framework.
* Prototype EIOActivity, which integrates with GIO.Matthew Barnes2009-11-083-0/+316
| | | | | | | | | | | | | | | | | | | EIOActivity implements the GAsyncResult interface, and the idea is to use this instead of GSimpleAsyncResult. In addition to the features offered by EActivity, it also contains GAsyncReadyCallback information and a GCancellable. - Calling e_activity_cancel() triggers the GCancellable. - Calling e_activity_complete() triggers the GAsyncReadyCallback. Functions that follow GIO's asynchronous pattern should return an EIOActivity (cast as an EActivity) instead of 'void', so it can be handed to an EShellBackend or whatever else dispatches activities. This is not yet feature-complete. It's missing API for storing result values and GErrors. I don't have a complete picture of the final API in my head yet, so I'll copy things over from GSimpleAsyncResult as needed.
* Move EActivity and subclasses to e-util.Matthew Barnes2009-11-0812-14/+14
| | | | | Planning to write some asynchronous utility functions in e-util that return EActivity objects.
* Updated Spanish translationJorge González2009-11-071-87/+77
|
* Updated Spanish translationJorge González2009-11-071-153/+143
|
* Bug #482327 - Save attached calendar with multiple items easilyMilan Crha2009-11-071-1/+32
|
* Updated Spanish translationJorge González2009-11-061-181/+153
|
* Support other forward types for Anjal.Srinivasa Ragavan2009-11-061-7/+9
|
* Updated Slovenian translationMatej Urbančič2009-11-061-3/+3
|
* Updated Slovenian translationMatej Urbančič2009-11-061-8615/+8845
|
* Bug #599792 - Anjal composer's Send button doesn't work after pressed Save ↵Yan Li2009-11-064-4/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | Drafts button This is due to an old hack that hiding a composer means we're closing it so save_draft_done() destroys the composer after saved draft. But in Anjal, the composer widget is always hidden (since the editor is reparented to the tab), and will be wrongly destroyed by save_draft_done() when you clicked "Save Draft" button. This patch improved the old hack, by adding a new API e_msg_composer_request_close() that can be used to request closing a composer (so the old hack is no longer needed). Internally, composer->priv->application_exiting is used to store this exiting status. So by this we no longer use a composer's visibility to check whether we're to close it. When you no longer need a composer after saved draft, call e_msg_composer_request_close() before sending the save-draft signal. The e_msg_composer_is_exiting() (removed by 983bea9) has to be bring back, which is needed by other programs that use the composer (Anjal here). (forward ported from 08150f6 of gnome-2-28)
* Remove redundant URI/filename conversion functions.Matthew Barnes2009-11-066-81/+21
| | | | | Use g_filename_to_uri() instead of e_util_filename_to_uri(). Use g_filename_from_uri() instead of e_util_uri_to_filename().
* Bug #598877 - Crash while sending mail, in report_status functionMilan Crha2009-11-062-4/+34
|
* Bug #573304 - Forward an email shouldn't strip signatureMilan Crha2009-11-064-6/+9
|
* Build filename using g_build_filename instead of hardcoding forward-slashTobias Mueller2009-11-061-2/+4
|
* Quote filename during restore to prevent user assisted arbitrary code executionTobias Mueller2009-11-061-1/+5
| | | | Fixes bug 540516.
* Bug #597582 - Original Date: header should be given precedenceDavid Woodhouse2009-11-056-17/+103
|
* Bug #596027: In Anjal, although invalid mail address warning popup, mail's ↵Yan Li2009-11-055-0/+33
| | | | | | | | tab closed automatically A new field "mail_sent" is added to the Composer to indicate whether the mail is sent successfully or not. This is needed by Anjal to know whether it can destroy the composer or not.
* Updated Spanish translationJorge González2009-11-051-163/+101
|
* Updated Spanish translationJorge González2009-11-051-72/+41
|
* Fix a compiler errorSrinivasa Ragavan2009-11-051-1/+1
|
* Sync to disk the outbox, since if we crash, we endup sending mail again.Srinivasa Ragavan2009-11-051-1/+4
|
* Bug #557505 - [bbdb] hangs and is unresponsiveMilan Crha2009-11-043-58/+229
| | | | Reverted some parts of bug #599199 and did the same differently
* Bug #596827 - Don't remove meeting attendees after editMilan Crha2009-11-042-3/+25
|
* Add support for Googlemail and hotmail/live/msn.com accounts.Srinivasa Ragavan2009-11-041-1/+5
|
* Bug 600402 - Clear search is always enabled in calendar/contact/taskMatthew Barnes2009-11-044-16/+4
|
* Bug #599124 - Signature always includes an empty line in front of textMilan Crha2009-11-041-3/+3
|
* Bug #599627 - Crash when adding a new task in a tableC de-Avillez2009-11-031-6/+2
|
* Fix few compiler warningsMilan Crha2009-11-032-3/+3
|
* Added Tamil translationvasudeven2009-11-021-454/+488
|
* Updated Spanish translationJorge González2009-11-021-8378/+9582
|
* Bug #464400 - New mail notify should display sender and subjectMilan Crha2009-10-314-20/+113
|
* Bug #583450 - [prefer-plain] Ability to hide html attachmentsMilan Crha2009-10-301-12/+38
|
* Lets the saved searches to work.Chenthill Palanisamy2009-10-301-0/+13
|
* Fix distcheck errors.Matthew Barnes2009-10-301-8/+8
|
* Bug 599890 - Search should not be remembered across foldersMatthew Barnes2009-10-301-1/+1
|
* Bug #570835 - Custom e-mail headers inserted with double columnMilan Crha2009-10-301-18/+16
|
* Bug 599837 - Junk plugin combo box is invisibleMatthew Barnes2009-10-301-2/+8
|
* Bug #561843 - Properly check for filename being set, to not crashMilan Crha2009-10-301-1/+1
|
* Bug 600019 - Menu glitches when an account name is selectedMatthew Barnes2009-10-292-0/+52
|
* Bug 600014 - Remove warnings from ech_config_widget_factory()Matthew Barnes2009-10-291-15/+1
|
* Bug #268644 - unread mail shortcut collides with gtk tree searchMilan Crha2009-10-293-0/+42
| | | | Re-applied, as it got lost on kill-bonobo merge
* Bug 599896 - Flush outbox option is missingMatthew Barnes2009-10-292-10/+9
| | | | This also reverts commit f5165c618ae2defb310a0ed4eab06dac7346a2b0.
* Bug 599882 - Crash in em_folder_tree_select_prev_path() when wrapping to bottomMatthew Barnes2009-10-291-49/+82
| | | | | Also fixes a whole bunch of memory leaks caused by unfreed strings and unfreed GtkTreePaths.
* fix a regression caused by EEvent cleanupLucian Langa2009-10-291-3/+3
|
* Don't update the message list when right-clicking on a folder.Matthew Barnes2009-10-287-12/+89
| | | | | | After the folder's context menu closes the folder tree selection jumps back to the folder whose contents are showing in the message list. Suggested by Philippe LeCavalier on evolution-list.
* Fix a regression caused by the Forward button feature.Matthew Barnes2009-10-281-12/+14
|
* Add a menu to the Forward toolbar button.Matthew Barnes2009-10-285-8/+212
| | | | | Allows users to choose different mail forwarding methods without navigating the main menu. Suggested by Ng Oon-Ee on evolution-list.
* Bug 599842 - EConfig does not respond to disabling/enabling EPluginsMatthew Barnes2009-10-281-11/+99
| | | | | | Requires eplug files to supply <item type="section"> or <item type="section_table"> for this to work. The container widget's "visible" property gets bound to the plugin's "enabled" property.
* Bug #552727 - Flooded by spam checking errors if bogofilter not installedMilan Crha2009-10-282-18/+69
|
* Bug #550049 - Disable Mark messages as read actions when unusableMilan Crha2009-10-283-3/+165
|
* Fix a typo in EFilterPart.Matthew Barnes2009-10-271-1/+1
| | | | This was breaking searching in strange and mysterious ways.
* Cleanup and rename filter classes.Matthew Barnes2009-10-2793-7319/+7712
|
* Prefer G_N_ELEMENTS over sizeof calculations.Matthew Barnes2009-10-2725-63/+47
|
* Prefer GQueue (or GNode) over EDList.Matthew Barnes2009-10-2715-305/+321
|
* EImport cleanup.Matthew Barnes2009-10-272-227/+299
|
* EEvent cleanup.Matthew Barnes2009-10-272-155/+204
|
* EConfig cleanup.Matthew Barnes2009-10-272-190/+314
|
* Remove some unfinished / unwanted bits from mail-mt.Matthew Barnes2009-10-272-76/+1
|
* Prefer GLib mutexes over pthread mutexes.Matthew Barnes2009-10-276-218/+148
|
* Bug #571039 - Shows all selected messages in a preview pane on a slow networkMilan Crha2009-10-274-15/+36
|
* Bug #599199 - Hangs regularly when synchro with pidgin is activatedMilan Crha2009-10-273-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.
* Bug #599740 - Crashing in g_thread_initMilan Crha2009-10-271-1/+2
|
* Updated Tamil translationdrtvasudevan2009-10-271-86/+138
|
* Bug #598519 - Cannot open task/memo by double click in calendar day viewMilan Crha2009-10-271-0/+12
|
* Bug #204900 - The sort indication arrows cover up the icons in tab headerMilan Crha2009-10-271-15/+30
|
* Post release version bumpChenthill Palanisamy2009-10-261-1/+1
|
* News update for 2.29.1 release.EVOLUTION_2_29_1Akhil Laddha2009-10-261-0/+338
|
* Bug #397265 - Image loading for new contact requires restarting EvolutionMilan Crha2009-10-264-186/+316
|
* Update overall maintainers.Chenthill Palanisamy2009-10-262-14/+14
|
* Updating Estonian translationIvar Smolin2009-10-261-3/+3
|
* Coding style and whitespace cleanups.Matthew Barnes2009-10-247-20/+19
|
* Fix distcheck errors.Matthew Barnes2009-10-241-0/+4
|
* Fix a potential calendar crash.Matthew Barnes2009-10-241-2/+1
|
* Put compiler warning flags in AM_CPPFLAGS instead of CFLAGS.Matthew Barnes2009-10-241-1/+3
|
* Bug #575208 - Use complete template message with all attachmentsMilan Crha2009-10-242-190/+143
|
* Bug #599131 - Crash on new contact adding with similar values as an oldMilan Crha2009-10-241-1/+4
|
* Bug #585715 - Skip empty parts in multipart/alternative formattingMilan Crha2009-10-241-1/+1
|
* Bug #248745 - Indent single mail in a threaded view tooMilan Crha2009-10-231-1/+1
|
* Updated Norwegian Nynorsk translationÅsmund Skjæveland2009-10-231-344/+262
|
* Bug 599190 - Unable to drop attachments in the attachment barMatthew Barnes2009-10-231-1/+1
|
* Bug #484839 - Sort, when in threading mode, properlyMilan Crha2009-10-233-24/+290
|
* Bug 599245 - Use bitwise AND instead of logical AND for checking flagsThomas Andersen2009-10-221-2/+2
|
* Updated Tamil translationdrtvasudevan2009-10-211-943/+1054
|
* Clean up e_shell_get_active_window()Matthew Barnes2009-10-211-12/+16
| | | | Clarify the documentation and simplify the logic.
* Bug 480361 - Useful action when clicking on a mail notificationMatthew Barnes2009-10-211-39/+80
|
* Bug 598567 - Can only insert local image filesMatthew Barnes2009-10-212-5/+11
|
* Bug #593953 - LDAP SSL option order doesn't match with a backend'sMilan Crha2009-10-212-8/+9
|
* Bug #598631 - Add tooltip of "Ctrl+click to open a link" in buffer taggerMilan Crha2009-10-211-26/+94
|
* Updated Russian translationLeonid Kanter2009-10-201-11026/+10848
|
* Bug #238879 - Use explicit text color in a Welcome messageMilan Crha2009-10-1921-21/+21
|
* Updated Spanish translationJorge González2009-10-171-10/+14
|
* Updated Norwegian Nynorsk translationÅsmund Skjæveland2009-10-171-6762/+7935
|
* Bug #552779 - Sort order of messages by "From" is case sensitiveMilan Crha2009-10-162-16/+10
|
* Bug #267749 - Week numbers are incorrect when the week starts on SundayMilan Crha2009-10-161-8/+13
|
* Bug #470291 - [prefer-plain] Be able to show HTML only messagesMilan Crha2009-10-161-34/+65
|
* Bug #596860 - Duplicate event gets shown in calendar viewMilan Crha2009-10-162-2/+5
| | | | Interim/partial solution.
* Bug #339628 - Non-default Draft folders are Draft folders tooMilan Crha2009-10-164-34/+21
|
* Bug #555901 - Preserve Start/End/Due timezone when editing in list viewMilan Crha2009-10-164-120/+72
|
* Bug #522783 - Signature separator for HTML E-mailsMilan Crha2009-10-164-5/+37
| | | | | | | | Reapplied patch from bug #551470, as this got dropped on merging. Be sure you all also gconftool-2 --install-schema-file=$PREFIX/etc/gconf/schemas/evolution-mail.schemas as new key had been added.
* Bug #545851 - Set properly sign type on reply of signed messageMilan Crha2009-10-161-8/+33
|
* Bug #372435 - Show SMIME cert info from mail, not from cert dbMilan Crha2009-10-161-11/+4
|
* Bug #597473 - Reply-all composes reply to wrong addressMilan Crha2009-10-161-0/+6
|
* Bug #322261 - vCalendar replies are sent out using the default accountMilan Crha2009-10-166-53/+81
|
* Bug #245683 - Use QP encoding when composing message with "\nFrom "Milan Crha2009-10-161-6/+92
| | | | (QP - Quoted Printable)
* Bug #565306 - "Edit Full" in "Add to address book" searches firstMilan Crha2009-10-163-12/+92
|
* Bug #458173 - Date selection window in "Advanced Search" inconsistentMilan Crha2009-10-161-1/+1
|
* Bug #411768 - Don't remove column by drag&drop out of a table headerMilan Crha2009-10-161-4/+0
|
* Bug #404227 - Over-aggressive appointment editor date checkMilan Crha2009-10-162-3/+38
|
* Bug #449520 - Adding a contact to a contact list fails when using a commaMilan Crha2009-10-161-1/+26
|
* Bug #468736 - Prevent recursion in em-formatMilan Crha2009-10-162-2/+15
|
* Slightly better error dialog on "Unable to book"Milan Crha2009-10-161-2/+7
| | | | as part of bug #436619
* Bug #562512 - Make hyperlinks clickable in Memos, Tasks and CalendarMilan Crha2009-10-167-0/+592
|
* Bug #516000 - Wrong formatted quoted textMilan Crha2009-10-161-0/+6
|
* Bug #329710 - [PublishCal] 'Enable' button should update on changeMilan Crha2009-10-151-13/+19
|
* Bug #373297 - Option for autocomplete in address book preferencesMilan Crha2009-10-152-2/+43
|
* Bug #523335 - [mail-to-task] EnhancementsMilan Crha2009-10-151-6/+54
|
* Bug #336337 - Send & receive dialog shows the default smtp serverMilan Crha2009-10-152-4/+52
|
* Bug #573878 - [face] Plugin is unusableMilan Crha2009-10-155-85/+450
|
* Bug #542361 - Unhelpful error warningsMilan Crha2009-10-151-20/+15
|
* Bug #314333 - Decrypt body in reply to an inline-PGP encrypted mailMilan Crha2009-10-155-9/+85
|
* Bug #592117 - Calendar Printout Lovepepp2009-10-151-32/+69
|
* Bug #593753 - Calendar search in list view doesn't work properlyMilan Crha2009-10-152-13/+10
|
* Bug #597123 - Composer's Send Options doesn't workMilan Crha2009-10-149-126/+87
|
* Bug #329100 - Choosing adress book for birthdaysMilan Crha2009-10-131-11/+43
|
* Bug #594471 - Shouldn't call e_error_new/run with NULL 'parent'Milan Crha2009-10-1349-246/+188
|
* Bug #498095 - Fixing mnemonicsMilan Crha2009-10-133-3/+7
|
* Updated Catalan translation from the gnome-2-28 branchDavid Planella2009-10-131-11021/+12269
|
* Check whether message-list is filtered properlyMilan Crha2009-10-121-1/+1
|
* Bug #596720 - Account assistance repeats itself after finishingMilan Crha2009-10-122-11/+27
|
* Updated Italian translationLuca Ferretti2009-10-121-216/+215
|
* Updated Tamil translationdrtvasudevan2009-10-111-360/+211
|
* Updated Tamil translationdrtvasudevan2009-10-111-8366/+7551
|
* Updated Tamil translationdrtvasudevan2009-10-111-70/+138
|
* Bug 598027 - Use vCard instead of VCardMatthew Barnes2009-10-115-7/+7
|
* Bug #597932 - Split out Kerberos 5 check into an macroH. Habighorst2009-10-102-88/+105
|
* Bug #552552 - File/Empty Trash does not expunge maildir foldersMilan Crha2009-10-092-4/+16
|
* Updated Slovenian translationAndrej Žnidaršič2009-10-081-339/+309
|
* Bug 595092 - Remove option to skip offline syncrhonization dialogMatthew Barnes2009-10-082-18/+2
|
* Enable mail-next-unread and mail-prev-unread for multi-selections.Matthew Barnes2009-10-081-2/+2
|
* Bug 596952 - Offline mode does not stick when set from command lineMatthew Barnes2009-10-081-9/+15
|
* Clean up includes in main.c.Matthew Barnes2009-10-081-27/+17
|
* Gtk-Doc updates.Matthew Barnes2009-10-071-0/+1
|
* Shell cleanup.Matthew Barnes2009-10-071-5/+12
|
* Bug #596824 - evolution hangs on start upMilan Crha2009-10-072-4/+11
|
* Enable File->Empty Trash menu item for all foldersMilan Crha2009-10-072-2/+9
|
* Bug #597564 - Invalid g_object_unref call in redo_queriesMilan Crha2009-10-072-17/+22
|
* Fix error in comment.Matthew Barnes2009-10-071-1/+1
|
* Bug 593612 - Pane size restoration does not play nice with maximized windowsMatthew Barnes2009-10-071-0/+54
|
* Bug 597533 - e_file_dialog_save() does not pass parent windowMatthew Barnes2009-10-077-52/+74
|
* Bug #594373 - Calendar notifications are not cleared from system trayMilan Crha2009-10-051-17/+18
|
* BUG#595803 Fixes a double freeBharath Acharya2009-10-051-3/+0
|
* Updated Swedish translationDaniel Nylander2009-10-051-2/+2
|
* Updated Italian translationLuca Ferretti2009-10-051-5687/+6315
|
* Updated Swedish translationDaniel Nylander2009-10-041-8283/+8378
|
* Updated Swedish translationDaniel Nylander2009-10-041-5/+5
|
* Bug 587014 - Magic space does not work as expectedLucian Langa2009-10-041-1/+0
|
* Bug 597224 - Cannot close preferences window with escape keyLucian Langa2009-10-041-0/+8
|
* Updating Estonian translationMattias Põldaru2009-10-031-5/+14
|
* Bug 597151 - [regression] Folder doesn't get deleted properlyLucian Langa2009-10-031-2/+4
|
* No IDL from eds and server.mk file in evo sources any moreMilan Crha2009-10-023-30/+0
| | | | Fixes build with latest eds master (after dbus-cal merge).
* Bug #456240 - Move exchange plugin to exchange packageMilan Crha2009-10-0234-12416/+2
| | | | Also added gtkhtml-editor and libgnomecanvas-2.0 to evolution-plugin.pc
* Bug 597108 - E_CONFIG_SECTION headers not properly escapedMatthew Barnes2009-10-021-1/+1
|
* Remove unneeded composer autosave functions.Matthew Barnes2009-10-025-40/+0
|
* Bug 596972 - Drop support for Kerberos 4H.Habighorst2009-10-021-85/+4
|
* Build with GTK_DISABLE_DEPRECATED and fix resulting breakage.Matthew Barnes2009-10-029-27/+16
|
* Bug 596848 - Use per-target CPPFLAGS in automake filesH.Habighorst2009-10-0182-487/+694
|
* Various composer autosave fixes.Matthew Barnes2009-10-012-64/+98
|
* Updating Estonian translationIvar Smolin2009-10-011-5/+5
|
* No need to track open composer windows either.Matthew Barnes2009-10-011-6/+0
|
* Remove some unneeded composer autosave bits.Matthew Barnes2009-10-015-57/+5
| | | | | | Closing the last main window no longer takes composer windows down with it, so we no longer need the "holy crap we're shutting down, quick save to disk!" logic.
* Bug 596843 - Link to libraries when building API docsH.Habighorst2009-09-302-94/+15
|
* Bug #596800 - Hang on contacts mergingMilan Crha2009-09-301-7/+8
|
* Bug 596712 - Recovered messages not autosaved until modificationMatthew Barnes2009-09-301-1/+1
|
* Code cleanup in e-msg-composer.cMatthew Barnes2009-09-301-9/+11
|
* Fix distcheck errors.Matthew Barnes2009-09-302-5/+5
|
* Bug #596753 - Autocompletion addressbooks not rememberedMilan Crha2009-09-309-3/+16
| | | | And select page in Edit->Preferences based on the active view.
* Bug #594015 - Keeps "Loading..." node on the first fetchMilan Crha2009-09-302-2/+13
|
* Bug #594005 - Mailer preview pane doesn't update on showMilan Crha2009-09-301-0/+5
|
* Bug #582745 - Place signature at bottom when Edit As New MessageMilan Crha2009-09-293-35/+39
|
* Fix a build break due to missing Romanian(ro)Akhil Laddha2009-09-291-0/+1
| | | | Makefile entry in configure.ac
* Bug 593700 - Opens folder on topMatthew Barnes2009-09-291-0/+9
|
* Whitespace cleanup in em-folder-tree.cMatthew Barnes2009-09-291-17/+18
|
* Bug 594534 - Can't select calendar for a new appointmentMatthew Barnes2009-09-291-0/+27
|
* Added Romanian welcome messageAdi Roiban2009-09-293-1/+321
|
* Bug 595812 - Crash after finishing account set upMatthew Barnes2009-09-291-34/+19
|
* Bug 596186 - New Mail account setup Assistant window is blankMatthew Barnes2009-09-291-1/+0
|
* Fix non-existent widget warning in account editor.Matthew Barnes2009-09-281-11/+3
|
* Whoops, too soon to kill EImportHook just yet.Matthew Barnes2009-09-262-0/+309
|
* Show import progress directly in the assistant window.Matthew Barnes2009-09-264-81/+106
|
* More import assistant cleanup.Matthew Barnes2009-09-261-134/+153
|
* Rename EShellImporter to EImportAssistant and move it to widgets.Matthew Barnes2009-09-2611-179/+160
|
* Convert the shell importer to a widget class.Matthew Barnes2009-09-267-436/+586
|
* Shell importer does not need an EShellWindow.Matthew Barnes2009-09-263-5/+3
|
* Trim unused or unnecessary bits from the import framework.Matthew Barnes2009-09-2611-446/+23
|
* Overlooked compiler warnings from exchange-operations pluginMilan Crha2009-09-252-2/+2
|
* Bug #593609 - Have buildable exchange-operations plugin againMilan Crha2009-09-2533-3829/+1575
|
* Bug 596268 - Crash when sidebar was clicked while 'loading'Matthew Barnes2009-09-251-1/+1
|
* Fix duplicate symbols in Glade files.Matthew Barnes2009-09-2515-28/+28
|
* Updated Arabic translationKhaled Hosny2009-09-251-2618/+2662
|
* Work around build break caused by gnome-pilot headers.Matthew Barnes2009-09-254-0/+8
|
* Bump minimum libunique version to 1.1.2.Matthew Barnes2009-09-251-5/+2
| | | | Also reinstate the GTK_DISABLE_SINGLE_INCLUDES build flag.
* Bug 596130 - Use correct Name and GenericName in .desktop fileWilliam Jon McCann2009-09-251-1/+2
|
* Bug 596157 - Use "Message-ID" instead of "Message-Id"Matthew Barnes2009-09-2421-24/+24
|
* Updated Slovenian translationMatej Urbančič2009-09-241-5926/+5966
|
* Bug #593633 - Runtime warnings trying to create a recurrence eventMilan Crha2009-09-245-8/+32
|
* Bug 594543 - Crash on folder/message changeMatthew Barnes2009-09-241-5/+5
| | | | Based on a patch by Milan Crha.
* Make gweather detection consistent with other optional libraries.Matthew Barnes2009-09-241-29/+31
|
* No longer need the X11 configure checks.Matthew Barnes2009-09-242-57/+1
|
* Rework optional plugin detection to fix distcheck.Matthew Barnes2009-09-242-51/+48
|
* Bug 594864 - "Select Folder" is a too generic titlePaul Bolle2009-09-241-1/+3
| | | | Also for "Copy Folder To..." and "Move Folder To..." commands.
* Bug 594864 - "Select Folder" is a too generic titlePaul Bolle2009-09-242-3/+3
| | | | | | | | | A number of EMFolderSelector dialogs use a rather generic title: "Select Folder". Use more specific titles for three EMFolderSelector dialogs: - Move to Folder - Copy to Folder - Add Folder
* Bug 594989 - Drop some dialog titlesPaul Bolle2009-09-241-10/+0
| | | | | HIG suggests alerts (for which these titles are only used as far as I know) do not have a title.
* Bug 591380 - Optional dependencies must be explicitly disabledH.Habighorst2009-09-241-52/+59
|
* Bug 595326 - Bump libtool to 2.2 and remove doltH.Habighorst2009-09-234-188/+4
|
* Bug 594988 - Drop generic dialog titlesPaul Bolle2009-09-231-6/+5
| | | | | | | | | | Drop useless generic dialog titles: - "Evolution Information" - "Evolution Warning" - "Evolution Query" - "Evolution Error" HIG suggests alerts (for which these titles are only used as far as I know) do not have a title anyway.
* Fix distcheck errors.Matthew Barnes2009-09-231-0/+1
|
* Bug #595501 - Crash on a changed filter rule removalMilan Crha2009-09-231-2/+6
|
* Developer documentation improvements.Matthew Barnes2009-09-2335-54/+2808
|
* Bug 593747 - Calendar preview dates not indicating eventsMilan Crha2009-09-231-6/+13
|
* Bug 593750 - Month view doesn't update / scrollMatthew Barnes2009-09-232-250/+250
|
* Remove trailing whitespacesMilan Crha2009-09-232-2/+2
|
* GN-bug #593617 - GroupWise plugins are not builtMilan Crha2009-09-2325-786/+845
|
* Updated Japanese translationTakayuki KUSANO2009-09-231-5719/+6186
|
* Calendar canvas item cleanup.Matthew Barnes2009-09-2216-2115/+2671
|
* Kill the ipod-sync plugin, along with the HAL dependency.Matthew Barnes2009-09-2212-1557/+3
|
* Fix few valgrind claimsMilan Crha2009-09-223-1/+8
|
* Updated Romanian translationAdi Roiban2009-09-221-5871/+4949
|
* Whitespace cleanup.Matthew Barnes2009-09-212-2/+2
|
* Another attempt at fixing a label-related crash.Matthew Barnes2009-09-211-0/+6
| | | | | | | The reporter's label list in GConf had the default labels, but without the mnemonic underscores. So they weren't recognized as default labels. As a last ditch effort, generate a tag from the label name to ensure that e_mail_label_list_store_get_tag() never returns NULL.
* Bug 595119 - Crash while trying to add a new category in contactMatthew Barnes2009-09-218-10/+87
|
* Typo fixAndre Klapper2009-09-211-1/+1
|
* Restore translation context (NC) for three stringsAndre Klapper2009-09-213-3/+3
|
* Typo fixAndre Klapper2009-09-211-1/+1
|