aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Make EAttachment a little more thread-safe.Matthew Barnes2013-05-2413-107/+255
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | EAttachment is now used from worker threads by EMailFormatterAttachment, so add some thread-safe accessor functions to eliminate potential races. Added thread-safe functions: e_attachment_dup_disposition() e_attachment_ref_file() e_attachment_ref_file_info() e_attachment_ref_icon() e_attachment_ref_mime_part() e_attachment_dup_description() e_attachment_dup_thumbnail_path() Renamed functions: e_attachment_get_mime_type() -> e_attachment_dup_mime_type() Removed non-thread-safe functions: e_attachment_get_file() e_attachment_get_file_info() e_attachment_get_icon() e_attachment_get_mime_part() e_attachment_get_description() e_attachment_get_thumbnail_path() (cherry picked from commit 9058c6f85dc49f9500e7e67819acfd8c0d2d369c)
* Attachment-related cleanups.Matthew Barnes2013-05-2410-207/+240
| | | | (cherry picked from commit 256422cab27d0b7adbe99fdeaceb72cd78c129bb)
* Updated Czech translationMarek Černocký2013-05-231-904/+877
|
* Assamese translation updatedNilamdyuti Goswami2013-05-231-145/+149
|
* Updated Polish translationPiotr Drąg2013-05-221-1399/+1320
|
* Bug #696663 - Save without close should update comp-editorFabiano Fidêncio2013-05-221-2/+86
|
* Simplify EABContactFormatter.Matthew Barnes2013-05-214-316/+56
| | | | | | | | | | | | | | | | | | | | | | | | Simplify the EABContactFormatter API as follows: * Drop all constructor arguments from eab_contact_formatter_new() since get/set functions exist for all of them. * Remove eab_contact_formatter_format_contact_async() since EABContactFormatter does not block. * Replace eab_contact_formatter_format_contact_sync() with eab_contact_formatter_format_contact() which drops the CamelStream and GCancellable arguments and takes a GString as an output buffer. * Remove the "state" and "style" properties, and always use a white background when rendering the full contact. This is particularly important since render_normal() dereferenced the GtkStyle without checking for NULL, which would crash on mails with a vCard MIME part when "Show Full vCard" was clicked, because the "vcard-inline" module never set a GtkStyle. (cherry picked from commit badc0e6156777c65885bad6858a6f44f7cbf037e)
* EABContactFormatter cleanups.Matthew Barnes2013-05-212-200/+184
| | | | (cherry picked from commit 3df09670afb44ecf2d39fb71a228f0fa7ebbdb73)
* Updated Odia Translation.ManojKumar Giri2013-05-171-1165/+795
|
* Updated Odia Translation.ManojKumar Giri2013-05-161-113/+104
|
* Assamese translation updatedNilamdyuti Goswami2013-05-151-2607/+2717
|
* Bug #699980 - Calendar delete does not remove events from viewMilan Crha2013-05-144-0/+17
|
* Updated Norwegian bokmål translationKjartan Maraas2013-05-131-1309/+1248
|
* Post-release version bump.Matthew Barnes2013-05-121-1/+1
|
* NEWS update for 3.8.2 release.EVOLUTION_3_8_2Matthew Barnes2013-05-121-0/+37
|
* Bug 697632 - [mail-to-task] Invalid unref of a CamelFolderSamarjit Adhikari2013-05-121-3/+1
| | | | | | | | | | | | | | e_mail_reader_get_folder() does not return a new CamelFolder reference, yet mail_to_event() was acting as though it does. This caused a crash after the function ran and Evolution tried to use the folder again. Truth be told, e_mail_reader_get_folder() really *should* return a new reference to ensure the CamelFolder is not finalized while it's in use. But we would need to rename the function to e_mail_reader_ref_folder() to reflect the change in semantics, and I suspect the function is used in a great many places. (cherry picked from commit f0151c785648b44850b46fa50336126c282fcc58)
* EMailPrinter: Fix a couple typos.Matthew Barnes2013-05-111-1/+2
| | | | (cherry picked from commit 35f0a8499360e6a9a62a17308b0c4847074d90ab)
* Bug 7000028 - Drag-n-drop export of a file produces 0 sized PDF fileMatthew Barnes2013-05-111-29/+36
| | | | | | | | | | | | | em_utils_print_messages_to_file() was doing so asynchronously, but unfortunately drag-n-drop is a synchronous protocol. So by the time the asynchronous print operation completed, the URI list pointing to the temporary PDF files had already been passed to the file manager. The only reason the files were created at all was because we test the generated file name with open(...O_CREAT...) before starting the print operation, and I'm not convinced that test is even necessary. (cherry picked from commit 72f465b17342831163422cad05eaa6e648fffa19)
* Convert e_mail_printer_print() to a proper async function.Matthew Barnes2013-05-115-249/+349
| | | | | | | | This adds a GAsyncReadyCallback and a closure to e_mail_printer_print(), and trades the "done" signal for e_mail_printer_print_finish() so that EMailPrinter is a little more reentrant. (cherry picked from commit 16a95bfa16b3864268e0ab0916bb6c02ec626fe0)
* EMailPrinter cleanups.Matthew Barnes2013-05-112-191/+237
| | | | (cherry picked from commit 3acb2d672821efd599d1fad0a55808de6b9bd495)
* em-utils.c cleanups.Matthew Barnes2013-05-111-95/+93
| | | | (cherry picked from commit 459cbbd9c74fee5fd05a05c2bf45a83ad00b5cf6)
* Remove "drag-and-drop-save-name-format" setting.Matthew Barnes2013-05-113-21/+2
| | | | | | Hidden setting, no clear use case, and poorly implemented. (cherry picked from commit 289d96f5f0816a5fb3c642827c6f69a690a6574c)
* Right-align mail header names.Matthew Barnes2013-05-094-74/+166
| | | | | | | | | | | | We used to do this before WebKit and it looked better. Also fix up the header section for right-to-left locales: put the collapse button on the right, and images on the left. (cherry picked from commit 448aa307c324899a45b56d00c23d247b789eca27) Conflicts: em-format/e-mail-formatter-headers.c
* EMailFormatterHeaders cleanups.Matthew Barnes2013-05-092-40/+58
| | | | | | | | (cherry picked from commit 26ca1f2c563d5b4b2f3d3adcf427b8c3db62f4c4) Conflicts: em-format/e-mail-formatter-headers.c em-format/e-mail-formatter.h
* Coding style and whitespace cleanup.Matthew Barnes2013-05-0811-29/+29
|
* Newly configured Google calendar cannot be openedMilan Crha2013-05-073-22/+60
| | | | | | | | Unless the button to choose a calendar was clicked, because the calendar path is not filled, thus the server claims "HTTP 405 error", which means an OPTIONS request cannot be done on the path, which was just root of www.google.com, instead of a calendar path. (This was reported as part of bug #659522.)
* Bug #699551 - Signature is not removed on replyMilan Crha2013-05-076-6/+6
|
* Bug #699555 - prompt-on-mark-all-read doesn't work in context menuMilan Crha2013-05-032-16/+2
|
* Bug #696531 - Force white background for HTML partsMilan Crha2013-05-031-7/+7
|
* l10n: Update Japanese translationOKANO Takayoshi2013-05-021-371/+369
| | | | Fix typo
* Bug #699334 - Calendar: reply all doesn't quite workMilan Crha2013-05-011-5/+28
|
* Make sure EAddressbookModel has a fresh EBookClient.Matthew Barnes2013-04-301-29/+9
| | | | | | | | | | | | | | | | | | In the event of an address book backend abort, EClientCache detects this and invalidates its cached EClient (if it has one), so a new instance is created on the next request. EAddressbookModel is only handed an EClient once, which may become stale if the backend aborts. And even if the backend is restarted the address book will remain unresponsive in Evolution. This commit changes the behavior so that every time an address book is selected in the side bar, a fresh EClient instance is obtained from the EClientCache and handed to the EAddressbookModel. If the model already has that EClient instance, nothing happens. Otherwise the model resets itself and creates a new EBookClientView. (cherry picked from commit 6ec48e33ef01476246d943d941eb2e022687ef59)
* Missed a few evolution-settings.desktop.in references.Matthew Barnes2013-04-292-2/+0
| | | | (cherry picked from commit 8fa69fc517a31c276270c7bc10f7ea1377bbbca4)
* Updated POTFILES.inPiotr Drąg2013-04-291-1/+0
|
* Bug 699083 - X-GNOME-Bugzilla-OtherBinares missing trailing semicolonMatthew Barnes2013-04-281-1/+1
| | | | (cherry picked from commit 63e96ab38c4a013987114680476d2c2841e9df30)
* Remove evolution-settings.desktop.in.inMatthew Barnes2013-04-281-10/+0
| | | | | | Forgot to remove this along with evolution-settings. (cherry picked from commit 917544583ae7e1a6c23c2b0cfc132a5573a9fe82)
* Bug #626215 - Prefer mail saving in order by UIMilan Crha2013-04-263-0/+73
|
* Bug 698488 - Attachment file chooser should preview attachments' content ↵Fabiano Fidêncio2013-04-261-0/+35
| | | | when possible
* Bug 698487 - Contact Editor's Image's file chooser must show only images filesFabiano Fidêncio2013-04-261-4/+13
|
* ETaskShellSidebar: Remove unused "status-message" signal.Matthew Barnes2013-04-263-30/+0
| | | | (cherry picked from commit 80fb5269367c5ff703f3ae0dbb869330d65b6df0)
* ETaskShellSidebar: Submit an EActivity when obtaining an EClient.Matthew Barnes2013-04-261-51/+58
| | | | | | | | | Remove this status message nonsense that I came up with during the kill-bonoto rewrite. Instead submit a real EActivity to the shell backend. Mismanagement of the status message seems to be blocking application shut down in some cases. (cherry picked from commit 532e24fe115fa35f496b12415d539685f12c63d0)
* EMemoShellSidebar: Remove unused "status-message" signal.Matthew Barnes2013-04-263-30/+0
| | | | (cherry picked from commit afe1d97399538c8a5dedb18cf51ced4c8bb36203)
* EMemoShellSidebar: Submit an EActivity when obtaining an EClient.Matthew Barnes2013-04-261-51/+58
| | | | | | | | | Remove this status message nonsense that I came up with during the kill-bonobo rewrite. Instead submit a real EActivity to the shell backend. Mismanagement of the status message sesms to be blocking application shut down in some cases. (cherry picked from commit d4ae41915c2c0d63249aedf5bf1edc19f0bffed1)
* ECalShellSidebar: Remove unused "status-message" signal.Matthew Barnes2013-04-262-23/+0
| | | | (cherry picked from commit 3a0b447047afec2e00d36be56d0a2e325e2b7af1)
* ECalShellSidebar: Submit an EActivity when obtaining an EClient.Matthew Barnes2013-04-261-51/+58
| | | | | | | | | Remove this status message nonsense that I came up with during the kill-bonobo rewrite. Instead submit a real EActivity to the shell backend. Mismanagement of the status message seems to be blocking application shut down in some cases. (cherry picked from commit d39a6e140208ea2261a88fda5dc1b174c9dde4a6)
* Add e_activity_cancel().Matthew Barnes2013-04-266-14/+33
| | | | | | Convenience function cancels the activity's GCancellable. (cherry picked from commit 8b245838de22f470e867b28631240a018a0bc36b)
* Document EActivity.Matthew Barnes2013-04-261-3/+183
| | | | (cherry picked from commit d0a0a397987684334c5fd41b364218782bc9bcfd)
* ETaskShellSidebar: Remove some unnecessary #includes.Matthew Barnes2013-04-261-4/+0
| | | | (cherry picked from commit 3573cab310cf9e74a28163e5b8ee1f82b3884af6)
* EMemoShellSidebar: Remove some unnecessary #includes.Matthew Barnes2013-04-261-4/+0
| | | | (cherry picked from commit c34ed9f365ed43055aec3f33189bb574a52d9c94)
* ECalShellSidebar: Remove some unnecessary #includes.Matthew Barnes2013-04-261-4/+0
| | | | (cherry picked from commit a2ee4d2b5055181173154b51ec5309c671f0aaf4)
* ETaskShellSidebar: Reduce diff noise with master branch.Matthew Barnes2013-04-261-6/+3
|
* EMemoShellSidebar: Reduce diff noise with master branch.Matthew Barnes2013-04-261-6/+3
|
* ECalShellSidebar: Reduce diff noise with master branch.Matthew Barnes2013-04-261-14/+10
|
* Update libeutil API docs.Matthew Barnes2013-04-242-1/+2
|
* EPhotoCache: Fix a runtime warning.Matthew Barnes2013-04-211-7/+24
| | | | | | | Stop searching address books on the first error but don't indicate failure if we've managed to accumulate contacts prior to the error. (cherry picked from commit 5e1934425ddedb3848a66f16100e4ee1ea12aeb1)
* [l10n] Updated Catalan (Valencian) translationCarles Ferrando2013-04-201-5129/+5284
|
* [l10n] Update Catalan translationGil Forcada2013-04-201-5093/+5221
|
* User docs: bug 690696 - Remove last references to old IMAP backendAndre Klapper2013-04-204-62/+1
|
* EPhotoCache: Fix a documentation typo.Matthew Barnes2013-04-191-1/+1
| | | | (cherry picked from commit 65fed9486c084c4c913c9af296bb1e49b6e40b6d)
* Workaround broken Free/Busy fetching (Bug #692361)Milan Crha2013-04-192-0/+15
|
* Bug 698042 - Crash when sending e-mail with attachmentMatthew Barnes2013-04-191-2/+7
| | | | (cherry picked from commit d4473cf20a4991400f1ccbaecab8f8a82198a9a8)
* EShellBackend: Log outstanding activities during shutdown.Matthew Barnes2013-04-191-0/+38
| | | | | | | | | Log debug messages for outstanding activities during shutdown to help investigate stuck shutdown issues. Enable this feature with: G_MESSAGES_DEBUG=evolution-shell (cherry picked from commit fd6ff38fbd6dc82fe16c157dbdb4602b3277abfa)
* EShellBackend: Rework shutdown delay.Matthew Barnes2013-04-191-11/+24
| | | | | | | | | Use g_signal_connect_data() to automatically release the EActivity when the signal handler is disconnected, and keep the handler ID internally. This is cleaner than using g_signal_handlers_disconnect_by_func(). (cherry picked from commit 7a2673a359ed80ba3f3bcd569de108432da18e11)
* build: Fix srcdir != builddir from gitMatthew Barnes2013-04-183-12/+12
| | | | | | | | | | | Mimicing Colin's commit fb9b02e for E-D-S. We can't do (cd $(srcdir); ...) and inside reference $(top_srcdir) because that variable uses a *relative* path. Thus we copy the approach from gnome-shell of explicitly using addprefix to append the source directory. (cherry picked from commit 7dec65de1a2f3c879a53a7a1649b0d8899412a39)
* alarm-queue: Remove the "mail notifications not supported" dialogMatthew Barnes2013-04-181-24/+1
| | | | | | | | | | | | This dialog is all kinds of lame, not to mention ugly. It tends to pop up when evolution-alarm-notify starts and often steals input focus from the normal reminder dialog that pops up overtop of it. Let's not apologize for features not implemented. Instead of alerting the user that we'll show a normal reminder dialog in lieu of sending an email reminder, just show a normal reminder dialog. (cherry picked from commit 2f47b719dd129eb5821c2b186455c979e043f585)
* [web-inspector] Yet more shortcut tweaking.Matthew Barnes2013-04-181-1/+1
| | | | | | | | | Be more forgiving of modifiers. Check for GDK_CONTROL_MASK and GDK_SHIFT_MASK, but not to the exclusion of all other modifiers. There, that should make the shortcut work for everyone now. (cherry picked from commit d15dd3e89b4a29c3bbe2d4ac7be874f5aa965fb4)
* Fix duplicate entry in HELP_FILES.Matthew Barnes2013-04-171-1/+0
| | | | | | | | This has been breaking distcheck for ages! It figures it would turn out to be something this stupid... (cherry picked from commit c7ded9a0dfadc69f603c524c5816fe32229545f6)
* Post-release version bump.Matthew Barnes2013-04-141-1/+1
|
* NEWS update for 3.8.1 release.EVOLUTION_3_8_1Matthew Barnes2013-04-141-0/+55
|
* Updated slovak translationMarián Čavojský2013-04-141-648/+605
|
* Fix tags in the Hungarian helpGabor Kelemen2013-04-141-2/+2
|
* Bug 696175 - bbdb: Blocks main thread when obtaining an EBookClientMatthew Barnes2013-04-143-53/+46
| | | | (cherry picked from commit 26672df4db38e1726b66b1a3c893c9e894e762c0)
* bbdb plugin cleanups.Matthew Barnes2013-04-143-173/+138
| | | | (cherry picked from commit adf8a1bbead09a39ec1b15a164d78a9587ac1734)
* Restore "Automatic Contacts" plugin preferences page.Matthew Barnes2013-04-141-16/+106
| | | | | | | | | | | | This accidentally got dropped during the "account-mgmt" project. As much as I loathe EConfig, the "Automatic Contacts" plugin is useless without its Preferences page in the Contacts section. (cherry picked from commit 2abf047ec84e4d3ce31a4da86dceca3b0c9aaea1) Conflicts: modules/addressbook/autocompletion-config.c
* Improve consistency in Hungarian translationGabor Kelemen2013-04-131-2/+2
|
* ECalModel: Make view handling thread-safe.Matthew Barnes2013-04-131-221/+326
| | | | (cherry picked from commit 3e99eb24a88a6eddd2aeed1c302a32180e07cfb3)
* Add e_cal_model_ref_default_client().Matthew Barnes2013-04-1312-62/+100
| | | | | | Replaces e_cal_model_get_default_client(), which was not thread-safe. (cherry picked from commit 08d5bdcf8b8bef913c9ad175927d528ff432332f)
* Remove e_cal_model_get_client_for_source().Matthew Barnes2013-04-135-78/+30
| | | | | | | | | | Was not thread-safe because it did not reference the return value. The function was only used to implement the Refresh action on the sidebar menu. e_client_selector_ref_cached_client() works better for this anyway. (cherry picked from commit 1df4952769b3211b90aecb3a359d8ae484fd1363)
* Add e_cal_model_list_clients().Matthew Barnes2013-04-136-31/+35
| | | | | | | | | Replaces e_cal_model_get_client_list(). Does the same thing, except the returned ECalClient instances are referenced for thread-safety. (cherry picked from commit 1141e231478410ecd83c78507612e57f58f2ccf1)
* ECalModel: Make the ClientData queue thread-safe.Matthew Barnes2013-04-131-56/+124
| | | | (cherry picked from commit ebef28545a2a74d675142afd6921f5e0e65b4b76)
* ECalModel: Give ClientData a reference count.Matthew Barnes2013-04-131-103/+143
| | | | | | | | | | Adds some private ECalModel functions: client_data_new() client_data_ref() client_data_unref() (cherry picked from commit 01207c3c8ed00e6de1d66901b257bf3ffee7d350)
* ECalModel: Rename ECalModelClient struct to ClientData.Matthew Barnes2013-04-131-29/+31
| | | | | | | | ECalModelClient looks like a public type name, but it's strictly internal to ECalModel. Plus all the variable names of that type are already "client_data". (cherry picked from commit cf94e5b8097555b43b5fba3bdd44bee39ce47a4a)
* ECalModel: Track ECalModelClient structs in a GQueue.Matthew Barnes2013-04-131-55/+65
| | | | (cherry picked from commit e13548be64c6a2248a722775a4b5f7a11cd176e3)
* web-inspector: Change the shortcut key to match Chrome.Matthew Barnes2013-04-121-3/+3
| | | | | | | | | GDK_MOD1_MASK is ill defined across various keyboards, apparently. Use Ctrl + Shift + I instead, which happens to match what Chrome uses to bring up its web inspector. (cherry picked from commit e68a333a4fb34292aa7bf8ec1004c390e8475afa)
* Remove Evolution's implementation of highlighting and use WebKit ↵Tomas Popela2013-04-121-125/+8
| | | | highlighting. Fixes Bug#696673
* Bug #681837 - Make enum type registration thread safeMilan Crha2013-04-1210-165/+39
|
* EWebView: Disable WebKit plugins during instance initialization.Matthew Barnes2013-04-091-6/+11
| | | | | | | | | | Calling webkit_get_web_plugin_database() somehow ends up calling g_bus_get_sync(), which in turn makes gtkdoc-scangobj hang forever. Call it instead as a GOnce callback during instance initialization, which avoids the hang since gtkdoc-scangobj only peeks at classes. (cherry picked from commit eb6ecc6fb5d1b6859fab949ba20865d2ca784306)
* Update copyright year on About dialog.Matthew Barnes2013-04-091-1/+1
| | | | (cherry picked from commit 721fef2d96464dde0155cc98e7e98b7cc936ad5c)
* Bug 697268 - Incorrect mnemonic widget in 'Add Reminder' dialogMatthew Barnes2013-04-091-1/+1
| | | | (cherry picked from commit 040140a336a18ac542d1464e5bd5c0b16287da51)
* e_mail_folder_uri_parse: Handle local mbox folder URIs.Matthew Barnes2013-04-081-2/+24
| | | | | | | | | | | In Evolution 2.x, the local mail store used mbox format. Camel will not recognize the old-style "mbox:///.../local" folder URIs, since the local mail store is now Maildir format. Test for this and work around it. This should re-fix bug 638307 which was a nuisance error about failing to append to a "mbox:///.../local#Sent" folder after sending a message. (cherry picked from commit 94372b5f1857b66d1ae7e14a37075122b5c8336c)
* EWebView: Remove a backward-compatibility hack.Matthew Barnes2013-04-081-9/+1
| | | | | | We require WebKitGTK+ >= 1.10 so we can drop a hack to support < 1.9.6. (cherry picked from commit fa875d8565824e3a6c2cdeeb9b2e4e95009c2723)
* EWebView: Use a GQueue to track highlight strings.Matthew Barnes2013-04-083-29/+16
| | | | | | | This also removes an unused function e_web_view_get_highlights() which was returning a GSList. (cherry picked from commit b83a9cd5bb938e3ccb72eae8d5b6392961169258)
* EWebView cleanups.Matthew Barnes2013-04-081-19/+23
| | | | (cherry picked from commit e0a85ffed4267836db33cd245e6704e6510a24c5)
* Show parts with Content-ID of multipart/mixed as attachmentsMilan Crha2013-04-052-4/+7
| | | | | | | The multipart/mixed should behave differently than multipart/related, because subparts of multipart/mixed are not meant to reference each other by default, thus the subparts should be shown as attachments. This was reported at https://bugzilla.redhat.com/show_bug.cgi?id=947409
* Bug 697228 - User Docs: Remove CSS page now that we have WebKit renderingAndre Klapper2013-04-042-30/+0
|
* Updated Galician translationsFran Diéguez2013-04-021-7175/+7366
|
* Updated Basque languageInaki Larranaga Murgoitio2013-04-021-11898/+13257
|
* Updated Russian translationYuri Myasoedov2013-04-011-3049/+3940
|
* Fix for typing in ITIP comments when some keys triggered actions.Tomas Popela2013-03-282-0/+29
|
* Bug 696715 - ESelectNamesEditable needs an EClientCacheMatthew Barnes2013-03-283-11/+10
| | | | (cherry picked from commit 4c5e629f518fa03610e69c970337d9f7d625a50b)
* ESelectNamesRenderer: Add a "client-cache" construct-only property.Matthew Barnes2013-03-283-7/+67
| | | | (cherry picked from commit 5ece5b9483db0ca246eea687c4e883d38306aff4)
* ESelectNamesRenderer cleanups.Matthew Barnes2013-03-282-98/+170
| | | | (cherry picked from commit 5ac61cc67e3874547b83f5c05ae2c1b76a6de3bb)
* ESelectNamesEditable cleanups.Matthew Barnes2013-03-283-97/+155
| | | | (cherry picked from commit a7cd179c901a620ea2f4e11589cccc960d8373fc)
* Updated for MalayalamAni Peter2013-03-261-5484/+6455
|
* Updated Telugu TranslationsKrishnababu Krothapalli2013-03-261-4922/+5167
|
* Punjabi: Translation updated (aalam)A S Alam2013-03-261-5337/+5286
|
* l10n: Update Japanese translationOKANO Takayoshi2013-03-261-6896/+5699
|
* Bug #684245 - Disable 3rd-party browser pluginsTomas Popela2013-03-251-0/+24
|
* Bug #696185 - Disable WebKit's cachingMilan Crha2013-03-251-0/+4
|
* Bug #696173 - Various memory leaksMilan Crha2013-03-254-4/+16
|
* Bug #687412 - Crash under mail_folder_cache_service_removed()Milan Crha2013-03-251-2/+8
|
* Bug #662568 - Use-after-free in Templates plugin signal handlersMilan Crha2013-03-251-2/+14
|
* hindi translationRajesh Ranjan2013-03-251-5422/+5393
|
* Updated kn translationsShankar Prasad2013-03-251-14/+14
|
* Fix mbox-to-Maildir conversion... again.Matthew Barnes2013-03-254-645/+667
| | | | | | | | | | | | | | | | Commit ee5671fc fixed mbox-to-Maildir conversion for users upgrading from Evolution 2.32, who had already migrated to XDG Base Directories. But turns out, mbox-to-Maildir conversion was still broken for users coming from Evolution 2.30 or earlier because the logic to move files into XDG Base Directories was running *after* the conversion routine. So the conversion routine found nothing to convert, and users were left with a broken "On This Computer" mail store. This commit runs the XDG Base Directory migration first on startup, followed by the mbox-to-Maildir conversion. (cherry picked from commit 1723ee09122a8e137e78ed301f2706eefb281adf)
* Updated slovak translationMarián Čavojský2013-03-251-1721/+1354
|
* Fix translations of keywords in .desktop filesPiotr Drąg2013-03-251-1/+1
|
* e-mail.h: Remove non-existent header files.Matthew Barnes2013-03-251-2/+0
| | | | (cherry picked from commit 3cbe26e9d02cf89f8c3088bc0d011eddfa9ae35d)
* Fix mismatched tag in Hungarian help translationGabor Kelemen2013-03-251-1/+1
|
* Post-release version bump.Matthew Barnes2013-03-241-1/+1
|
* NEWS update for 3.8.0 release.EVOLUTION_3_8_0Matthew Barnes2013-03-241-0/+15
|
* Updated slovak translationMarián Čavojský2013-03-231-2545/+2521
|
* Updated Marathi TranslationsSandeep Sheshrao Shedmake2013-03-221-5007/+5222
|
* Updated Odia Language along with FUEL implementationManojKumar Giri2013-03-221-5924/+5493
|
* Updated Odia Language along with FUEL implementationManojKumar Giri2013-03-221-12427/+13552
|
* l10n: Updated Persian translationDanial Behzadi2013-03-221-15411/+22589
|
* Updated Hungarian help translationGabor Kelemen2013-03-221-856/+904
|
* Update French translationAlexandre Franke2013-03-211-5002/+5157
|
* Updated kn translationsShankar Prasad2013-03-201-5137/+5077
|
* Updated Danish translationFlemming Christensen2013-03-191-5024/+5159
|
* Updated Hungarian translationGabor Kelemen2013-03-191-5070/+5345
|
* Updated Slovenian translationMartin Srebotnjak2013-03-181-321/+28
|
* Update git.gnome.org/browse URL in ChangeLog fileMilan Crha2013-03-181-1/+1
|
* Updated Czech translationJiri Eischmann2013-03-181-4855/+4834
|
* Updated Korean translationChangwoo Ryu2013-03-171-5152/+5036
|
* Post-release version bump.Matthew Barnes2013-03-171-2/+2
|
* NEWS update for 3.7.92 release.EVOLUTION_3_7_92Matthew Barnes2013-03-171-0/+53
|
* Updated Uyghur translationGheyret Kenji2013-03-171-175/+175
| | | | Signed-off-by: Gheyret Kenji <gheyret@gmail.com>
* Updated British English translatioNBruce Cowan2013-03-161-5006/+5112
|
* Updated Tamil translationDr.T.Vasudevan2013-03-161-4479/+4613
|
* Do not leak each sent messageMilan Crha2013-03-151-1/+0
| | | | Caused by double-reffing the message object.
* Updated Indonesian translationAndika Triwidada2013-03-151-4846/+4819
|
* Add argument checks to weekday functions.Matthew Barnes2013-03-151-0/+11
|
* Bug 676696 - Automatic EXIF image rotation doesn't workMatthew Barnes2013-03-151-0/+13
| | | | Requires WebKitGTK+ 2.0 to work again.
* EWebView: Whitespace cleanups.Matthew Barnes2013-03-151-2/+2
|
* client_cache_process_results: Fix runtime warnings.Matthew Barnes2013-03-151-1/+1
| | | | | | | | Use g_simple_async_result_complete_in_idle() so the queued results complete in the correct main loop context. Otherwise we get runtime warnings: "g_simple_async_result_complete() called from wrong context!"
* Updated Slovenian translationMartin Srebotnjak2013-03-151-147/+147
|
* Bug #415371 - Create Incoming filter for messages with Received headerMilan Crha2013-03-141-3/+7
|
* e-mail-config-smtp-backend.c: Forgot a 'return' statement.Matthew Barnes2013-03-121-0/+2
|
* Bug 695693 - Handle <authentication> tags during auto-configurationMatthew Barnes2013-03-122-4/+71
|
* Bug #690930 - Launching calendar from clock-applet applies timezone twiceMilan Crha2013-03-121-13/+22
|
* EContactStore: Remove unnecessary warnings.Matthew Barnes2013-03-122-14/+17
|
* Add ESettingsSpellEntry.Matthew Barnes2013-03-128-50/+163
| | | | | Automatically configures the "checking-enabled" property on all ESpellEntry instances.
* Make ESpellEntry extensible.Matthew Barnes2013-03-121-1/+18
|
* ESpellEntry cleanups.Matthew Barnes2013-03-121-128/+200
|
* Bug 695477 - Crash in EContactListEditorMatthew Barnes2013-03-111-2/+9
|
* mailto-handler cleanups.Matthew Barnes2013-03-111-9/+15
|
* Updated Latvian translationRūdolfs Mazurs2013-03-111-4968/+5209
|
* Bug 695570 - Don't use gtk_container_add() to pack a GtkBoxMatthew Barnes2013-03-111-1/+1
|
* EMSubscriptionEditor: Use GtkGrid instead of GtkTable.Matthew Barnes2013-03-111-15/+9
| | | | | Long as I'm hacking on this widget for a different issue, may as well get this out of the way. We'll have to do it eventually anyway.
* Updated POTFILES.inPiotr Drąg2013-03-101-1/+0
|
* e_mail_config_notebook_commit: Skip non-writable sources.Matthew Barnes2013-03-091-4/+4
| | | | | | In some cases the collection source is non-writable but its child sources _are_ writable. In that case, the one non-writable source causes the whole operation to fail. Commit only writable sources.
* EMeetingStore: Removed unused "week-start-day" property.Matthew Barnes2013-03-093-61/+1
|
* simple_recur_to_comp: Obtain the week start day from CompEditor.Matthew Barnes2013-03-091-2/+5
|
* CompEditor: Add a "week-start-day" property.Matthew Barnes2013-03-093-0/+59
| | | | Automatically configured, of course, by ESettingsCompEditor.
* EWeekView cleanups.Matthew Barnes2013-03-092-793/+796
|
* EDayView cleanups.Matthew Barnes2013-03-092-1234/+1233
|
* Add ESettingsWeekdayChooser.Matthew Barnes2013-03-095-3/+166
| | | | Configures the "week-start-day" property of EWeekdayChooser.
* Rename WeekdayPicker to EWeekdayChooser.Matthew Barnes2013-03-096-717/+793
| | | | Also add a "week-start-day" property and make it extensible.
* evolution-addressbook-export: Remove main loop event flushing.Matthew Barnes2013-03-091-6/+0
| | | | | Not needed anymore since it finally dawned on me to use weak references in main loop event closures. The EBookClient now dies when it should.
* EUIManager: Fix a bad DocBook tag in comment.Matthew Barnes2013-03-091-2/+3
|
* Add weekday conversion functions.Matthew Barnes2013-03-094-0/+93
| | | | | e_weekday_to_tm_wday() e_weekday_from_tm_wday()
* EMeetingTimeSelector: Remove unused properties.Matthew Barnes2013-03-093-118/+2
| | | | The "show-week-numbers" and "week-start-day" properties are not used.
* EMeetingTimeSelector: No need to configure EDateEdit widgets.Matthew Barnes2013-03-091-30/+0
| | | | EDateEdit widgets are automatically configured by ESettingsDateEdit.
* Update Czech translation by Jiri EischmannPetr Kovar2013-03-091-8516/+9126
|
* Add more weekday arithmetic functions.Matthew Barnes2013-03-083-0/+74
| | | | | | | | | | These aren't as efficient as possible, but are as clear as possible. New functions: e_weekday_add_days() e_weekday_subtract_days() e_weekday_get_days_between()
* Rename functions in previous commit.Matthew Barnes2013-03-083-8/+8
| | | | | | | Changed my mind... got more to add. e_get_next_weekday() -> e_weekday_get_next() e_get_prev_weekday() -> e_weekday_get_prev()
* Updated Slovenian translationMatej Urbančič2013-03-081-1301/+1293
|
* Add e_get_next_weekday() and e_get_prev_weekday().Matthew Barnes2013-03-073-0/+92
| | | | | | These just cycle over the GDateWeekday enum. Trivial functions, but they help make loops a little easier to read.
* Updated Belarusian translation.Ihar Hrachyshka2013-03-071-701/+640
|
* [backup-restore] Dir separator removal breaks DConf settings restoreMilan Crha2013-03-071-11/+15
| | | | | | DConf load command requires a slash at the end of the path to load, but the replace_variables() code always removed the trailing slash, which made the configuration load nonfunctional.
* Updated Uyghur translationGheyret Kenji2013-03-071-688/+688
| | | | Signed-off-by: Gheyret Kenji <gheyret@gmail.com>
* EWeekView: Remove unused 'week_start_day' member.Matthew Barnes2013-03-071-3/+0
|
* Updated Brazilian Portuguese translationEnrico Nicoletto2013-03-071-4943/+5165
|
* Bug #690092 - Crash under format_full_headers()Milan Crha2013-03-077-36/+153
|
* goto-dialog: ECalendarItem sets its own week start day.Matthew Barnes2013-03-071-5/+0
| | | | By way of ESettingsCalendarItem.
* Bug #695193 - Window size resets to default at exit with gtk 3.7.10+Fabien Tassin2013-03-071-5/+3
|
* e-util-enums.h: Add EDateWeekday enum.Matthew Barnes2013-03-062-0/+39
| | | | | | This enum type is intentionally compatible with GDateWeekday. It exists only because GLib does not provide a GEnumClass for GDateWeekday. If that ever changes, this enum can go away.
* Document the enum types in e-util-enums.h.Matthew Barnes2013-03-061-0/+27
|
* org.gnome.evolution.calendar.gschema.xml.in: Define a 'Duration' enum.Matthew Barnes2013-03-061-3/+12
| | | | | | For use with interval "units" keys. Converting a key's type from string to enum is backward-compatable.
* cal_comp_event_new_with_current_time: Remove 'zone' parameter.Matthew Barnes2013-03-063-4/+3
| | | | Get the icaltimezone from the passed in ECalClient.
* itip-utils.c: Fix an unused-but-set-variable warning.Matthew Barnes2013-03-061-2/+0
|
* Assamese translation updated for gnome 3.8Nilamdyuti Goswami2013-03-061-1393/+1399
|
* reply_to_calendar_comp: Obtain the default timezone from the ECalClient.Matthew Barnes2013-03-061-2/+1
|
* itip_send_comp: Obtain the default timezone from the ECalClient.Matthew Barnes2013-03-061-3/+2
|
* e-util.h: #include <e-util/e-util-enumtypes.h>Matthew Barnes2013-03-061-0/+1
| | | | So the generated GEnumClass types can be used outside of libeutil.
* [itip-formatter] Reference a view when searching for a calendarTomas Popela2013-03-051-1/+2
| | | | | | | There were printed warnings on console, which may cause crashes, when the meeting invitation was inside an attached message. By adding a reference to the view it'll not disappear before the search is done with it.
* Bug #693254 - Mail reply uses wrong "From:" accountMilan Crha2013-03-053-14/+129
|
* Fix a regression from the previous commit for bug #645476Milan Crha2013-03-051-10/+24
| | | | | | | Evolution could crash when changing message view, like when toggling Show Deleted messages. This effectively reverts the previous commit and propagates the same changes further in the code.
* Updated Brazilian Portuguese translation proofread by Enrico NicolettoRafael Ferreira2013-03-051-588/+593
|
* Bug #645476 - Avoid scroll to cursor on folder change in message list (take 3)Milan Crha2013-03-051-0/+8
|
* EMailTagEditor: Remove calendar configuration properties.Matthew Barnes2013-03-043-137/+1
| | | | | | | Remove EMailTagEditor's "use-24-hour-format" and "week-start-day" properties, which were being used to manually configure its internal EDateEdit instance. This is unnecessary since all EDateEdit instances are automatically configured by the ESettingsDateEdit extension.
* ESettingsDateEdit: Forgot to bind "use-24-hour-format" property.Matthew Barnes2013-03-041-0/+5
|
* [l10n] Updated German doc translationChristian Kirbach2013-03-041-943/+466
|
* Updated Portuguese translation and converted to New Spelling (Novo AO)Duarte Loreto2013-03-041-5874/+5993
|
* Updated German translationChristian Kirbach2013-03-041-5747/+5237
|
* Post-release version bump.Matthew Barnes2013-03-031-1/+1
|
* NEWS update for 3.7.91 release.EVOLUTION_3_7_91Matthew Barnes2013-03-031-0/+56
|
* Updated Greek translationDimitris Spingos2013-03-031-918/+975
|
* Update API documentation.Matthew Barnes2013-03-0341-1601/+1481
|
* Updated Lithuanian translationAurimas Černius2013-03-021-601/+532
|
* Updated Vietnamese translationNguyễn Thái Ngọc Duy2013-03-021-2/+4
|
* Use EClientComboBox where appropriate.Matthew Barnes2013-03-0234-427/+527
| | | | Basically any place where we use both EClient and ESourceComboBox.
* Add EClientComboBox.Matthew Barnes2013-03-027-0/+582
|
* EClientSelector: Pre-fetch selected clients.Matthew Barnes2013-03-021-0/+51
|
* e_client_selector_get_client_sync(): Add argument guards.Matthew Barnes2013-03-021-0/+3
|
* e-client-selector.h: Add missing G_END_DECLS.Matthew Barnes2013-03-021-0/+2
|
* Never ever pre-fetch anything in EClientSelectorMilan Crha2013-03-011-36/+0
| | | | | | | | | | That's the worst idea for many reasons, couple examples: - password prompts after evolution's run for disabled (in selector) sources - too much unnecessary network I/O (most remote backends runs sync on open) - doesn't do what user told it to do (Unselected means unselected. Dot.) - unable to debug anything in factories when it misbehaves this way Next time ask peers, users and usability experts for their opinion, before doing such decision.
* Updated Vietnamese translationNguyễn Thái Ngọc Duy2013-03-011-4/+4
|
* Updated Vietnamese translationNguyễn Thái Ngọc Duy2013-03-011-382/+216
|
* po/vi: import from Damned LiesNguyễn Thái Ngọc Duy2013-03-011-5014/+5222
|
* Updated Serbian translationМирослав Николић2013-03-012-1442/+1302
|
* e_mail_config_service_backend_get_settings: Another corner case.Matthew Barnes2013-03-011-4/+9
| | | | | | ESourceCollection's default backend name is "none". Unfortunately so is CamelNullStore's provider name. Make sure these two misfits don't get paired up!
* Added mnemonic widget for 'Time zone' field in event editorVadim Rutkovsky2013-02-281-2/+3
|
* EMailPartItip: Remove redundant client cache.Matthew Barnes2013-02-283-46/+0
| | | | EClientCache already serves this purpose.
* ItipView: Use EClientCache to obtain calendar clients.Matthew Barnes2013-02-281-3/+25
|
* ItipView: Replace "registry" property with "client-cache".Matthew Barnes2013-02-285-101/+146
| | | | Obtain the ESourceRegistry with e_client_cache_ref_registry().
* itip-view.h cleanups.Matthew Barnes2013-02-281-179/+159
|
* EClientCache cleanups.Matthew Barnes2013-02-282-99/+105
|
* Remove em_utils_in_addressbook().Matthew Barnes2013-02-272-318/+0
| | | | No longer used.
* Remove emu_free_mail_cache().Matthew Barnes2013-02-273-119/+1
| | | | No longer needed, since the resources it frees are no longer used.
* Remove emu_remove_from_mail_cache().Matthew Barnes2013-02-272-48/+0
| | | | No longer used.
* Remove emu_remove_from_mail_cache_1().Matthew Barnes2013-02-272-15/+0
| | | | No longer used.
* Remove em_utils_contact_photo().Matthew Barnes2013-02-272-103/+0
| | | | No longer used.
* EHTTPRequest: Use e_mail_ui_session_check_known_address_sync().Matthew Barnes2013-02-271-6/+25
| | | | | Use e_mail_ui_session_check_known_address_sync() to help determine whether to automatically display images in a text/html MIME part.
* EMailSession: Remove get_filter_driver() implementation.Matthew Barnes2013-02-271-61/+0
| | | | | This gets overshadowed by EMailUISession's implementation, which also sets up the filter log file plus much more.
* Move CamelSession.lookup_addressbook() handler to EMailUISession.Matthew Barnes2013-02-272-23/+39
| | | | | Have the new handler call e_mail_ui_session_check_known_address_sync() instead of em_utils_in_addressbook().
* Add e_mail_ui_session_check_known_address_sync().Matthew Barnes2013-02-272-0/+126
| | | | | | | | | | | Replaces em_utils_in_addressbook(). Foregos any address caching since any such cache would likely not be updated properly as contacts are added and removed and would lead to incorrect results. An asynchronous variation of this function can be easily added at some future date should a need arise.
* EMailReader: Remove addresses from EPhotoCache as needed.Matthew Barnes2013-02-271-5/+28
| | | | Use e_photo_cache_remove() instead of emu_remove_from_mail_cache_1().
* EMailFormatter: Remove "only-local-photos" property.Matthew Barnes2013-02-276-72/+4
| | | | EPhotoCache already handles this setting.
* EMailRequest: Use EPhotoCache to obtain contact photos.Matthew Barnes2013-02-271-67/+40
|
* EMailUISession: Add a read-only "photo-cache" property.Matthew Barnes2013-02-272-1/+40
| | | | | | New functions: e_mail_ui_session_get_photo_cache()
* Add ESettingsPhotoCache.Matthew Barnes2013-02-274-0/+161
| | | | Configures an EPhotoCache with values from GSettings.
* Add EPhotoCache.Matthew Barnes2013-02-277-0/+1053
| | | | | | Caches contact photos by email address. Replaces the disastrous implementation in e-mail-utils.c.
* EMailRequest cleanups.Matthew Barnes2013-02-271-30/+44
|
* Updated Traditional Chinese translation(Hong Kong and Taiwan)Chao-Hsiung Liao2013-02-272-1889/+1794
|
* Remove obsolete "mime-types" mail setting.Matthew Barnes2013-02-271-5/+0
| | | | | | | | | | | Description: "If there isn't a builtin viewer for a particular MIME type inside Evolution, any MIME types appearing in this list which map to a Bonobo component viewer in GNOME's MIME type database may be used for displaying content." Wow, that's ancient. How did that get missed?
* Bug #693250 - Signature HTML problem using <...>Milan Crha2013-02-271-0/+12
|
* Bug #693625 - [itip-formatter] Save button insensitive for multiple eventsMilan Crha2013-02-261-0/+2
|
* Updated Galician translationsFran Diéguez2013-02-261-280/+265
|