aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* EHTMLEditor: Move remove_node and remove_node_if_empty to EWebViewTomas Popela2014-06-164-150/+75
| | | | And use them in EHTMLEditorView if possible.
* EHTMLEditorView: Remove unused functionTomas Popela2014-06-161-21/+0
|
* EHTMLEditor - Fix block format change with selection in quoted contentTomas Popela2014-06-132-33/+66
|
* EHTMLEditorView - When changing from html to plain text mode adjust ↵Tomas Popela2014-06-131-8/+11
| | | | | | composer's content Apply width limits to paragraphs, remove images and replace smileys with its text version.
* Bug 731551 - [webkit-composer] Whitespace lost on message reply (plain text)Tomas Popela2014-06-131-1/+18
| | | | | | Replace whitespace with non breaking space ( ) to avoid its lost. Also when generating the plain text version of final message replace non breaking space with normal space.
* EWebView - Check if the link has fragmentTomas Popela2014-06-131-1/+1
| | | | Some links doesn't have the framegment so check for it before accessing it.
* EHTMLEditorSelection - Return the format of list that we determined for ↵Tomas Popela2014-06-131-1/+3
| | | | ordered list
* EMsgComposer - Return body's innerText instead of plain text in ↵Tomas Popela2014-06-131-1/+5
| | | | | | | | | e_msg_composer_get_raw_message_text The only consumer of e_msg_composer_get_raw_message_text is the Attachment Reminder plugin that is just searching for given words in message's text. For this purpose the innerText is enough and getting it is a lot faster than generating the plain text version of composer's content.
* tests: fix ugly scrolling problemVadim Rutkovsky2014-06-131-1/+1
|
* EClientSelector: Do not check connection for empty or "localhost" hostMilan Crha2014-06-131-1/+1
| | | | Related to bug 731585
* Check whether value really changed in callbacks of GSettings::changed signalMilan Crha2014-06-122-7/+73
| | | | | Just two more places, which are new after a merge of the webkit-composer branch changes.
* Fix runtime warnings when opening Edit->PreferencesMilan Crha2014-06-122-7/+0
| | | | | These were new after merging webkit-composer branch changes, but just some leftovers.
* tests: don't scroll up if we're checking IMsVadim Rutkovsky2014-06-111-2/+2
|
* EHTMLEditor: Set right width to paragraphs that are quotedTomas Popela2014-06-112-6/+5
|
* EHTMLEditorView: Introduce is_return_key and use it where possibleTomas Popela2014-06-111-20/+14
|
* EHTMLEditorView: Rename quote_character class to -x-evo-quote-characterTomas Popela2014-06-111-16/+16
|
* tests: correctly detect if contact editor section needs expandingVadim Rutkovsky2014-06-111-9/+8
|
* Bug 704663 - Crash under em_folder_tree_model_add_store()Milan Crha2014-06-114-4/+49
|
* tests: correctly fetch combobox/textbox pair in contact editorVadim Rutkovsky2014-06-111-8/+15
|
* Bug 731278 - Next message is not selected after moveMilan Crha2014-06-111-3/+1
|
* tests: don't attach empty stdout / stderrVadim Rutkovsky2014-06-111-2/+5
|
* Bug 678843 - May re-prompt password on message sendMilan Crha2014-06-102-3/+43
| | | | | Follow-up fix, forgotten place to re-enable password prompt when sending message.
* tests: correctly calculate combobox/textbox pairVadim Rutkovsky2014-06-101-1/+1
|
* tests: don't use pkexecVadim Rutkovsky2014-06-101-1/+1
|
* tests: capture stdoutVadim Rutkovsky2014-06-102-12/+31
|
* Fix possible crash after migrate of mbox to maildirMilan Crha2014-06-101-0/+7
| | | | | | | Folders can leave notifications in the main loop which would be delivered on idle, but these can be left in the main loop longer than the temporary CamelSession object is alive, which leads to a crash, because of the CamelStore's descendant being freed too early.
* EHTMLEditor: Fix various bugs in block in/undentTomas Popela2014-06-102-14/+24
| | | | | | Fix the wrong position of caret when in/undenting empty block and don't lose spell checked words when in/undenting. Also don't insert unnecessary empty lines into plain text version of message when processing indented block.
* EHTMLEditorView: Skip BR on the end of HTML that's parsed into paragraphsTomas Popela2014-06-101-1/+1
| | | | Do that to avoid unnecessary empty paragraph element.
* EHTMLEditorView: Replace Tab character with 8 spaces instead of 4Tomas Popela2014-06-101-3/+3
|
* Bug 731416 - [webkit-composer] Busy-loop when replying to an emailTomas Popela2014-06-101-1/+4
| | | | | Don't try to wrap words that are longer than defined word wrap length, otherwise we will end in busy loop.
* Bug 540362: [webkit-composer] Use webkit for composerTomas Popela2014-06-09211-5470/+32916
| | | | Merge wip/webkit-composer branch into master.
* Updated French translationAlexandre Franke2014-06-091-1833/+2028
|
* Bug 668006 - Crash when dragging column headers of Tasks listMilan Crha2014-06-061-8/+7
|
* Bug 731321 - Missing custom types when loading .ui definitionMilan Crha2014-06-068-4/+18
|
* Bug 730977 - Online state change received in a dedicated threadMilan Crha2014-06-061-4/+54
|
* Bug 227536 - Add "Message Location" filter optionMilan Crha2014-06-061-0/+18
|
* Ignore false GSettings key change notificationsMilan Crha2014-06-057-12/+139
| | | | | | | Similar to GObject::notify, the GSettings::changed can be emitted even if a key didn't change. It's up to the user (aka evolution) to test for real changes, thus let's do it. It may have certain performance positive impact too.
* Properly disconnect signal handlers added with e_signal_connect_notify*()Milan Crha2014-06-0516-30/+151
| | | | | | | | | | | This is a follow-up for the previous commit, where e_signal_connect_notify*() functions had been added. Due to a different callback and user data being attached to the 'notify' signal, the g_signal_handlers_*() functions do not work properly, thus these e_signal_connect_notify*() functions need a different way for a signal handler disconnect. A side-change was done in e-settings-web-view-gtkhtml.c, checking for a real key change from GSettings.
* Ignore false GObject property change notificationsMilan Crha2014-06-0568-170/+513
| | | | | | | | | | | | | | | | | | | | | | This is related to bug 698275, which did not cover all cases. The problem here is that the dconf can in certain situation claim that everything changed (path "/" changed), which GSettingsBinding propagates to a GObject property unconditionally and GObject's property setter (g_object_set_property()) also notifies about the property change unconditionally, despite the real descendant property setter properly checks for the value change. After all these false notifications a callback on "notify" signal is called and possibly an expensive operation is run. Checking whether the value really changed helps in performance, for which were added new e-util functions: e_signal_connect_notify() e_signal_connect_notify_after() e_signal_connect_notify_swapped() e_signal_connect_notify_object() which have the same prototype as their GLib counterparts, but they allow only "notify::..." signals and they test whether the value really changed before they call the registered callback.
* Bug 730738 - Extra new line at the beginning of the message in Edit as NewMilan Crha2014-06-031-3/+0
|
* Bug 604346 - Ctrl+Enter sends mail without asking confirmationMilan Crha2014-06-035-0/+111
|
* Add "Send messages through Outbox folder" optionMilan Crha2014-06-024-1/+38
| | | | | | | | | | | Users ask from time to time for the old behaviour when the messages used to be saved through Outbox, rather than the composer being opened all the time the message is sending. The change is pretty simple, thus why not to add it. Note the Outbox is not flushed after sending, the users is responsible to invoke the Outbox flush on his/her own. This also allows a user to postpone the message send for later.
* Bug 731082 - Send mail in offline mode should use Outbox folderMilan Crha2014-06-021-0/+8
|
* Bug 729303 - Default width of Message Filters window is too smallMilan Crha2014-05-301-0/+1
|
* Bug 729519 - [Composer] Do not show 'Untitled Message' in Discard questionMilan Crha2014-05-302-3/+13
|
* Bug 729667 - Create Folder window is much too shortMilan Crha2014-05-301-0/+1
|
* Bug 729963 - Include SIP, IM and TEL while merging contacts + Allow to ↵Christian Schaarschmidt2014-05-291-100/+174
| | | | select GivenName, FN
* Bug 729905 - [external-editor] Mark composer changed after message body setMilan Crha2014-05-291-0/+2
|
* Bug 730110 - Search results include also last email looked atMilan Crha2014-05-281-0/+1
|
* Bug 730743 - Add an option to disable sender's photo search at gravatar.comMilan Crha2014-05-275-0/+136
|
* Bug 726746 - Allow to auto-empty trash without needing to exitMilan Crha2014-05-262-4/+213
|
* Bug 730144 - Sort Templates menu items alphabeticallyMilan Crha2014-05-261-0/+53
|
* Bug 730756 - Incorrect g_variant_unref() call after g_variant_builder_end()Milan Crha2014-05-262-3/+2
|
* Post-release version bumpMilan Crha2014-05-261-1/+1
|
* NEWS update for 3.13.2Milan Crha2014-05-261-0/+47
|
* Bug #730199 - [MessageList] Support dates with value larger than 2^32Milan Crha2014-05-246-26/+89
|
* Bug #730145 - Switching folders marks message as seenCarl Schaefer2014-05-231-18/+16
|
* Runtime criticals when closing an appointment editor with remindersMilan Crha2014-05-231-0/+6
| | | | | | | There were printed two runtime warnings on close of an appointment editor when the appointment had filled any reminder. It was a side effect of a recent leak fix in an EAlarmList. The criticals were not critical, a NULL pointer had been used on a place where it should not.
* Updated German translationChristian Kirbach2014-05-231-728/+823
|
* Update tar format to tar-ustarYanko Kaneti2014-05-201-1/+1
| | | | | | | | | "tar-ustar selects the ustar format defined by POSIX 1003.1-1988. This format is believed to be old enough to be portable. It fully supports empty directories. It can store file names with up to 256 characters, provided that the file name can be split at directory separator in two parts, first of them being at most 155 bytes long. So, in most cases the maximum file name length will be shorter than 256 characters." From http://www.gnu.org/software/automake/manual/html_node/List-of-Automake-options.html
* Custom mail account order reset on an account add or removeMilan Crha2014-05-201-30/+91
| | | | | | | | It was quite discouraging to change order of mail accounts when it reset to default sort order when a new account had been added or an old removed. Rather than reset the order, the Evolution should adapt the account count change properly, same as sort newly added accounts by the default sort function.
* Bug #563048 - Prefer Inbox type over other types in folder descriptionMilan Crha2014-05-201-4/+11
|
* Updated Czech translationMarek Černocký2014-05-201-1/+1
|
* Updated Czech translationMarek Černocký2014-05-201-7/+7
|
* tests: give an app 5 secs to startVadim Rutkovsky2014-05-161-1/+1
|
* Bug #678843 - May re-prompt password on account re-enableMilan Crha2014-05-1324-76/+533
|
* tests: correctly search for combobox-textbox pairVadim Rutkovsky2014-05-111-3/+4
|
* tests: make addressbook_contacts test shorterVadim Rutkovsky2014-05-111-186/+37
|
* tests: run pkexec journalctlVadim Rutkovsky2014-05-111-1/+1
|
* EContactEditor: Make sure custom widget types are availableMilan Crha2014-05-091-0/+7
| | | | Make sure evolution's widget types are available before loading the .ui file.
* EContactEditor: Restore focused widget in sensitize_all()Milan Crha2014-05-091-0/+17
| | | | | | | Recent changes in commit c2de4087369147e introduced a regression in preselected widget after editor open, it was 'e-mail', instead of 'fullname' after that commit. The focus changes when the dyntable was updating maximum allowed entries in itself.
* Bug #691957 - MDN: Do not show "Sender has been notified..." messageMilan Crha2014-05-091-5/+1
| | | | | | | Evolution doesn't have any capability to distinguish between truly sent read receipts and those cancelled, neither it stores anywhere the date of the read receipt send, thus showing to users an information about "Sender has been notified..." is only confusing to them.
* [l10n] Updated Catalan (Valencian) translationCarles Ferrando2014-05-091-4346/+4767
|
* Updated Russian translationYuri Myasoedov2014-05-071-423/+459
|
* EWebView: Rework how link with fragment is detected, use SoupURI for itTomas Popela2014-05-071-7/+55
| | | | | Also when hovering over the link with fragment that points to message don't show the whole URI in status bar, but just the fragment.
* Bug #666142 - Filtered message not opened in a separate windowMilan Crha2014-05-065-13/+21
|
* Bug #653892 - Allow to enter more than four email addressesChristian Schaarschmidt2014-05-069-538/+573
|
* EWebView: Allow navigation in page through HTML anchor elementsTomas Popela2014-05-051-3/+14
|
* EFileRequest: Fix build with additional debug messages enabledTomas Popela2014-05-051-1/+7
|
* Finnish translation updateJuhani Numminen2014-05-011-1207/+1098
|
* Bug #729084 - Use tel: URI instead of callto: for phone numbersMilan Crha2014-04-305-21/+37
| | | | | | | | | This change does a bit more, actually: - learn the code of "tel" URI, being handler similar to "sip", "callto", "h323" - generate tel: URIs for phone numbers, but only if the leading character of the phone number is a plus ("+") sign - always remove spaces in href part in the e_text_to_html() when E_TEXT_TO_HTML_URL_IS_WHOLE_TEXT flag is set
* Bug 729256: Busy loop under replace_local_image_links()Tomas Popela2014-04-301-39/+28
| | | | | Rework replace_local_image_links to use CSS selectors to avoid iterating through the DOM tree.
* tests: eliminate tabs from testsVadim Rutkovsky2014-04-301-1/+1
|
* tests: remove extra table header from addressbook.featureVadim Rutkovsky2014-04-301-1/+0
|
* tests: scroll to the bottom of contact editor if neededVadim Rutkovsky2014-04-301-0/+5
|
* tests: make a small pause for menu to appearVadim Rutkovsky2014-04-291-0/+1
|
* EContactEditor: IM field is focused after editor openMilan Crha2014-04-291-0/+17
| | | | | | | Due to made widget changes in fill_in_all() the focus can change from the full name entry elsewhere. Remembering focused widget and restoring it at the end of the function makes the editor being opened with full name entry instead, as expected.
* EContactEditor: IM service name not localized properlyMilan Crha2014-04-291-1/+1
| | | | | The IM service names are correctly marked for translation, but they are not localized (passed to gettext) at the place of its usage.
* Bug #685323 - Provide SIP field for contactsMilan Crha2014-04-296-34/+611
|
* tests: attach journald logs to html reportVadim Rutkovsky2014-04-291-1/+11
|
* Updated Slovenian translationMatej Urbančič2014-04-291-121/+125
|
* Updated Slovenian translationMatej Urbančič2014-04-291-1/+10
|
* tests: wait until contact editor is hidden while savingVadim Rutkovsky2014-04-292-0/+3
|
* tests: add necessary comboboxes in contact editor if neededVadim Rutkovsky2014-04-291-3/+9
|
* tests: fix searchbar lookupVadim Rutkovsky2014-04-291-3/+4
|
* Fix regressions after commit fdde3339619Milan Crha2014-04-287-25/+17
| | | | | The commit fixed few memory leaks, but also caused several crashes due to those changes, thus this fixes the introduces issues.
* Post-release version bump.Matthew Barnes2014-04-271-1/+1
|
* NEWS update for 3.13.1 release.Matthew Barnes2014-04-271-0/+54
|
* Remove explicit adwaita-icon-theme dependency.Matthew Barnes2014-04-271-6/+0
| | | | | | | | | | | | | The last time we needed to explicitly depend on a particular g-i-t version was when "default-avatar" was added, but that was nearly 4 years ago. The new "adwaita-icon-theme" dependency breaks the build on anything less than a bleeding-edge environment, so I think we'd be better off just leaving the dependency implicit. Alternatively we could still explicitly check for gnome-icon-theme as a fallback for adwaita-icon-theme, but meh... it's not worth it IMO.
* build: gnome-icon-theme is now adwaita-icon-themeVadim Rutkovsky2014-04-261-1/+1
|
* tests: don't prompt for default mail handlerVadim Rutkovsky2014-04-262-4/+2
|
* tests: temporary disable long shortcuts testsVadim Rutkovsky2014-04-261-3/+2
|
* Leftover "Generating message list..." info in a message-listMilan Crha2014-04-251-0/+1
| | | | | | | | In some cases, like on errors or cancel, there could be left an information in the message-list that the list is generating its content, while it didn't do it in reality. This always resets the message-list information in case the current message-list generation finished and was the last in the queue.
* tests: set evo as default email clientVadim Rutkovsky2014-04-251-0/+3
|
* tests: make an html reportVadim Rutkovsky2014-04-251-1/+1
|
* tests: add addressbook testsVadim Rutkovsky2014-04-255-4/+659
|
* Fix various memory leaksMilan Crha2014-04-2517-23/+72
|
* tests: when switching tabs make sure required service is runningVadim Rutkovsky2014-04-241-0/+23
|
* tests: don't restart Evolution after initial setupVadim Rutkovsky2014-04-241-4/+0
|
* Updated Greek translationTom Tryfonidis2014-04-241-87/+90
|
* tests: store the screenshot for failed testsVadim Rutkovsky2014-04-242-1/+16
|
* [EActivityBar] Reset priv->timeout_id when the timeout is reachedMilan Crha2014-04-241-2/+39
| | | | | | | Since GLib begun to claim about incorrect ids being passed to g_source_remove(), a problem with EActivityBar had been discovered, it doesn't unset its priv->timeout_id when the timeout is reached, which leads to the new runtime warnings from GLib.
* Make 'Copy Link Location' copy into both primary and selection clipboardsMilan Crha2014-04-221-1/+5
| | | | | | | It used to copy the link into both buffers, same as the 'Copy Email Address" does, but it seems, after a move to WebKit based message preview, this changed and the link had been copied only to the selection clipboard. Make the function consistent and copy the link into to both clipboards.
* Updated Greek translationmarablack32014-04-191-1615/+1968
|
* Bug #699797 - Verify SSL trust after redirectionMatt McCutchen2014-04-181-84/+13
|
* Newly created folders always marked as having subfoldersMilan Crha2014-04-171-3/+2
| | | | | This corrects, a bit, a regression caused by commit b0106cc8, reported at https://bugzilla.gnome.org/show_bug.cgi?id=722698#c13
* Updated Slovenian translationMatej Urbančič2014-04-131-3/+4
|
* Bug #684425 - Do not pass NULL text to gtk_entry_set_text()Milan Crha2014-04-1115-29/+126
|
* Bug #727967 - Undo/Redo text is not displayed in menusMilan Crha2014-04-112-4/+4
|
* Bug #727888 - Wrap the Location label in a reminder dialogMilan Crha2014-04-112-0/+8
|
* tests: don't check that Skip Lookup button is hidden due to bug 726539Vadim Rutkovsky2014-04-111-2/+3
|
* tests: initial setup: rewrite Next/Continue button detectionVadim Rutkovsky2014-04-111-12/+7
|
* tests: initial setup: find windows by roleNameVadim Rutkovsky2014-04-111-6/+6
| | | Headerbar is now uses in initial setup wizard, so the name of window changes on moving to a different page
* tests: Continue button was renamed to 'Next'Vadim Rutkovsky2014-04-111-7/+7
|
* tests: rename test m4 to a nice nameVadim Rutkovsky2014-04-111-9/+11
| | | | The new m4 also fixes srcdir != builddir issue
* Updated Russian translationYuri Myasoedov2014-04-111-694/+762
|
* Updated Russian translationYuri Myasoedov2014-04-111-253/+247
|
* Reset MessageList::seen_id in mail_reader_message_seen_cb()Milan Crha2014-04-111-0/+6
| | | | | | Otherwise invalid source ID is used in the call of g_source_remove() when is tried to remove "pending" auto-mark-as-seen timeout callback. It can show a runtime warning on a console too.
* Updated Slovenian translationMatej Urbančič2014-04-051-3/+3
|
* Fix few more memory leaksMilan Crha2014-04-042-1/+7
|
* EMailDisplay: Install HTML click event handlers on images in all framesTomas Popela2014-04-041-22/+22
| | | | | The handlers were installed just on main frame. Thus if subframe contained +/- images to show/hide i.e. CC'ed people it was not working.
* Updated Slovenian translationMatej Urbančič2014-04-041-251/+254
|
* Cancel pending mail operations when going offline or on quitMilan Crha2014-04-031-7/+21
| | | | | | | This used to be done in mail_cancel_all(), but since commit 8ae3cc32830179e09 the function is gone and the mail operations are not cancelled, which prevents the application to go offline or to quit in a timely manner, because it's waiting for a finish of possibly expensive operations.
* Updated Italian translationGianvito Cavasoli2014-04-031-11267/+9641
|
* Updated Czech translationMarek Černocký2014-04-031-13/+13
|
* Updated Czech translationMarek Černocký2014-04-021-1/+1
|
* Bug #340075 - More IM contact fieldsChristian Schaarschmidt2014-04-022-424/+255
|
* Updated Czech translationMarek Černocký2014-04-021-1/+1
|
* Updated Czech translationMarek Černocký2014-04-011-1/+1
|
* Fixed a menu item nameMarek Černocký2014-04-011-1/+1
|
* Updated Czech translationMarek Černocký2014-04-011-1/+1
|
* doap: update URLsPiotr Drąg2014-03-312-5/+5
|
* Updated German translationChristian Kirbach2014-03-301-652/+721
|
* e-util: Port to thread-safe ECategories APIPhilip Withnall2014-03-2819-57/+82
| | | | | | | | | | | | | | This ports the following two function calls throughout Evolution: • e_categories_get_list() to e_categories_dup_list() • e_categories_get_icon_file_for() to e_categories_dup_icon_file_for() It necessarily changes some internal e-util API: • e_util_get_searchable_categories() to e_util_dup_searchable_categories() This bumps the EDS requirement to 3.13.1. https://bugzilla.gnome.org/show_bug.cgi?id=727221
* Bug #726542 - Unpadded black border on various mail account settings pagesMilan Crha2014-03-289-0/+9
|
* Bug #726654 - Search bar's filter change may not steal keyboard focusMilan Crha2014-03-271-7/+0
|
* POTFILES.skip: Remove unexistent filesMilan Crha2014-03-271-22/+0
|
* Drop image-inline pluginMilan Crha2014-03-275-666/+1
| | | | | | The GtkImageView didn't receive any change for the past two years, and since Evolution uses WebKitGTK the plugin lost its value. The same can be done with WebKit too, in some extent, once someone implements it.
* POTFILES.in: Return back accidentally removed line from the previous commitMilan Crha2014-03-271-0/+1
|
* POTFILES.in: Add a new mail/e-mail-folder-create-dialog.cMilan Crha2014-03-271-1/+1
|
* Add EMailFolderCreateDialog.Matthew Barnes2014-03-2710-312/+702
| | | | Subclass of EMFolderSelector, replaces em_folder_utils_create_folder().
* Add em_folder_selector_new_activity().Matthew Barnes2014-03-272-0/+36
| | | | | Returns a new EActivity configured to display status and error messages directly in the selector dialog.
* EMFolderSelector: Add an activity bar.Matthew Barnes2014-03-271-0/+7
|
* EMFolderSelector: Use an ETreeViewFrame.Matthew Barnes2014-03-271-59/+62
| | | | | | | | Convert the folder selector's "New" button to a [+] button on an inline toolbar beneath the folder tree. The symbolic button looks better, and clicking it no longer triggers a "response" signal, which terminates a gtk_dialog_run() call. We don't want gtk_dialog_run() to terminate in this case.
* EMFolderSelector: Add a "folder-selected" signal.Matthew Barnes2014-03-272-7/+41
| | | | This makes EMFolderSelector a little more "subclassable".
* Add em_folder_selector_set_selected().Matthew Barnes2014-03-272-0/+31
| | | | | Mostly a convenience function so callers don't have to dig up the dialog's folder tree widget.
* Add em_folder_selector_get_selected().Matthew Barnes2014-03-272-0/+43
| | | | Will eventually replace em_folder_selector_get_selected_uri().
* Add em_folder_selector_get_content_area().Matthew Barnes2014-03-272-0/+24
| | | | A more useful alternative to gtk_dialog_get_content_area().
* EMFolderSelector: Override constructed() method.Matthew Barnes2014-03-271-158/+159
| | | | | | | | Now that all the instantiation arguments have either been eliminated or made into GObject properties, we can initialize the dialog properly via the constructed() method instead of some custom internal function. This makes EMFolderSelector a LOT more "subclassable".
* EMFolderSelector: Remove 'title' argument when creating.Matthew Barnes2014-03-278-23/+29
| | | | | | Just call gtk_window_set_title() after creating the dialog. This makes EMFolderSelector a little more "subclassable".
* EMFolderSelector: Add a "default-button-label" property.Matthew Barnes2014-03-278-22/+112
| | | | | | | Replaces the 'oklabel' argument when creating a new dialog, and can be changed after the dialog is created. This makes EMFolderSelector a little more "subclassable".
* EMFolderSelector: Add a "caption" property.Matthew Barnes2014-03-278-34/+113
| | | | | | | Replaces the 'text' argument when creating a new dialog, and can be changed after the dialog is created. This makes EMFolderSelector a little more "subclassable".
* EMFolderSelector: Add a "can-create" property.Matthew Barnes2014-03-278-31/+104
| | | | | | | Replaces the EM_FOLDER_SELECTOR_CAN_CREATE flag, and can also be set after the selector dialog is instantiated. This makes EMFolderSelector a little more "subclassable".
* EMFolderSelector: Further cleanups.Matthew Barnes2014-03-272-123/+154
|
* EMFolderSelector: Implement EAlertSink interface for real.Matthew Barnes2014-03-271-3/+47
|
* EMFolderSelector: Seal up the public instance struct.Matthew Barnes2014-03-272-38/+26
|
* EMFolderSelector: Make EM_FOLDER_SELECTOR_RESPONSE_NEW private.Matthew Barnes2014-03-272-4/+3
|
* Fix two memory leaksMilan Crha2014-03-262-7/+3
| | | | | | | a) ETableColumnSpecification: the 'title' property is always overwritten during the spec file loading, thus no need to allocate it here b) the 'uids' are leaked on message move, because the GPtrArray is supposed to be always unreffed
* [text-highlight] Fix a possible memory leakMilan Crha2014-03-261-0/+1
| | | | | The related part of the code could be reached also when the 'syntax' variable had been previously set to a newly allocated string, thus (try to) free it first.
* User docs: Fix broken See Also linkAndre Klapper2014-03-261-1/+1
|
* User docs: Update href links for project page etc.Andre Klapper2014-03-265-8/+8
|
* User docs: Fix broken link to Seahorse docsAndre Klapper2014-03-261-2/+2
|
* User docs: Fix page IDAndre Klapper2014-03-261-1/+1
|
* User docs: Link to more specific Seahorse user docs pageAndre Klapper2014-03-261-3/+4
|
* User docs: Update instructions due to Google doc changesAndre Klapper2014-03-261-3/+7
|
* User docs: Mark some names as non-translatableAndre Klapper2014-03-261-11/+11
|
* User docs: Use proper markupAndre Klapper2014-03-261-1/+1
|
* User docs: Don't use 'mails'; mail is plural alreadyAndre Klapper2014-03-262-3/+3
|
* User docs: Use 'Mail' instead of 'E-Mail' or 'Emails'Andre Klapper2014-03-262-3/+3
|
* User docs: Remove Palm sync instructions - too old nowAndre Klapper2014-03-261-37/+1
|
* User docs: Use Unicode for ellipsisAndre Klapper2014-03-2630-32/+32
|
* User docs: Use proper markupAndre Klapper2014-03-261-4/+4
|
* User docs: Change 'user name' to 'username' as everywhere elseAndre Klapper2014-03-261-1/+1
|
* User docs: Simplify pathname in home directoryAndre Klapper2014-03-261-1/+1
|
* User docs: Harmonize some strings about entering URLAndre Klapper2014-03-264-4/+4
|
* User docs: Improve instructionsAndre Klapper2014-03-261-3/+3
|
* EPhotoCache: Fix a memory leakMilan Crha2014-03-251-2/+3
|
* Add an --enable-code-coverage configure option to enable gcov supportMilan Crha2014-03-2573-178/+273
| | | | | When enabled, this will compile all libraries/binaries with the necessary gcc and ld flags to enable code coverage support using gcov.
* Add installed tests using --enable-installed-tests switchVadim Rutkovsky2014-03-258-0/+810
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=726832
* Fix memory leaks from a commit for bug #508744Milan Crha2014-03-251-0/+3
| | | | I missed that part when copying the code from a test program I cooked.
* Bug #545106 - [Automatic Contacts] Adds duplicate email addressesWatson Yuuma Sato2014-03-251-46/+104
|
* Bug #724059 - Allow arbitrary number of phone entries in the contact editorChristian Schaarschmidt2014-03-245-434/+1026
|
* Bug #726110 - Use gtk_drag_check_threshold() instead of hard-coded valuesMilan Crha2014-03-245-24/+14
|
* Updated Galician translationFran Dieguez2014-03-241-587/+651
|
* Bug #551793 - Alarms dialog: Change "Customize" optionAnup-Allamsetty2014-03-242-24/+1
|
* Bug #508744 - Select PGP key from a list in mail account propertiesMilan Crha2014-03-243-0/+120
|
* Bug 719417 - Remove em-filter-i18n.hMatthew Barnes2014-03-246-573/+491
| | | | | Remove this old hack and translate the pre-defined filter/search/vfolder rules the same way any other XML file gets translated.
* l10n: Update Japanese translationJiro Matsuzawa2014-03-241-4279/+4803
|
* Updated Norwegian bokmål translationKjartan Maraas2014-03-241-271/+270
|
* folder_tree_render_icon: Readability cleanup.Matthew Barnes2014-03-241-1/+7
| | | | Makes the logic easier to debug too.
* Updated Russian translationYuri Myasoedov2014-03-231-128/+86
|
* Post-release version bump.Matthew Barnes2014-03-231-4/+4
|
* NEWS update for 3.12.0 release.Matthew Barnes2014-03-231-0/+18
|
* Forbid header bars in stock GTK+ dialogs.Matthew Barnes2014-03-231-0/+8
| | | | | Even in GNOME Shell, header bars look very out of place in Evolution. Override the system-wide setting to suppress them.
* Updated German translationChristian Kirbach2014-03-231-3876/+4246
|
* Updated Slovenian translationMatej Urbančič2014-03-231-4024/+4427
|
* Updated Basque languageInaki Larranaga Murgoitio2014-03-231-4267/+4751
|
* Updated Brazilian Portuguese translationEnrico Nicoletto2014-03-211-985/+1277
|
* Updated Danish translationKenneth Nielsen2014-03-211-4308/+4742
|
* Updated Russian translationYuri Myasoedov2014-03-201-777/+534
|
* Updated Hungarian translationGábor Kelemen2014-03-191-686/+1012
|
* Updated Portuguese translationDuarte Loreto2014-03-191-4951/+5619
|
* Updated Serbian translationМирослав Николић2014-03-182-8472/+9534
|
* Finnish translation update by Jiri GrönroosVille-Pekka Vainio2014-03-171-4433/+4828
|
* Post-release version bump.Matthew Barnes2014-03-161-2/+2
|
* Fix distcheck error.Matthew Barnes2014-03-161-3/+2
|
* NEWS update for 3.11.92 release.Matthew Barnes2014-03-161-0/+46
|
* Updated Ukrainian translationDaniel Korostil2014-03-161-1029/+1286
|
* Updated French translationAlainLojewski2014-03-161-4316/+4810
|
* Updated Hungarian translationGábor Kelemen2014-03-161-4240/+4776
|
* ECalConfigWeather: Fix a confusing translator comment.Matthew Barnes2014-03-151-7/+6
|
* Missing attachment button for attachments of a known typeMilan Crha2014-03-141-2/+0
| | | | | | | If there was a known formatter for the attachment's mime type, the attachment content was shown inline, without the attachment button, instead of it being shown collapsed and with the corresponding button. All that caused by a variable overwrite and a related memory leak.
* [l10n] Update Catalan translationPau Iranzo2014-03-141-4269/+4545
|
* Bug #710337 - Define ETree/ETable "alternating-row-colors" style propertyMilan Crha2014-03-142-2/+43
|
* Bug #726225 - [abrt] Memory corruption during message list regen after Trash ↵Milan Crha2014-03-141-2/+6
| | | | expunge
* Contact photos not always shown in a contact previewMilan Crha2014-03-131-2/+16
| | | | | | | | Locally stored photos were shown as a "missing image" instead of the actual photo for cases when the URL contained special characters which required to be encoded in the URL. This effectively updates commit 255e0529040baae67e3d70f1030ce248fd61856d, to check WebKit version for the unescape, because WebKit 2.2.5 (which I currently use) doesn't re-escape the URIs. Maybe earlier versions of the WebKit do the same.
* EWebView/EMailDisplay: Setup custom CSS styles to DOM right after document loadsMilan Crha2014-03-132-0/+7
| | | | | | | | | | | | | The custom styles, those which are added on-the-fly directly to DOM, were added only after whole document was completely loaded, which included also sub-frames content, thus when these were slow to download for any reason, the main frame content, like the top header bar, was shown with a default style, which is white background and black text color. The WebKitWebView's document-load-finished signal is emitted whenever the actual HTML content is loaded, and the DOM is available as well, for each frame, including the main frame of the WebView, thus updating/setting custom CSS styles in this signal handler makes the loaded frames look as expected, without waiting for other frames in the document to finish their load.
* Updated Polish translationPaweł Żołnowski2014-03-131-4206/+4465
|
* Bug #722938 - Adapt a11y code for newest gtkMike Gorse2014-03-1327-596/+128
| | | | | As of gtk+ 3.2, AtkObjectFactories are no longer used to generate accessibles for gtk widgets, so our custom atk classes need refactoring.
* Actually make the AppData file translatableRichard Hughes2014-03-122-1/+1
| | | | Evolution was installing a file with <_p> which made gnome-software very upset.
* Bug 711350: Cannot position caret in received message body without using the ↵Tomas Popela2014-03-111-1/+4
| | | | | | | | mouse If Caret mode is enabled don't try to process the navigation keys and don't set the focus on main frame to actually make the Caret mode working.
* Don't close base stream when destroying a CamelFilterOutputStream.Matthew Barnes2014-03-118-0/+20
| | | | | | | | | | | | | | | GFilterOutputStream, from which CamelFilterOutputStream is derived, defaults to closing its base stream when the instance is finalized. That makes sense in the general case, but CamelFilterOutputStreams are usually temporary wrappers on a more permanent base stream, so we need to remember to override the default "close-base-stream" property value. I was tempted to just make CamelFilterOutputStream override the default automatically, but I decided against it because my long term plan is to drop CamelFilterOutputStream for GConverterOutputStream which also does not override the "close-base-stream" default. The closer the semantics of the two classes match, the easier porting will be in the future.
* Bug #550697 - Crash after folder open in a closed mail viewMilan Crha2014-03-102-7/+38
|
* Updated Czech translationJiří Eischmann2014-03-101-3833/+4178
|
* Updated Latvian translationRūdolfs Mazurs2014-03-081-4324/+4795
|
* Updated Chinese (China) translationWylmer Wang2014-03-081-404/+386
|
* Bug 723204 - Account assistant is too wideMatthew Barnes2014-03-081-0/+1
| | | | | | Works around a GTK+ regression caused by: https://git.gnome.org/browse/gtk+/commit/?id=f18655c641dbe2ca2a28627538898be575667e1a
* Bug #711351 - Folder change in folder tree steals focusMilan Crha2014-03-074-2/+60
|
* Updated Indonesian translationAndika Triwidada2014-03-071-291/+305
|
* Updated Korean translationChangwoo Ryu2014-03-061-4277/+4566
|
* Bug #711658 - Time zone for new events sometimes defaults to UTCMilan Crha2014-03-066-9/+41
|
* Bug #725615 - Disable Delete button in a vTrash folderMilan Crha2014-03-062-3/+9
|
* Bug #446659 - Message view can scroll away after message deletionMilan Crha2014-03-063-78/+101
|
* Updated Norwegian bokmål translationKjartan Maraas2014-03-051-252/+251
|
* Bug #725402 - Checking sender for multiple images causes hangMilan Crha2014-03-051-4/+150
| | | | | | | | | | | | This was introduced around commit ef355cd5, when the caching of search results were dropped. The new function was also buggy, thus this commit fixes even that. Namely done changes: - cache email address book search results for 5 minutes - do not stop searching when any book fails to open (which can be due to temporary unreachable server, for example) - search in local books first
* Add a comment for translators above "_Send Account Override"Milan Crha2014-03-041-0/+2
|
* Updated Traditional Chinese translation(Hong Kong and Taiwan)Chao-Hsiung Liao2014-03-042-1434/+2062
|
* Updated Galician translationsFran Diéguez2014-03-041-787/+1084
|
* Post-release version bump.Matthew Barnes2014-03-031-1/+1
|
* NEWS update for 3.11.91 release.Matthew Barnes2014-03-031-1/+44
|