aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Make EMFolderTreeModelStoreInfo private.Matthew Barnes2013-11-202-35/+36
| | | | Also shorten the struct name to StoreInfo since it's private now.
* Make em_folder_tree_model_lookup_store_info() private.Matthew Barnes2013-11-202-23/+18
| | | | | | | Only called from within EMFolderTreeModel itself. Working toward making the EMFolderTreeModelStoreInfo struct private to EMFolderTreeModel, so it can then be made thread-safe.
* Make em_folder_tree_model_remove_folders() private.Matthew Barnes2013-11-202-48/+51
| | | | | | | Only called from within EMFolderTreeModel itself. Working toward making the EMFolderTreeModelStoreInfo struct private to EMFolderTreeModel, so it can then be made thread-safe.
* Change em_folder_tree_model_set_folder_info() argument.Matthew Barnes2013-11-203-22/+25
| | | | | | | | | | Take a CamelStore instead of an EMFolderTreeModelStoreInfo. It imposes a few extra hash table lookups to reacquire the StoreInfo from a CamelStore while populating the folder tree, but that's fine. Working toward making the EMFolderTreeModelStoreInfo struct private to EMFolderTreeModel, so it can then be made thread-safe.
* Remove em_folder_tree_model_lookup_uri().Matthew Barnes2013-11-202-50/+0
| | | | No longer used.
* Add em_folder_tree_model_get_row_reference().Matthew Barnes2013-11-204-51/+101
| | | | | | | | Replaces em_folder_tree_model_lookup_uri() and to some extent em_folder_tree_model_lookup_store_info(). Working toward making the EMFolderTreeModelStoreInfo struct private to EMFolderTreeModel, so it can then be made thread-safe.
* Bug #712342 - Calendar search doesn't finishMilan Crha2013-11-201-13/+9
|
* Bug #704832 - Event removal doesn't update week/month views properlyMilan Crha2013-11-192-1/+2
|
* Bug #712388 - Crash when opening Properties of a Weather calendarMilan Crha2013-11-191-36/+52
| | | | | | Apart of fixing the crash, the format of saved location is changed, which requires changes in evolution-data-server, commit with the same bug number in its description (063a2bc).
* Post-release version bump.Matthew Barnes2013-11-171-1/+1
|
* NEWS update for 3.11.2 release.Matthew Barnes2013-11-171-0/+51
|
* EMFolderTreeModel: Declare the CamelStore column as an object type.Matthew Barnes2013-11-175-60/+95
| | | | | | | | | | | Declaring the CamelStore column as a raw pointer type dates back to before Camel was GObject-based. The problem is the CamelStore could be finalized while the tree model still has a pointer to it, leaving behind dangling pointers in the tree model which could cause a crash. Declaring the column type in the column enum turned out to be a good idea, as it makes code that needs updated easy to find. This renames the enum value from COL_POINTER_CAMEL_STORE to COL_OBJECT_CAMEL_STORE.
* Add em_folder_tree_ref_selected_store().Matthew Barnes2013-11-173-7/+30
| | | | | | Replaces em_folder_tree_get_selected_store(). Same as before, but adds a reference to the returned CamelStore.
* EShellBackend cleanups.Matthew Barnes2013-11-171-96/+103
|
* EMailShellView cleanups.Matthew Barnes2013-11-172-44/+57
|
* Updated Spanish translationDaniel Mustieles2013-11-171-995/+978
|
* Updated POTFILES.inPiotr Drąg2013-11-161-1/+0
|
* Updated Greek translationDimitris Spingos2013-11-151-654/+610
|
* Fix/mute issues found by Coverity scanMilan Crha2013-11-1593-637/+659
| | | | | | | | | | | | This makes the code free of Coverity scan issues. It is sometimes quite pedantic and expects/suggests some coding habits, thus certain changes may look weird, but for a good thing, I hope. The code is also tagged with Coverity scan suppressions, to keep the code as is and hide the warning too. Also note that Coverity treats g_return_if_fail(), g_assert() and similar macros as unreliable, and it's true these can be disabled during the compile time, thus it brings in other set of 'weird' changes.
* EMailBackend: Camel no longer has a "network-available" property.Matthew Barnes2013-11-141-5/+1
|
* "Disco is dead!", says Camel.Matthew Barnes2013-11-143-43/+5
| | | | All offline-capable Camel providers use CamelOfflineStore now.
* Update Dutch translation MasterHannie Dumoleyn2013-11-121-5107/+5267
|
* Updated Malayalam TranslationAnish A2013-11-121-2036/+2157
|
* Fix some cppcheck warnings (uninitialized variable usages)Milan Crha2013-11-123-4/+4
|
* Convert libemail-engine to a single-include model.Matthew Barnes2013-11-12101-338/+238
| | | | Use: #include <libemail-engine/libemail-engine.h>
* Move EMailImageLoadingPolicy to e-mail-formatter-enums.h.Matthew Barnes2013-11-116-15/+26
| | | | libemail-engine doesn't need to know about this enum.
* Generate enum GTypes for libevolution-mail.Matthew Barnes2013-11-117-25/+77
| | | | Steals some enum types that libemail-engine doesn't need to know about.
* Remove unused EMailDisplayStyle enum.Matthew Barnes2013-11-111-6/+0
|
* Fix misspelled enum type.Matthew Barnes2013-11-113-6/+7
|
* Rename e-mail-enums.h to e-mail-engine-enums.h.Matthew Barnes2013-11-1111-23/+21
|
* Generate documentation for libemail-engine.Matthew Barnes2013-11-1111-18/+499
|
* Bug #711835 - Clang build in broken: void function ↵Fabiano Fidêncio2013-11-111-3/+3
| | | | 'cal_comp_transfer_item_to' should not return a value
* Updated Polish translationPiotr Drąg2013-11-101-809/+817
|
* Alarm-Notify: Skip disabled sources/calendarsMilan Crha2013-11-081-1/+1
| | | | | Trying to open sources which are disabled violates user's will, thus do not do that.
* EMailAccountManager: Rename "Restore Default" button.Matthew Barnes2013-11-081-2/+1
| | | | | Rename it to "Reset Order". A little less confusing, I think, since there's also a "Default" button to set the default account.
* Bug 711198 - Crashes on creating a new taskMatthew Barnes2013-11-081-1/+1
|
* Make e_attachment_set_file_info() thread-safe.Matthew Barnes2013-11-071-4/+9
| | | | Missed this one in commit 9058c6f85dc49f9500e7e67819acfd8c0d2d369c.
* Follow-up fix for bug 711532.Matthew Barnes2013-11-071-1/+1
| | | | | Content-Disposition of the test case is honored now, but still not the Content-Transfer-Encoding.
* Bug 711532 - Infinite recursion from message/news attachmentMatthew Barnes2013-11-072-3/+4
| | | | | | This is only a partial solution for the test case the bug report. The message/news part of the test case is also Base64-encoded, but Evolution (or Camel) is not decoding it properly. Still digging.
* Updated Greek translationDimitris Spingos2013-11-061-1588/+1789
|
* Updated POTFILES.inPiotr Drąg2013-11-061-0/+1
|
* Bug #711477 - Print/export tasks/memos without summary displays "(null)"Milan Crha2013-11-061-1/+1
|
* Fix an issue found by Coverity Scan introduced by a commit for bug #657808Milan Crha2013-11-061-2/+2
|
* Updated Spanish translationDaniel Mustieles2013-11-061-1324/+1439
|
* Bug 707112 - Replace webkit_dom_html_element_get_id usageKerrick Staley2013-11-053-2/+26
| | | | | | | | | | | | | | | | webkit_dom_element_get_id() was introduced for WebKitGTK+ 2.2 and deprecates webkit_dom_html_element_get_id(). But Evolution only requires WebKitGTK+ 2.0.1. Ordinarily this would sit on a shelf until we require WebKitGTK+ 2.2, however WebKitGTK+ has now started issuing deprecation warnings about webkit_dom_html_element_get_id() at *runtime*, which is pointless and only fills up users' .xsession-errors file. To put a stop to this, we'll call the new function subject to a pre- processor WebKit version check, with a fallback to the old function. The build requirement remains at WebKitGTK+ 2.0.1.
* Bug #657808 - Copy/move of a single instance should grab whole serieMilan Crha2013-11-055-229/+696
|
* Update error handling when sending offline.Matthew Barnes2013-11-041-1/+8
| | | | | | Camel now uses GResolver for domain name resolution, so check for G_RESOLVER_ERROR when sending so the "saving-to-outbox" alert can work again.
* Bump webkitgtk-3.0 requirement to 2.0.1.Matthew Barnes2013-11-041-1/+1
| | | | | | | | | | | | Between 2.0.0 and 2.0.1, webkit_dom_html_style_element_get_sheet() silently changed from returning a WebKitDOMStyleSheet to returning a WebKitDOMCSSStyleSheet. EWebView already depends on this newer behavior, which effectively means Evolution's WebKitGTK+ dependency is already 2.0.1 or later. Update the minimum webkitgtk-3.0 requirement in configure.ac to reflect this. WebKitGTK+ 1.10 is old enough now that the bump should not be an issue.
* Adapt to CamelDataCache API changes.Matthew Barnes2013-11-021-15/+32
|
* EMailIdentityComboBox: Document and clean up.Matthew Barnes2013-11-012-33/+139
|
* Updated Galician translationsFran Diéguez2013-11-011-1300/+1396
|
* Fix Contact Editor crash.Matthew Barnes2013-11-011-3/+0
| | | | When closing the window after opening it from the Address Book Map.
* Remove EContactMarker.Matthew Barnes2013-11-015-745/+94
| | | | | | ChamplainLabel does everything we need now. Need to stash a contact UID for opening the Contact Editor on double-click, but not worth a subclass for just that.
* Contact map cleanups.Matthew Barnes2013-11-016-428/+448
|
* Bug 689055 - Port contact map to geocode-glib 3.10Canek Peláez Valdés2013-11-012-33/+61
|
* Updated Slovenian translationMatej Urbančič2013-11-011-210/+268
|
* Bug 710489 - Network detection broken at startupMatthew Barnes2013-10-311-1/+7
|
* Bug 710797 - Name all the timeouts added with g_timeout_add()Bastien Nocera2013-10-3047-185/+275
|
* Fix error handling glitch in mail_session_send_to_thread().Matthew Barnes2013-10-291-4/+4
| | | | | | | | | | If sending a message fails but the user was already connected to the MTA, the error is missed and not handled until further into the logic, where it's treated as though sending succeeded and only post-processing failed. This results in the user seeing a copy of the message in Sent, but the message was never actually sent. Fallout from the investigation of bug 710807.
* EShellSearchbar: Remove unused 'child_containers'.Matthew Barnes2013-10-271-3/+0
|
* Bug 709428 - Searchbar widgets should not wrapMatthew Barnes2013-10-275-237/+150
| | | | | | | | | | | | | | | Instead of wrapping the searchbar for small screens (which looks ugly and breaks the initial window size on large screens), hide the filter combo box in views that would otherwise be too wide for the screen. There's no loss of functionality when hiding the filter combo box. It's just a set of convenient pre-defined searches, all of which can be reproduced through the Advanced Search interface. New functions: e_shell_searchbar_get_filter_visible() e_shell_searchbar_set_filter_visible()
* EProxyEditor: Save on "Method" combo box change.Matthew Barnes2013-10-261-4/+13
|
* Bug 710835 - evolution.convert: Add trailing / for schemas pathsColin Walters2013-10-261-5/+5
| | | | | | Newer versions of GLib are more strict about this. See https://bugzilla.gnome.org/704802
* EContactsSelector: Show icons.Matthew Barnes2013-10-261-0/+2
| | | | Just a nice touch, I think.
* EAutocompleteSelector: Show icons.Matthew Barnes2013-10-261-0/+2
| | | | Just a nice touch, I think.
* Add a chapter for proxy widgets in API documentation.Matthew Barnes2013-10-261-5/+9
|
* Document EProxyLinkSelector.Matthew Barnes2013-10-262-0/+53
|
* EProxyEditor: Add an "Open Desktop Settings" button.Matthew Barnes2013-10-261-11/+59
| | | | | | | Shown for the "Defer to Desktop Settings" choice if gnome-control-center is available. The button opens gnome-control-center's "Network" panel, but unfortunately the "Network proxy" item cannot be selected from the command line.
* Use EProxyPreferences in EPreferencesWindow.Matthew Barnes2013-10-265-1118/+15
| | | | Replaces EMNetworkPrefs.
* Add EProxyPreferences.Matthew Barnes2013-10-269-0/+897
|
* Add EProxyLinkSelector.Matthew Barnes2013-10-267-0/+388
|
* Add EProxyEditor.Matthew Barnes2013-10-268-0/+859
|
* Add EProxySelector.Matthew Barnes2013-10-268-0/+955
|
* Add EProxyComboBox.Matthew Barnes2013-10-267-0/+491
| | | | | EProxyComboBox is a combo box of available proxy profiles, as described by ESource instances with an ESourceProxy extension.
* Adapt to Camel's proxy resolver API changes.Matthew Barnes2013-10-261-57/+120
|
* Bug 710852 - Missing linker flag in evolution-alarm-notifyCanek Peláez Valdés2013-10-261-0/+1
|
* Remove e_source_selector_set_select_new().Matthew Barnes2013-10-266-25/+0
| | | | Sets a flag that's no longer used internally by ESourceSelector.
* ESourceSelector: Fix a reference leak in text_cell_edited_cb().Matthew Barnes2013-10-251-7/+9
| | | | We were leaking the ESource reference.
* ESourceSelector: Add a "show-icons" property.Matthew Barnes2013-10-254-2/+156
| | | | | | | | ESourceSelector can now optionally display an icon next to each ESource matching the selector's "extension-name". Intended for non-homogeneous use cases where a variety of account types are shown in the selector. The icon set is hard-coded, but we could change that if the need arises.
* ESourceSelector cleanups.Matthew Barnes2013-10-255-65/+103
|
* Updated Slovenian translationMatej Urbančič2013-10-251-1219/+1242
|
* ESourceSelector: Fix a potential runtime warning.Matthew Barnes2013-10-231-1/+3
| | | | | | | When (re)building the tree model, ESourceSelector may fall back to e_source_registry_ref_default_for_extension_name() to help initialize the primary selection. Depending on the selector's "extension-name" property, that function may return NULL. Handle it gracefully.
* Fixed Russian translationYuri Myasoedov2013-10-231-1269/+2207
|
* Post-release version bump.Matthew Barnes2013-10-201-1/+1
|
* NEWS update for 3.11.1 release.EVOLUTION_3_11_1Matthew Barnes2013-10-201-0/+54
|
* Update API documentation.Matthew Barnes2013-10-201-0/+1
|
* Miscellaeous cleanups.Matthew Barnes2013-10-2012-448/+524
|
* Bug #710171 - EShellTaskbar: Gtk+ functions called out of the main threadMilan Crha2013-10-181-10/+96
|
* Bug #709396 - Quoted text truncated when "Keep signature above" is setMilan Crha2013-10-182-0/+23
| | | | | | | | | | | The GtkComboBox::changed signal is not called only on active-id change, but also on any content change, including each row add/change/removal into its model. These signals are delivered on the main thread, thus the result of e_mail_signature_combo_box_load_selected() is delivered later, which means that a call like gtk_list_store_clear() queues as many 'load_selected' operations as is the list items count. Such thing confused GtkHTML editor enough to garble the message body. This change is kind of workaround, which avoids unnecessary signature updates.
* Bug #640382 - Prevent a crash in e_week_view_on_text_item_event()Milan Crha2013-10-171-0/+6
|
* Updated German translationChristian Kirbach2013-10-121-1289/+1169
|
* Signature/encryption bar may not inherit text color from themeMilan Crha2013-10-111-2/+9
| | | | | | | The "signature bar" overrides background color, thus it should override also text color, to make sure the text will be always readable. This could break with dark theme, which uses light text color.
* EMailIdentityComboBox cleanups.Matthew Barnes2013-10-113-37/+39
|
* Auto-wrap long anchorsMilan Crha2013-10-092-1/+10
| | | | | Make Webkit auto-wrap long anchors, thus they do not dictate content width, which may make it too wide for a window with extra long links.
* Show both component summary and alarm description in RemindersMilan Crha2013-10-081-36/+46
| | | | | | It turned out that my understanding of the RFC when fixing bug #386113 was incorrect, the alarm description is not supposed to replace the component summary, but only extend it with an additional text.
* Bug #215115 - Per-folder From: email addressMilan Crha2013-10-0813-525/+2841
| | | | | | The change also allows setting accounts for certain recipients (based on a part of the recipient address). The option can be found in Folder Properties and in Edit->Preferences->Composer Preferences->Send Account.
* [l10n] Updated Catalan (Valencian) translationCarles Ferrando2013-10-071-12291/+2539
|
* Bug #707856 - Custom recurrence dropped on event editor saveMilan Crha2013-10-041-1/+1
|
* EMailParserMultipartSigned: Rework obtaining the signature protocol.Matthew Barnes2013-10-031-16/+24
| | | | | CamelMultipartSigned no longer has a public 'protocol' member. Obtain it instead by checking the CamelContentType for a 'protocol' parameter.
* Bug 708390 - text-highlight: Don't interfere with printingMatthew Barnes2013-10-011-27/+2
| | | | | The text-highlight module is for enhancing the *display* of textual email parts. It should not interfere at all when printing an email.
* Bug 709108 - Make Appdata file translatableDaniel Mustieles2013-10-013-8/+11
|
* Bug #708682 - Move with 'End' key with collapsed threads failsMilan Crha2013-10-011-6/+1
| | | | This reverts part of commit 452638466217dbfef0c0954c90aa7cb03cf91452
* Bug #708840 - Crash when closing subscription dialog with running operationMilan Crha2013-09-301-0/+33
|
* Bug #705685 - Contact(-list)-editor - reject save when book is still openingMilan Crha2013-09-304-5/+48
|
* Bug #699997 - Show unreferenced images in multipart/related parserMilan Crha2013-09-301-2/+28
|
* Updated Traditional Chinese translation(Hong Kong and Taiwan)Cheng-Chia Tseng2013-09-302-1019/+894
|
* EMailSession: Implement ref_proxy_resolver() method.Matthew Barnes2013-09-281-23/+43
| | | | | Eventually I'd like to add an ESourceExtension for proxy settings, but for now we'll live with the old and somewhat broken EProxy API.
* Remove all g_type_init() calls.Matthew Barnes2013-09-284-8/+0
| | | | g_type_init() is deprecated in GLib 2.36.
* Bump minimum GLib requirement to 2.36.Matthew Barnes2013-09-281-2/+2
| | | | Needed for GSimpleProxyResolver.
* Adapt to CamelSession trust_prompt() changes.Matthew Barnes2013-09-273-34/+35
|
* Bug #689787 - Prefer-plain can hide message body for composerMilan Crha2013-09-273-14/+57
|
* Drop unused e-cert-db.c:default_nickname() functionMilan Crha2013-09-251-125/+0
|
* Add debugging for formatter requestsMilan Crha2013-09-252-3/+23
| | | | | With CAMEL_DEBUG=emformat:requests the evolution prints a debug messages about requests being processed when formatting messages.
* Remove unused e_cert_db_export_pkcs12_file().Matthew Barnes2013-09-252-17/+0
|
* Remove unused e_cert_db_import_user_cert().Matthew Barnes2013-09-252-84/+0
|
* Remove unused e_cert_db_find_cert_by_email_address().Matthew Barnes2013-09-252-58/+0
|
* Remove unused e_cert_db_find_email_signing_cert().Matthew Barnes2013-09-252-15/+0
|
* Remove unused e_cert_db_find_email_encryption_cert().Matthew Barnes2013-09-252-11/+0
|
* Remove unused e_cert_db_get_cert_nicknames().Matthew Barnes2013-09-252-11/+0
|
* Remove unused e_cert_db_find_cert_by_key().Matthew Barnes2013-09-252-47/+0
|
* Remove unused e_cert_db_find_cert_by_nickname().Matthew Barnes2013-09-252-31/+0
|
* Remove unused e_cert_trust_set_valid_server_peer().Matthew Barnes2013-09-252-17/+0
|
* Remove unused e_cert_trust_has_user().Matthew Barnes2013-09-252-25/+0
|
* Remove unused e_cert_trust_has_ca().Matthew Barnes2013-09-252-25/+0
|
* Remove unused e_cert_trust_set_user().Matthew Barnes2013-09-252-17/+0
|
* Remove unused e_cert_trust_set_trusted_peer().Matthew Barnes2013-09-252-17/+0
|
* Remove unused e_cert_trust_set_trusted_ca().Matthew Barnes2013-09-252-17/+0
|
* Remove unused e_cert_trust_set_trusted_server_ca().Matthew Barnes2013-09-252-17/+0
|
* Remove unused e_cert_trust_copy().Matthew Barnes2013-09-252-11/+0
|
* Updated POTFILES.inPiotr Drąg2013-09-251-2/+0
|
* Remove unused e_cert_get_issuers_chain().Matthew Barnes2013-09-252-30/+0
|
* Remove unused e_cert_get_expires_on_time().Matthew Barnes2013-09-251-6/+0
|
* Remove unused e_cert_get_issued_on_time().Matthew Barnes2013-09-252-7/+0
|
* Remove unused e_cert_get_window_title().Matthew Barnes2013-09-252-12/+0
|
* Remove unused EASN1Object.Matthew Barnes2013-09-253-1075/+0
|
* Use GcrCertificateWidget to view certificates.Matthew Barnes2013-09-254-734/+75
| | | | | e_cert_manager_new_certificate_viewer() now builds a simple GtkDialog with a GcrCertificateWidget showing details about the given ECert.
* ECert: Implement GcrCertificate interface.Matthew Barnes2013-09-251-1/+41
| | | | ECert is now a type of GcrCertificate.
* New base dependency: gcr-3 >= 3.4Matthew Barnes2013-09-251-0/+2
| | | | Needed for GcrCertificateWidget and similar widgets.
* Remove unused e_cert_get_asn1_struct().Matthew Barnes2013-09-252-19/+0
|
* Assamese translation updatedNilamdyuti Goswami2013-09-241-126/+77
|
* Bug #659890 - Merge addressbook 'widgets' and 'merging' librariesMilan Crha2013-09-2416-42/+22
| | | | | These two cross-referenced each other, which could cause runtime issues, thus rather merge them into one.
* l10n: Update Japanese translationJiro Matsuzawa2013-09-241-12/+12
|
* l10n: Update Japanese translationvictory2013-09-241-5108/+3095
|
* Adapt to Camel API changes.Matthew Barnes2013-09-2425-78/+66
|
* Bug #708349 - Memory leaks around mail configMilan Crha2013-09-233-0/+6
|
* Bug #708347 - Memory leak from EWebView/webkitTomas Popela2013-09-231-2/+5
|
* Updated Traditional Chinese translation(Hong Kong and Taiwan)Chao-Hsiung Liao2013-09-232-1476/+1481
|
* Updated Hungarian translationBalázs Úr2013-09-231-733/+724
|
* Bug 707425 - Inconsistent capitalization in calendar Search menuMatthew Barnes2013-09-221-3/+3
|
* Bug 707720 - Change 'mail' keyword to 'email' in evolution.desktopMatthew Barnes2013-09-221-1/+1
| | | | | GNOME Shell does substring matches on desktop keywords, so naming the keyword 'email' matches both 'email' and 'mail'.
* [l10n] Update Catalan translationJosep Sànchez2013-09-221-12258/+2685
|
* Updated UkrainianDaniel Korostil2013-09-211-5455/+5877
|
* Post-release version bump.Matthew Barnes2013-09-211-4/+4
|
* NEWS update for 3.10.0 release.EVOLUTION_3_10_0Matthew Barnes2013-09-211-0/+13
|
* Updated Brazilian Portuguese translationEnrico Nicoletto2013-09-211-721/+721
|
* Updated Basque languageInaki Larranaga Murgoitio2013-09-211-2386/+2535
|
* Assamese translation updatedNilamdyuti Goswami2013-09-201-1968/+2169
|
* update Punjabi TranslaitonA S Alam2013-09-191-2826/+3033
|
* Updated Czech translationJiří Eischmann2013-09-181-1615/+1620
|
* Updated slovak translationMarián Čavojský2013-09-171-5031/+4801
|
* Updated Danish translationAsk H. Larsen2013-09-161-2527/+2609
|
* Post-release version bump.Matthew Barnes2013-09-151-2/+2
|
* NEWS update for 3.9.92 release.EVOLUTION_3_9_92Matthew Barnes2013-09-151-0/+44
|
* Update API documentation.Matthew Barnes2013-09-154-3/+5
|
* EClientSelector: Show an initial icon based on host name.Matthew Barnes2013-09-151-1/+150
| | | | | | | | Have GNetworkMonitor make an initial guess at the online state of backends by evaluating the reachability of their host name. This will show an initial status icon for all displayed ESources without actually opening a connection, since some backends are expensive to start unnecssarily.
* Bug 708004 - Deleting in threaded mode moves cursor to incorrect messageDavid Dillow2013-09-151-2/+4
|
* Updated Korean translationChangwoo Ryu2013-09-141-2955/+2991
|
* Bug #707392 - Only very first Collapse/Expand button in message header pane ↵Tomas Popela2013-09-132-71/+33
| | | | | | | | | | | | | | | | works When we were collecting the elements for adding the onclick event listeners, we were using the webkit_dom_document_get_element_by_id method, but when email had multiple TO, CC or BCC headers it was returning just the first elements with given id. To fix this we moved to webkit_dom_*_query_selector methods that give us more powerfull element extraction from document. When toggling the visibility of header row, we are now operating just in the row that contains the clicked element. This patch also remove the suffixes from all __evo-moreaddr ids.
* Updated Latvian translationRūdolfs Mazurs2013-09-121-2863/+3081
|
* Bug #706008 - Workaround gnome-shell style change on focus changeTomas Popela2013-09-1216-165/+398
| | | | | | | Avoid redrawing (thus loosing the selection and scroll position) of preview window on style change by defining the colors through CSS styles. On style change we just update the CSS color definitions and preview will update itself without redraw.
* Fix a broken tag in French help translationPiotr Drąg2013-09-121-1/+1
|
* EClientSelector: Do not prefetch EClient instancesMilan Crha2013-09-121-51/+0
| | | | | Let the open for a user, when respective source in the selector is selected.
* Add space after a type cast.Antoine Jacoutot2013-09-111-2/+2
|
* calendar: do not assume time_t is longAntoine Jacoutot2013-09-111-3/+3
| | | | | | | | | On Linux time_t is long, on OpenBSD time_t is long long... so printf statements using %lu on 32-bit platforms will break on !Linux. The only portable way to print a time_t is using a cast and casting to "long long" (gint64) is probably the most portable way. https://bugzilla.gnome.org/show_bug.cgi?id=707829
* Finnish translation updateTimo Jyrinki2013-09-111-5873/+6195
|
* Updated Serbian translationМирослав Николић2013-09-112-5494/+5628
|
* Updated Hungarian help translationGabor Kelemen2013-09-101-4/+4
|
* Updated Indonesian translationAndika Triwidada2013-09-091-989/+1069
|
* Fix uninitialized variable in cal_comp_is_on_server().Matthew Barnes2013-09-091-1/+1
|
* Updated Russian translationYuri Myasoedov2013-09-091-3406/+2197
|
* Replace double-space with single-space in evolution.appdata.xmlMilan Crha2013-09-091-1/+1
|
* Updated Norwegian bokmål translationKjartan Maraas2013-09-091-873/+930
|
* Fix folder name encoding in em_folder_utils_create_folder().Matthew Barnes2013-09-091-22/+7
| | | | | | | | | When creating a top-level folder, the folder name was still URI-encoded. So for example "Top Level Folder" was coming out "Top%20Level%20Folder". The em_folder_tree_store_root_selected() "if" branch is uncommented and looks unnecessary to me, so I'm removing it. Always parse the URI with e_mail_folder_uri_parse(), which produces a decoded folder name.
* Updated Belarusian translation.Ihar Hrachyshka2013-09-081-2841/+2843
|
* Bug 707571 - Bad EOF check in getNextCSVEntryAndreas Schwab2013-09-081-1/+1
|
* Miscellaneous cleanups.Matthew Barnes2013-09-0890-961/+1232
|
* Updated German translationChristian Kirbach2013-09-071-1311/+1409
|
* Add an AppData description for Evolution.Matthew Barnes2013-09-072-0/+22
| | | | Based on http://people.freedesktop.org/~hughsient/appdata/.
* Updated Hungarian help translationGabor Kelemen2013-09-071-4236/+4925
|
* Add EShellView to E{Calendar,MemoList,TaskList}SelectorFabiano Fidêncio2013-09-059-13/+290
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=657808
* Update French translationAlexandre Franke2013-09-041-32/+89
|
* Updated Traditional Chinese translation(Hong Kong and Taiwan)Chao-Hsiung Liao2013-09-042-558/+680
|
* Updated Irish translationSeán de Búrca2013-09-041-11970/+11842
|
* Updated Hungarian translationBalázs Úr2013-09-041-267/+335
|
* Bug #707048 - [bbdb] GError double free when contact save failsMilan Crha2013-09-031-4/+2
|
* Fix Catalan spelling mistakesJordi Mas2013-09-031-5/+5
|
* Updated Spanish translationDaniel Mustieles2013-09-031-281/+349
|
* Updated Spanish translationDaniel Mustieles2013-09-031-2619/+4229
|
* Updated Lithuanian translationAurimas Černius2013-09-021-31/+101
|
* Post-release version bump.Matthew Barnes2013-09-011-1/+1
|
* NEWS update for 3.9.91 release.EVOLUTION_3_9_91Matthew Barnes2013-09-011-0/+42
|
* Update evolution-shell API documentation.Matthew Barnes2013-09-011-0/+1
|
* Updated German help translationBenjamin Steinwender2013-09-011-2602/+4176
|
* Updated Polish translationPiotr Drąg2013-09-011-259/+320
|
* Updated Galician translationsFran Diéguez2013-09-011-34/+95
|
* EMailDisplay: Remove mail_display_plugin_widget_realize_cb().Matthew Barnes2013-09-011-32/+0
| | | | | | Apparently not required anymore, and was actually causing embedded widgets for attachments to malfunction when collapsed and expanded again -- particularly audio attachments.
* EMailDisplay: Remove bind_iframe_content_visibility().Matthew Barnes2013-09-011-110/+0
| | | | | | None of my attachment samples invoke bind_iframe_content_visibility(). Both it and toggle_widget_visibility() appear to dead code. Removing the functions causes no ill side-effects as far as I can tell.
* Bug 707043 - Audio attachment not shown correctlyDavid Woodhouse2013-08-312-1/+7
|
* Updated Slovenian translationMatej Urbančič2013-08-311-298/+350
|
* Updated Brazilian Portuguese translationEnrico Nicoletto2013-08-311-259/+321
|
* Adding new strings to copy/move event/task/memo and handle possible errors ↵Fabiano Fidêncio2013-08-301-0/+66
| | | | on those operations
* Bug #706901 - Large default book slows down composer openMilan Crha2013-08-301-4/+15
|
* Skip evolution from 'Open with' list of applications on attachmentsMilan Crha2013-08-291-0/+26
|
* Bug #706814 - Do not use folder uri in copy/move folder errorsFabiano Fidêncio2013-08-292-7/+25
|
* Updated Lithuanian translationAurimas Černius2013-08-281-343/+331
|
* Updated Galician translationsFran Diéguez2013-08-271-335/+341
|
* Bug #658164 - Pressing the "Make this Occurrence Movable" changes meeting timeFabiano Fidêncio2013-08-271-1/+1
|
* Bug #659715 - Reject folder copy/move in offlineFabiano Fidêncio2013-08-272-18/+66
|
* User docs: Fix a 404 linkAndre Klapper2013-08-271-1/+1
|
* User docs: Remove link to external 404 pageAndre Klapper2013-08-271-1/+1
|
* User docs: Garrrrrr. Fix typos.Andre Klapper2013-08-271-2/+2
|
* User docs: Mark images without text as non-translatable. Bug #706596Andre Klapper2013-08-2713-37/+37
|
* Update French translationAlexandre Franke2013-08-241-2546/+2754
|
* Update French translationAlexandre Franke2013-08-241-2138/+2562
|
* Bug 706463 - Refcounting error in e_mail_reader_reply_to_message()Matthew Barnes2013-08-231-11/+2
| | | | | | Highlight a section of a mailing list post, click Reply, answer "Reply Privately", Evolution mishandles the source message's reference count, causing the message to finalize too early and crash in Camel.
* EMailReader cleanups.Matthew Barnes2013-08-231-11/+13
|
* EShellSearchbar: Put focus on search results after changing filter.Matthew Barnes2013-08-221-4/+20
| | | | | | Direct the focus away from the filter combo box so the next keyboard event doesn't change the selected filter. The user is probably trying to navigate search results.
* Updated Hungarian translationBalázs Úr2013-08-221-112/+123
|
* Updated German help translationChristian Kirbach2013-08-211-1413/+1614
| | | | | | This is a fixed version of the previously reverted commit. Thanks to Daniel Mustieles García for tracking down the flaw.
* Bug #274144 - 'Update attendee status' might not be done multiple timesMilan Crha2013-08-211-4/+86
|
* Bug #698275 - Enable/disable account yields to a several seconds busy loopMilan Crha2013-08-213-31/+142
|
* Updated Brazilian Portuguese translationRafael Ferreira2013-08-211-114/+119
|
* Updated Polish translationPiotr Drąg2013-08-211-42/+42
|
* Bug #656804 - Cannot create folder with special characters in nameMilan Crha2013-08-201-2/+4
|
* Bug #682277 - Multiselect of messages causes slow UI updateMilan Crha2013-08-204-36/+76
|
* Updated Malayalam TranslationAnish A2013-08-201-2124/+2268
|
* Updated Polish translationPiotr Drąg2013-08-191-2390/+2366
|
* Post-release version bump.Matthew Barnes2013-08-181-1/+1
|
* NEWS update for 3.9.90 release.EVOLUTION_3_9_90Matthew Barnes2013-08-181-0/+45
|
* Update API documentation.Matthew Barnes2013-08-181-0/+1
|
* Revert "Updated German help translation"Matthew Barnes2013-08-181-1614/+1413
| | | | | | | | | | This reverts commit 83ce49534bc02a574b77a4072fdb973f43db8acf. This commit introduced a build break: Error: Could not merge translations: 'NoneType' object has no attribute 'node' make: *** [de/de.stamp] Error 1
* Updated Slovenian translationMatej Urbančič2013-08-181-1652/+1770
|
* folder_tree_model_folder_renamed_cb: Avoid duplicate rows.Matthew Barnes2013-08-181-0/+5
| | | | | | | Testing IMAP NOTIFY and folder renames, I observed a "folder-created" signal emission before the "folder-renamed" signal emission. So the renamed folder already exists in the tree model when we receive the "folder-renamed" signal. Make sure we handle that sanely.
* MailFolderCache: Avoid g_signal_handlers_disconnect_matched().Matthew Barnes2013-08-171-4/+0
| | | | store_info_unref() already disconnects the signal handlers one by one.
* [alarm-notify] Do not change selection on new reminder arrivalThomas Mittelstaedt2013-08-161-2/+4
| | | | Simply do not change selection when the dialog is already shown.
* Updated Traditional Chinese translation(Hong Kong and Taiwan)Chao-Hsiung Liao2013-08-162-156/+164
|
* Updated German help translationChristian Kirbach2013-08-151-1413/+1614
|
* Updated Spanish translationDaniel Mustieles2013-08-141-47/+49
|
* Fixed grammar mistake in the helpChristian Kirbach2013-08-141-1/+1
|
* Bug #698723 - Crash on saving contact with categoriesMilan Crha2013-08-131-15/+7
|