efl/legacy/ecore/ChangeLog

281 lines
7.9 KiB
Plaintext

2011-01-29 Carsten Haitzler (The Rasterman)
1.0.0 release
2011-01-29 Mike McCormack
* Convert fd list to inlist to save allocs
2011-01-29 Rui Miguel Silva Seabra
* make https not fail (that's curl's responsibility, really).
2011-01-31 Carsten Haitzler (The Rasterman)
* Fix ecore-evas CAN send "render done" messages even if not
waiting for sync counter when using gl engine. new semi-sync
mode to account for that.
2011-02-01 Mike McCormack
* Remove SIGRT from ecore's signals since it's unused and broken
2011-02-09 Mathieu Taillefumier
* Add xrandr backlight support to ecore_x
2011-02-10 Mike Blumenkrantz
* Added some more possibly useless safety checks to ecore_con_ares
* Implement event-driven error message api for all non-curl ecore_con
+ECORE_CON_EVENT_CLIENT_ERROR, ECORE_CON_EVENT_SERVER_ERROR events
+Ecore_Con_Event_Server_Error, Ecore_Con_Event_Client_Error types
* Unify event handler code
* Always increment server event count for client events
2011-02-11 Mike Blumenkrantz
* Added ecore_con_client_port_get
2011-02-16 Sangho Park
* Added ecore_file_download_full API.
2011-02-20 Vincent Torri
* Ecore_Win32: improve resize of windows and fix key up event for
the 'space' key.
* Ecore_WinCE do not erase a window background
2011-02-21 Jihoon Kim
* Add get calls in ecore_imf for ecore_imf_context_canvas_get() and
ecore_imf_context_window_get().
2011-02-21 Raoul Hecky
* Remove 300 second timeout so large downloads work in ecore_con.
2011-02-22 Carsten Haitzler (The Rasterman)
* Fix ecore-file inotify fd would be duplicated in children
on fork. Have it detecti this on next monitor add and re-init the
inotify fd and fd handler.
2011-02-24 Vincent Torri
* Ecore_File fix compilation when ecore_con and curl are not
available
2011-02-27 Jihoon Kim
* Add ecore_imf_context_preedit_string_with_attributes_get API.
2011-03-01 Raoul Hecky
* Add ecore_con_url_ssl_verify_peer_set API.
2011-03-01 Guillaume Friloux
* Fix detection of complete file write in ecore_file inotify.
2011-03-16 Cedric Bail
* Add ecore_thread_reschedule.
2011-03-19 Mike Blumenkrantz
* Fix crash in ecore_con_ssl related to attempted connections on a dead socket
2011-03-23 Carsten Haitzler (The Rasterman)
* Fix ecore-evas interceptor didn't handle override-redirect
windows correctly, expecting a feed-back event from x, which it didn't
get.
2011-03-23 Elixirious
* Fix ecore_con_url_ftp_upload upload the file until the end.
2011-03-29 PnB
* Add ecore_con_url_ssl_ca_set to manually set a certificate authority.
2011-03-30 Carsten Haitzler (The Rasterman)
* Ecore_X gains some more x sync counter controls and Ecore_Evas
now uses the netwm sync protocol to get wm's to only configure
as fast as it can keep drawing.
2011-04-05 Leif Middelschulte
* Add ecore_x_randr_edid_* data extraction and validation functions
for EDID structures.
2011-04-01 Cedric Bail
* Add ecore_con_url_pipeline_set and ecore_con_url_pipeline_get for
HTTP 1.1 pipelining support.
2011-04-05 Cedric Bail
* Remove Ecore_Evas Cocoa backend that use depreacted Evas Quartz
backend.
2011-04-11 Hannes Janetzek
* Fix removal of windows from ignore_list with ecore_x_window_ignore_set
2011-04-13 Doyun Kang
* Ecore_X + Ecore_Evas: Add more support for shape input setting
2011-04-15 Carsten Haitzler (The Rasterman)
* Fix bug in Ecore_Evas setting modifiers for
sub-buffer-canvas. They never got set. Now they do.
2011-04-19 Mike Blumenkrantz
* Add ecore_exe_data_set
2011-04-20 Carsten Haitzler (The Rasterman)
* Added ecore animator timeline, where animator runs for a
specified time (in seconds) and then stops, but it also passes
the position in the timeline (as a 0.0 to 1.0 value) to the
callback which it can then use the new pos map call to map to
some ease in/out, bounce, spring or whatever position.
2011-04-28 Eduardo Felipe Castegnaro
* Add a monotonic clock implementation for Mac OS X to fix warning.
Mac OS X does not provide an implementation of clock_gettime()
even though it's POSIX, but it does provide a fast high-resolution
monotonic clock through mach specific APIs that are perfectly suited
for usage in ecore_timer.
2011-04-20 Jihoon Kim
* Ecore_IMF: Added support for auto-capitalization and prediction
control API's
2011-05-03 Carsten Haitzler (The Rasterman)
* Fixed null pointer dereference in selection notification
handling in Ecore_X.
2011-05-12 Carsten Haitzler (The Rasterman)
* Add a custom Ecore Animator source and tick ability to be able
to plug in external animator tick sources like vblank interrupts
and so on.
2011-05-14 Cedric Bail
* Sync GNUTLS threads activation with Eina.
2011-05-14 Vincent Torri
* Make ecore_con work on Windows (only the local connections
need a port)
* Make ecore_ipc compile on Windows
2011-05-17 Cedric Bail
* Add ecore_timer_dump.
2011-05-19 Carsten Haitzler (The Rasterman)
* Fix Ecore_X shadow tree search handling to respect shape and
shape input of windows.
2011-05-20 Daniel Juyung Seo (SeoZ)
* Ecore ecore_main.c: Fixed ecore_main_loop
(_ecore_main_loop_iterate_internal). This fixes fd handler pending
issue when ecore_idler callback adds ecore_job/event.
* Ecore ecore_main.c: Refactoring _ecore_main_loop_iterate_internal().
2011-05-27 Gustavo Sverzut Barbieri (k-s)
* Ecore_X: introduce ecore_x_screen_size_get()
* Ecore_Evas: be safer when returning Ecore_Evas* from
ecore_evas_ecore_evas_get()
* Ecore_Evas: introduce ecore_evas_screen_geometry_get()
2011-05-30 Cedric Bail
* Add ecore_pipe_freeze/thaw to suspend and restart watching the pipe
inside the main loop.
2011-06-09 Cedric Bail
* Add ecore_pipe_wait (should only called from outside of the main loop).
2011-06-15 Mike Blumenkrantz
* Add ecore_con_ssl_client/server_upgrade to begin asynchronously upgrading an
existing connection to SSL/TLS, emitting ECORE_CON_CLIENT/SERVER_UPGRADE event
upon completion.
2011-06-16 Cedric Bail
* Fix ecore_x_selection_convert not taking selection length into account.
2011-06-17 Mike Blumenkrantz
* ecore_con_server_timeout_get/set now applies to client-type servers
2011-06-20 Ulrich Eckhardt
* Removed support for evas xrender engine from ecore-evas as
it is not a deprecated engine in evas and no longer needs support.
2011-06-20 Jihoon Kim
* Ecore_IMF: Added ecore_imf_context_input_panel_enabled_set/get API
2011-06-25 Mike Blumenkrantz
* Fix security hole in openssl certificate verification
* Fix gnutls server-client certificate verification
* New function: ecore_con_ssl_server_verify_basic for only verifying
certificates against a server's Common Name (CN) or its
Subject Alternative Name (if available)
2011-06-28 Carsten Haitzler (The Rasterman)
* Add ecore_throttle mechanism to voluntarily do powersaving to
avoid wakeups and excess animation etc. when in the background
or another "powersave" state.
2011-07-01 Carsten Haitzler (The Rasterman)
* Fix epoll delete fd handling in child process - #796
2011-07-07 Jihoon Kim
* Ecore_IMF: Added ecore_imf_context_cursor_location_set API
2011-07-22 Mike Blumenkrantz
* Added ecore_con_url_url_get
2011-07-26 Carsten Haitzler (The Rasterman)
* Fix timer precision handling for grouping timer ticks so
they actually do tick off together
2011-07-28 Cedric Bail
* Add ecore_main_loop_thread_safe_call.
2011-07-26 Carsten Haitzler (The Rasterman)
* Make ecore-evas give more errors on stderr when engines are
not found.