aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Bug #699980 - Calendar delete does not remove events from viewMilan Crha2013-05-144-0/+17
|
* 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.
* EMailPrinter: Fix a couple typos.Matthew Barnes2013-05-111-1/+2
|
* 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.
* 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.
* EMailPrinter cleanups.Matthew Barnes2013-05-102-191/+237
|
* em-utils.c cleanups.Matthew Barnes2013-05-101-95/+93
|
* Remove "drag-and-drop-save-name-format" setting.Matthew Barnes2013-05-103-21/+2
| | | | Hidden setting, no clear use case, and poorly implemented.
* 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.
* EMailFormatterHeaders cleanups.Matthew Barnes2013-05-092-42/+59
|
* contact-photos: Obtain an EClient asynchronously.Matthew Barnes2013-05-081-39/+76
| | | | | | Obtain an EClient for contact photo lookup asynchronously. If an instance needs to be created, it's more likely created in a thread with a main loop so signal emissions can work.
* Coding style and whitespace cleanup.Matthew Barnes2013-05-0822-78/+81
|
* 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 #301323 - "Edit as new message" doesn't strip signature properlyMilan Crha2013-05-079-39/+57
|
* Bug #699551 - Signature is not removed on replyMilan Crha2013-05-076-6/+6
|
* Remove "GNOME Online Accounts" from configure summary.Matthew Barnes2013-05-061-1/+0
| | | | Evolution no longer links to goa-1.0.
* Updated Slovenian translationMatej Urbančič2013-05-061-20/+29
|
* Updated Slovenian translationMatej Urbančič2013-05-051-1465/+1606
|
* Updated Spanish translationDaniel Mustieles2013-05-041-285/+269
|
* Merge [mark-all-read] plugin into core codeMilan Crha2013-05-0410-691/+340
| | | | | | During fixes on bug #602428, rather than do everything twice, I merged the plugin into the core code, thus it should be easier to maintain as well.
* 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
|
* Updated Spanish translationDaniel Mustieles2013-05-031-98/+3
|
* l10n: Fix invalid tag in es.poJiro Matsuzawa2013-05-031-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=699548
* 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.
* Updated Spanish translationDaniel Mustieles2013-04-291-1260/+1177
|
* Post-release version bump.Matthew Barnes2013-04-291-1/+1
|
* NEWS update for 3.9.1 release.Matthew Barnes2013-04-291-1/+95
|
* Missed a few evolution-settings.desktop.in references.Matthew Barnes2013-04-292-2/+0
|
* Updated POTFILES.inPiotr Drąg2013-04-291-1/+0
|
* Bug 699083 - X-GNOME-Bugzilla-OtherBinares missing trailing semicolonMatthew Barnes2013-04-281-1/+1
|
* Remove evolution-settings.desktop.in.inMatthew Barnes2013-04-281-10/+0
| | | | Forgot to remove this along with evolution-settings.
* EGravatarPhotoSource: Work around libsoup deadlocks.Matthew Barnes2013-04-271-36/+7
| | | | | The SoupRequest API seems to have some concurrency issues to work out, so for the time being create a unique SoupSession for each SoupRequest.
* EPhotoCache: Forgot to unlock a mutex.Matthew Barnes2013-04-271-0/+2
| | | | Yikes, that would be bad...
* EPhotoCache: Fix deadlock when cancelling subtasks.Matthew Barnes2013-04-271-16/+32
| | | | | | | This seems to have started with the gravatar module. SoupRequest is apparently quite eager to cancel HTTP requests -- so much so that we need to slow it down within EPhotoCache, so we don't wind up calling g_cancellable_disconnect() during a GCancellable signal emission.
* Bug #626215 - Prefer mail saving in order by UIMilan Crha2013-04-263-0/+73
|
* Updated Greek translationDimitris Spingos2013-04-261-1228/+1146
|
* Add a gravatar module.Matthew Barnes2013-04-268-0/+575
| | | | This is a new EPhotoSource that obtains images from gravatar.com.
* 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
|
* configure.ac: Alphabetize module names.Matthew Barnes2013-04-261-5/+5
|
* ETaskShellSidebar: Remove unused "status-message" signal.Matthew Barnes2013-04-253-30/+0
|
* ETaskShellSidebar: Submit an EActivity when obtaining an EClient.Matthew Barnes2013-04-251-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.
* EMemoShellSidebar: Remove unused "status-message" signal.Matthew Barnes2013-04-253-30/+0
|
* EMemoShellSidebar: Submit an EActivity when obtaining an EClient.Matthew Barnes2013-04-251-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.
* ECalShellSidebar: Remove unused "status-message" signal.Matthew Barnes2013-04-252-23/+0
|
* ECalShellSidebar: Submit an EActivity when obtaining an EClient.Matthew Barnes2013-04-251-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.
* Add e_activity_cancel().Matthew Barnes2013-04-256-14/+33
| | | | Convenience function cancels the activity's GCancellable.
* Document EActivity.Matthew Barnes2013-04-251-3/+183
|
* ETaskShellSidebar: Remove some unnecessary #includes.Matthew Barnes2013-04-251-4/+0
|
* EMemoShellSidebar: Remove some unnecessary #includes.Matthew Barnes2013-04-251-4/+0
|
* ECalShellSidebar: Remove some unnecessary #includes.Matthew Barnes2013-04-251-4/+0
|
* Updated Spanish translationDaniel Mustieles2013-04-251-1874/+2024
|
* Updated Galician translationsFran Diéguez2013-04-241-1806/+1954
|
* Updated Greek translationDimitris Spingos2013-04-241-1907/+2050
|
* EPhotoSource fixupMatthew Barnes2013-04-241-2/+2
|
* Reimplement EPhotoCache to use EPhotoSource.Matthew Barnes2013-04-244-283/+665
| | | | | | | | | | | | | | | | | | | | | Reimplement EPhotoCache to delegate the actual photo fetching to EPhotoSources. When a photo is requested for a given email address, all available EPhotoSources are dispatched concurrently and a photo input stream is selected from the result set. This also utilizes EDataCapture, which is affixed to the returned GInputStream to capture and cache photo data for an email address. New functions: e_photo_cache_add_photo_source() e_photo_cache_list_photo_sources() e_photo_cache_remove_photo_source() e_photo_cache_add_photo() Renamed functions: e_photo_cache_remove() --> e_photo_cache_remove_photo()
* Add contact-photos module.Matthew Barnes2013-04-248-0/+895
| | | | | | | | | | This encapsulates the EContactPhoto look up feature that was previously built into EPhotoCache. It's now implemented as an EPhotoSource -- one per address book. One advantage of this implementation is that address books are now queried concurrently rather than serially. EPhotoCacheContactLoader is an EPhotoCache extension that takes care of adding and removing EPhotoSources for available address books.
* Add EPhotoSource interface.Matthew Barnes2013-04-247-0/+219
| | | | | | | | | EPhotoSource is an interface used to extend the functionality of EPhotoCache. You can add an object implementing EPhotoSource to an EPhotoCache with e_photo_cache_add_photo_source() and remove it with e_photo_cache_remove_photo_source(). When EPhotoCache needs a photo for an email address, it will invoke e_photo_source_get_photo() on all available EPhotoSource objects simultaneously and select one photo.
* Add EDataCapture.Matthew Barnes2013-04-247-0/+462
| | | | | | | | | | EDataCapture is a GConverter that captures data until the end of the input data is seen, then emits a "finished" signal with the captured data in a GBytes instance. When used with GConverterInputStream or GConverterOutputStream, an EDataCapture can discreetly capture stream content for the purpose of caching.
* Update libeutil API docs.Matthew Barnes2013-04-242-3/+3
|
* Updated Malayalam TranslationAnish A2013-04-241-867/+875
|
* [EMailFormatter] Use GdkRGBA and GtkStyleContext to get theme colorsMilan Crha2013-04-2318-143/+137
| | | | | | | | | | It could happen that header text color had been picked white one time, but the other time black as expected (for me usually when I started Evolution in Calendar and moved to Mail view, the header text color was white, while when starting in Mail view it was black). The change to use GtkStyleContext is there only as a cleanup from deprecated GtkStyle, and to make things easier too, because both GtkStyle and the GtkStyleContext had set white color for some reason.
* Update sender photo section after 60386356e322c0ebe3a0101a616752c0e557491eAndre Klapper2013-04-221-3/+1
|
* Remove "Search for sender photograph only in local address books".Matthew Barnes2013-04-2110-310/+12
| | | | | | | | | | | | | This was added as part of bug 360184 but no justification was given for the "local-only" part. My Spidey sense tells me it was a hack- around for the old implementation's tendency to freeze the UI while searching for a photograph. So the "local-only" option really just meant "don't freeze the UI for very long, please". The new EPhotoCache-based implementation in 3.8 NEVER freezes the UI, so the "local-only" option is no longer needed. If a remote address book is slow or unresponsive we simply cancel the async photo lookup when the user moves on to another email.
* 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.
* User docs: Clarify automatic X-Face display as per bug 698435Andre Klapper2013-04-201-1/+5
|
* User docs: Fix markupAndre Klapper2013-04-201-1/+1
|
* User docs: Explain 'Match all' filter criterion. Fixes bug 698437.Andre Klapper2013-04-202-5/+6
|
* User docs: Update appointment saving instructions as per e1f45e28Andre Klapper2013-04-201-4/+2
|
* User docs: Update Mozilla import docs. Still not too great.Andre Klapper2013-04-201-5/+12
|
* User docs: Update Wikipedia URLs as default host also supports SSL nowAndre Klapper2013-04-204-8/+8
|
* User docs: Fix markupAndre Klapper2013-04-201-1/+1
|
* User docs: Update Makefile.amAndre Klapper2013-04-201-0/+1
|
* User docs: Move shared filter/vfolder conditions into separate file (XInclude)Andre Klapper2013-04-203-121/+77
|
* User docs: Update TODOs with corresponding bug IDsAndre Klapper2013-04-201-3/+3
|
* User docs: Remove TODO; filed as bug 698435 nowAndre Klapper2013-04-201-3/+6
|
* User docs: Update Makefile.amAndre Klapper2013-04-201-1/+3
|
* [l10n] Updated Catalan (Valencian) translationCarles Ferrando2013-04-201-5312/+5608
|
* [l10n] Update Catalan translationGil Forcada2013-04-201-5093/+5221
|
* User docs: Misc. comment updatesAndre Klapper2013-04-2028-39/+35
|
* User docs: bug 690696 - Remove last references to old IMAP backendAndre Klapper2013-04-204-62/+1
|
* User docs: Use XInclude for common Account Identity section to avoid string ↵Andre Klapper2013-04-2011-62/+59
| | | | duplication
* User docs: Remove some orphaned linksAndre Klapper2013-04-204-13/+0
|
* User docs: Use XInclude for common Search help to avoid string duplicationAndre Klapper2013-04-206-441/+344
|
* EPhotoCache: Fix a documentation typo.Matthew Barnes2013-04-191-1/+1
|
* 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
|
* 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
* 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().
* 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.
* 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.
* [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.
* 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...
* Update POTFILES.in.Matthew Barnes2013-04-171-1/+0
|
* Remove backward-compatibility cruft for goa-1.0 < 3.8.Matthew Barnes2013-04-177-580/+5
| | | | | | | In particular, GOA's Google provider uses OAuth 2.0 now, so we can drop the OAuth 1.0a support in CamelSaslXOAuth which was GMail-specific, and with it the entire "online-accounts" module in Evolution. Evolution no longer links to libgoa-1.0 at all.
* Search bar functionality polishingTomas Popela2013-04-153-34/+73
| | | | Polishing after switching from Evolution's highlight implementation to WebKit's one.
* 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
|
* bbdb plugin cleanups.Matthew Barnes2013-04-143-173/+138
|
* Restore "Automatic Contacts" plugin preferences page.Matthew Barnes2013-04-141-4/+96
| | | | | | | 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.
* Improve consistency in Hungarian translationGabor Kelemen2013-04-131-2/+2
|
* ECalModel: Make view handling thread-safe.Matthew Barnes2013-04-131-221/+304
|
* 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.
* 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.
* 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.
* ECalModel: Make the ClientData queue thread-safe.Matthew Barnes2013-04-131-56/+124
|
* 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()
* 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".
* ECalModel: Track ECalModelClient structs in a GQueue.Matthew Barnes2013-04-131-55/+65
|
* 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.
* 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
|
* Bug #697710 - Going offline doesn't disconnect remote storesMilan Crha2013-04-112-13/+51
|
* Bug #696663 - Save without close should update comp-editorFabiano Fidêncio2013-04-101-2/+95
|
* Bug 677300 - Add 3 px padding above and below the searchbarJean-François Fortin Tam2013-04-091-0/+1
|
* Add e_shell_view_get_size_group().Matthew Barnes2013-04-095-0/+43
| | | | | Returns a GtkSizeGroup used to keep the search bar and sidebar banner vertically aligned.
* EShellSearchbar: Remove more Express Mode leftovers.Matthew Barnes2013-04-093-261/+6
| | | | | | | | | Remove the following properties and corresponding get/set functions: "express-mode" "filter-visible" "labels-visible" "search-visible"
* EShellSearchbar cleanups.Matthew Barnes2013-04-091-64/+95
|
* 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.
* Update copyright year on About dialog.Matthew Barnes2013-04-091-1/+1
|
* Bug 697268 - Incorrect mnemonic widget in 'Add Reminder' dialogMatthew Barnes2013-04-091-1/+1
|
* Bug #271262 - Allow Send/Receive of local stores in offlineMilan Crha2013-04-099-50/+82
|
* 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.
* 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.
* 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.
* EWebView cleanups.Matthew Barnes2013-04-081-19/+23
|
* 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
|
* Bug 697141 - User docs: Remove express modeAndre Klapper2013-04-031-1/+0
|
* Bug 697141 - User docs: Remove express modeAndre Klapper2013-04-031-25/+0
|
* Updated Galician translationsFran Diéguez2013-04-021-7175/+7366
|
* Updated Basque languageInaki Larranaga Murgoitio2013-04-021-11913/+13381
|
* Mark icon in user help as untranslatableEkaterina Gerasimova2013-04-011-2/+2
|
* EMailAccountStore: Remove "express-mode" property.Matthew Barnes2013-04-012-78/+8
|
* EMailAccountManager: Add Online Account blurbs.Matthew Barnes2013-04-011-3/+241
| | | | | | For accounts linked to an Online Accounts service (GNOME or Ubuntu), display an informational message with an "Open Online Accounts" button that launches gnome-control-center with an appropriate panel name.
* EMailAccountManager: Inherit from GtkGrid.Matthew Barnes2013-04-012-15/+9
|
* evolution.convert: no-folder-dots setting was removed.Matthew Barnes2013-04-011-1/+0
|
* Updated Russian translationYuri Myasoedov2013-04-011-3049/+3940
|
* Add a NEWS item about Express Mode removal.Matthew Barnes2013-04-011-0/+8
|
* Remove e_preferences_window_filter_page().Matthew Barnes2013-04-013-36/+0
| | | | No longer used.
* Remove more Express Mode hacks.Matthew Barnes2013-04-0117-376/+137
| | | | | | This removes all traces of Express Mode from all but the contact editor and calendar appointment editor. Need to evaluate the remaining cases individually.
* Remove e_shell_hide_widgets_for_express_mode().Matthew Barnes2013-04-015-93/+0
| | | | No longer needed.
* Remove EUIManager.Matthew Barnes2013-04-0116-456/+17
| | | | No longer needed. Use GtkUIManager directly.
* Add e_load_ui_manager_definition().Matthew Barnes2013-04-013-0/+39
| | | | | | | | Loads a UI definition into a GtkUIManager from Evolution's UI directory. We actually had this function for a brief period during the 2.29 series, before Express Mode was a thing. I'm reviving the function to take over for EUIManager.
* Remove e_shell_configure_ui_manager().Matthew Barnes2013-04-015-28/+0
| | | | No longer needed.
* Remove conditionals from GtkUIManager definitions.Matthew Barnes2013-04-018-79/+0
|
* Remove e_shell_set_startup_view().Matthew Barnes2013-04-014-25/+0
| | | | No longer needed.
* Remove e_shell_get_startup_view().Matthew Barnes2013-04-014-19/+0
| | | | No longer needed.
* EShell: Remove "meego-mode" property.Matthew Barnes2013-04-015-90/+4
| | | | | | The property is always FALSE. Remove both the property itself and any logic predicated on it.
* Remove e_shell_adapt_window_size().Matthew Barnes2013-04-016-58/+0
| | | | Its preconditions are never TRUE, and is therefore a no-op function.
* EShell: Remove "small-screen-mode" property.Matthew Barnes2013-04-017-233/+12
| | | | | | The property is always FALSE. Remove both the property itself and any logic predicated on it.
* Remove e_shell_detect_meego().Matthew Barnes2013-04-015-203/+0
| | | | No longer used.
* Remove --express command-line option.Matthew Barnes2013-04-011-22/+5
| | | | | | | | | | | | This effectively removes Express Mode as a user-selectable feature. Express Mode was developed for MeeGo by MeeGo developers. Today the MeeGo project is dead, the MeeGo developers have disappeared, no one is maintaining Express Mode and the feature is deteriorating. There's still some bits of Express Mode I'd like to salvage before we remove it entirely, but henceforth it will have to be enabled at compile-time.
* 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
|
* ESelectNamesRenderer: Add a "client-cache" construct-only property.Matthew Barnes2013-03-283-7/+67
|
* ESelectNamesRenderer cleanups.Matthew Barnes2013-03-282-98/+170
|
* ESelectNamesEditable cleanups.Matthew Barnes2013-03-283-97/+155
|
* ESettingsMailFormatter: Fix binding flag typo.Matthew Barnes2013-03-271-1/+1
|
* Updated for MalayalamAni Peter2013-03-261-5556/+6748
|
* 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
|
* Updated kn translationsShankar Prasad2013-03-251-194/+203
|
* 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.
* 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
|
* Bug 696257 - Handle default values for "primary" selection settingsMatthew Barnes2013-03-254-4/+16
| | | | | | The default value for these GSettings keys is an empty string. The mapping function should handle empty strings by falling back to the appropriate default ESource.
* Fix mismatched tag in Hungarian help translationGabor Kelemen2013-03-251-1/+1
|
* Updated Odia Language along with FUEL implementationManojKumar Giri2013-03-221-5924/+5493
|
* Fix a typo which disabled "Always load images" option foreverMilan Crha2013-03-221-1/+1
|
* Tamil translations updatedShantha kumar2013-03-221-145/+85
|
* Tamil translations updatedShantha kumar2013-03-221-173/+172
|
* Tamil Translations UpdatedShantha kumar2013-03-221-1813/+1470
|
* 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
|
* Fix usage of non-existing variable in debug message.Tomas Popela2013-03-211-1/+1
|
* Update French translationAlexandre Franke2013-03-211-5002/+5157
|
* Updated kn translationsShankar Prasad2013-03-191-4967/+4898
|
* Updated Danish translationFlemming Christensen2013-03-191-5169/+5399
|
* Updated Hungarian translationGabor Kelemen2013-03-191-5070/+5345
|
* Updated Brazilian Portuguese translationEnrico Nicoletto2013-03-181-952/+1054
|
* Assamese translation updatedNilamdyuti Goswami2013-03-181-994/+1087
|
* Updated Slovenian translationMatej Urbančič2013-03-181-321/+28
|
* Updated Czech translationJiri Eischmann2013-03-181-4854/+4833
|
* Bump version to 3.9.1.Matthew Barnes2013-03-171-4/+4
|
* Punjabi: Translation updated (aalam)A S Alam2013-03-171-5337/+5286
|
* Updated Korean translationChangwoo Ryu2013-03-171-5152/+5036
|
* Add e_msg_composer_ref_session().Matthew Barnes2013-03-174-31/+34
| | | | Replaces e_msg_composer_get_session().
* Remove EShellSettings.Matthew Barnes2013-03-177-975/+1
| | | | | | | | EShellSettings predates GSettings and is no longer necessary. GSettings allows binding GObject properties to GSettings keys, with optional mapping functions. That fulfills the purpose of EShellSettings.
* Remove EMailShellSettings.Matthew Barnes2013-03-1729-1204/+734
| | | | | | | | EShellSettings predates GSettings and is no longer necessary. GSettings allows binding GObject properties to GSettings keys, with optional mapping functions. That fulfills the purpose of EShellSettings.
* Remove ECalShellSettings.Matthew Barnes2013-03-1727-1623/+1042
| | | | | | | | EShellSettings predates GSettings and is no longer necessary. GSettings allows binding GObject properties to GSettings keys, with optional mapping functions. That fulfills the purpose of EShellSettings.
* Remove EBookShellSettings.Matthew Barnes2013-03-176-107/+58
| | | | | | | | EShellSettings predates GSettings and is no longer necessary. GSettings allows binding GObject properties to GSettings keys, with optional mapping functions. That fulfills the purpose of EShellSettings.
* Add "headers-collapsed" setting.Matthew Barnes2013-03-174-14/+16
| | | | | | Replaces "paned-view-headers-state", which was defined as an integer for some stupid reason. Not bothering to migrate the old setting since it's one button click.
* Add "side-bar-ellipsize-mode" setting.Matthew Barnes2013-03-171-5/+12
| | | | | | | Replaces the "no-folder-dots" setting, which has been removed since it was not exposed in Evolution's Preferences interface. The new setting uses an enum type compatible with PangoEllipsizeMode.
* Add "image-loading-policy" setting.Matthew Barnes2013-03-172-9/+42
| | | | | | Replaces the "load-http-images" setting, which is now deprecated. The new setting uses an enum type compatible with EMailImageLoadingPolicy.
* Add "reply-style-name" setting.Matthew Barnes2013-03-172-4/+85
| | | | | | Replaces the "reply-style" setting, which is now deprecated. The new setting uses an enum type compatible with EMailReplyStyle.
* Add "forward-style-name" setting.Matthew Barnes2013-03-172-3/+55
| | | | | | Replaces the "forward-style" setting, which is now deprecated. The new setting uses an enum type compatible with EMailForwardStyle.
* Convert all "week-start-day" properties to GDateWeekday.Matthew Barnes2013-03-1725-547/+615
|
* EWeekView: Hide data members which have accessor functions.Matthew Barnes2013-03-178-249/+285
| | | | It's a start...
* EDayView: Hide data members which have accessor functions.Matthew Barnes2013-03-178-118/+197
| | | | It's a start...
* Remove calendar_config_get_working_days().Matthew Barnes2013-03-172-26/+0
| | | | No longer used.
* week_view_main_item_draw_day: Use e_cal_model_get_work_day().Matthew Barnes2013-03-171-23/+6
|
* e_week_view_layout_get_day_position: Use new "work-day" settings.Matthew Barnes2013-03-171-18/+30
|
* EDayView: Move "work-day-*" properties to ECalModel.Matthew Barnes2013-03-178-384/+472
| | | | EWeekView would like to use them too, please.
* EDayView: Split working days into separate boolean properties.Matthew Barnes2013-03-175-143/+447
| | | | Far easier to deal with than flags.
* Add ESettingsDeprecated.Matthew Barnes2013-03-174-0/+436
| | | | | | | | | | | | This class is different from the others in this module. Its purpose is to transfer values from deprecated GSettings keys to the preferred keys on startup, and keep them synchronized at all times for backward compatibility. Initial deprecated keys being handled are: "week-start-day" (org.gnome.evolution.calendar) "working-days" (org.gnome.evolution.calendar)
* Split "working-days" setting into separate booleans.Matthew Barnes2013-03-171-4/+32
| | | | | | | | | | | | | | | | | Add separate boolean keys for each day of the week: "working-day-monday" "working-day-tuesday" "working-day-wednesday" "working-day-thursday" "working-day-friday" "working-day-saturday" "working-day-sunday" These are much easier to decipher and much easier to bind boolean GObject properties to. The "working-days" setting is now deprecated.
* Add "week-start-day-name" setting.Matthew Barnes2013-03-171-4/+23
| | | | | | Replaces the "week-start-day" setting, which is now deprecated. The new setting uses an enum type compatible with GDateWeekday.
* Use e_source_registry_list_enabled() where appropriate.Matthew Barnes2013-03-177-40/+12
|
* 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.