summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 6bcd3a67fbda8baee91df0a6492568170e176101 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
2013-05-10  ChunEon Park (Hermet)

        * Evas: don't try blend on gl backened if the render option is COPY

2013-05-08  Mike Blumenkrantz

        * Edje: fix custom states for proxy parts
        * Edje: add embryo fill support for proxy parts

2013-05-07  Rafael Antognolli

        * Evas: Added evas_event_input_multi_up/down().

2013-05-06  Rafael Antognolli

        * Ecore/Wayland: Add ecore_wl_window_alpha_set/get().
        * Ecore/Wayland: Fix alpha windows on EGL backend.

2013-05-06  Cedric Bail

        * Evas: Remove SVG loader from inside the merged tree.

2013-05-06  ChunEon Park (Hermet)

        * Evas: update the map smart members really when it needs to render.

2013-05-05  Jiyoun Park (jypark)

        * Ecore_Input_Evas: Fix ecore_input_evas didn't check the device id of mouse event

2013-05-05  Jiyoun Park (jypark)

        * Evas: Fix gif loader can't load image which has normal frames and error frames

2013-04-03  Rafael Antognolli

        * Evas: Added evas_event_input_mouse_move() for internal use only.
        * Evas: Added evas_event_input_multi_move() for internal use only.

2013-04-29  ChunEon Park (Hermet)

        * Evas: Added evas_object_image_source_clip_set()/get().

2013-04-25  Tom Hacohen

        * Evas textblock: Fixed line size calculation when using multiple
	fonts.

2013-04-25  Jihoon Kim

        * Edje entry: remove duplicated ecore_imf_context_reset in adjusting the selection

2013-04-22  Mike Blumenkrantz

        * Evas: Fix recursive proxy image rendering to just render black

2013-04-22  WooHyun Jung

        * Edje: When selected word exists, selection is cleared and cursor
		remains on the current edje_entry by additional key input.

2013-04-20  Carsten Haitzler (The Rasterman)

        * Ecore-X: Fix selection parser to not use longs - wrong on
        64bit as the rest of ecore-x keeps types to their REAL sizes (ints),
        but xlib uses longs (change size - eg 64bit even though protocol-wise
        the data is DEFINEd as 32bit)

2013-04-19  Jihoon Kim (jihoon)

        * Edje: Remove code to call ecore_imf_context_reset in case of pressing ESC, Return key

2013-04-14  Carsten Haitzler (The Rasterman)

        * Evas: Fix evas gl_x11 to use default depth when visual
        matching so lower depth displays work

2013-04-15  ChunEon Park
        * Evas: If an object goes to be hidden without replacing the cur/prev
        state info, the object context can be corrupted at the next show time.
        Now it replaces the cur/prev in that rare case.

2013-04-15 Tom Hacohen
        * Evas textblock: Fixed a bug with deletion of ranges that end just
	before a visual format.

2013-04-14  Jiyoun Park

        * Evas: fix gif bug related with scale down decode.

2013-04-14  Jiyoun Park

        * Evas: fix gif decoding bug related with background color.

2013-04-14  ChunEon Park

        * Evas: Don't update evas update area by the clipper if the image obj visible is changed.

2013-04-14  Carsten Haitzler (The Rasterman)

        * Evas: Work around new intel Mesa/xorg bug where alpha
        channel in NON-ARGB windows is not filled in with 0xff even if all the
        code does things right.

2013-04-13  ChunEon Park

        * Evas: Don't be crashed even if the map image size is 0.

2013-04-13  Jihoon Kim

        * Ecore_IMF: Add ecore_imf_input_panel_hide () API
        * Ecore_IMF: Add ecore_imf_context_input_panel_event_callback_call, clear API

2013-04-10  Rafael Antognolli

        * Ecore: Add support for double and triple click on Wayland.

2013-04-10 Tom Hacohen (Tasn) Yakov Goldberg
        * Evas textblock : Added split cursor for BiDi text

2013-04-10  WooHyun Jung

        * Edje: When cursor is located to each edge, entry now doesn't grab events for cursor movement.

2013-04-10  Carsten Haitzler (The Rasterman)

        * Evas: Add glx buffer age support for automatic partial
          redraw in glx.
        * Evas: Support GLX_MESA_release_buffers extension to release
          unused aux buffers.

2013-04-09  Jérémy Zurcher (jeyzu)

        * Eina: Add eina_inlist_first and eina_inlist_last

2013-04-08  Tom Hacohen

        * Evas font: Fix a bug with cluster size calculation with texts ending
	with ligatures.

2013-04-08  Carsten Haitzler (The Rasterman)

        * Evas: Add control API for multiple outputs (non-functional).

2013-04-05  Cedric Bail

        * Evas: Fix over redrawing of Evas_Map when applied on smart object.

2013-04-04  Jiyoun Park

        * Evas font: fix font source have wrong current size.

2013-04-04  Tom Hacohen

        * Evas font: If OS/2 table is available and the font is demi-bold,
	  don't do runtime emboldment.

2013-04-04  Yakov Goldberg

        * Evas font: char position, returned by
          evas_common_font_query_char_at_coords(),
          depends on left/right half of char and its direction.

2013-03-04  Cedric Bail

        * Evas: fix crash with Buffer engine with non alpha output.

2013-03-30  Cedric Bail

	* Evil: Add mkdtemp.

2013-03-29  Carsten Haitzler (The Rasterman)

        * Fix edje entry to resepct filter callbacks and not clear
        selections if filters filter out all contents.

2013-03-28  Cedric Bail

	* Ecore: automatically turn on Systemd watchdog in Ecore main loop.

2013-03-28  Carsten Haitzler (The Rasterman)

        * Change evas_textblock_cursor_word_start() and
        evas_textblock_cursor_word_end() to walk extra whitespaces when
        moving up and down words that tends to look more like other
        toolkits (gtk, qt). the docs dont specifically say the rules
        on word finding, so being consistent is better i believe and
        so we can assume the prior behavior is a bug.

2013-03-27  Cedric Bail

	* Eina: Add eina_log_timing.
	* Ecore, Ecore_Audio, Ecore_Con, Ecore_Evas,
	Edje, Eet, Eio, Eo, Evas: use eina_log_timing.

2013-03-27  Jihoon Kim

	* Add ecore_imf_context_input_panel_variation_set/get API.
	* Add edje_object_part_text_input_panel_layout_variation_set/get API.

2013-03-25  Cedric Bail

	* Eina: add portable eina_file_mkstemp().
	* Embryo: use eina_file_mkstemp().

2013-03-22  Jiyoun Park (Jypark)

	* Ecore_x: fix alpha set function not clear sync counter

2013-03-22  Cedric Bail

	* Edje: Add spread width and height in TABLE part.

2013-03-20  Jérémy Zurcher (jeyzu)

        * Eina: Add eina_list_shuffle

2013-03-19  Mike Blumenkrantz

        * Fix magic failure in eina_value_array_count when array has not been allocated

2013-03-16  Cedric Bail

	* Remove Glew and Direct3d code from Ecore_Evas module.
	* Add Eina_Log integration for Systemd journal.

2013-03-15  Carsten Haitzler (The Rasterman)

        * Fix opengl-es 2.0 engine support to only use GL_UNPACK_ROW_LENGTH
        if the correct gles extension exists.

2013-03-14  Mike Blumenkrantz

        * fix use of ecore_con_*_flush functions with unconnected objects
        * fix setting of write flags on ecore-con servers during connect

2013-03-13  Cedric Bail

	* Edje: use Eina_Cow to reduce memory usage.

2013-03-12  Jiyoun Park (Jypark)

        * Ecore_x: fix bug not check data value when get deiconify message

2013-03-11  Mike Blumenkrantz

        * clean up gnutls session initialization

2013-03-10  Cedric Bail

	* Eeze: add a dummy implementation of libmount when it is not available.
	* Ecore_Con: add systemd socket activation support (ECORE_CON_SOCKET_ACTIVATE).
	* Ecore: notify systemd that we are ready as soon as the main loop is running.
	* EFL: use HAVE_FCNTL to disable code using fcntl.

2013-03-08  Igor Murzov

        * Add WebP image saver.

2013-03-07  Jiyoun Park (Jypark)

        * Ecore_x: Add manual render code before deiconify

2013-03-06  Jihoon Kim (jihoon)

        * Edje entry: fix bug scroll works when PgDn, PgUp, Home, End key in entry is pressed in preedit state


2013-03-05  Jiyoun Park (Jypark)

        * Ecore_x: Add atom related with indicator type.
		It can support several types of indicator

2013-03-05  Jiyoun Park (Jypark)

        * Ecore_x: Fix dangling pointer problem related with shmget fail

2013-03-04  Sung W. Park (sung_)

        * Evas Evas_GL: removed resource surface/context pool in favor of
        creating on-demand. resource surface/contexts are used for creating
        GL resources for Evas_GL.

2013-02-28  Tom Hacohen (TAsn)

        * Evas textblock: Added proper size adjustments for
	"high" shaped texts.

2013-02-28  Mike Blumenkrantz

        * fix custom states for edje SPACER parts
        * fix edje program filters

2013-02-28  Cedric Bail

	* eina_strlcat work with a NULL src.


2013-02-26  Carsten Haitzler (The Rasterman)

        * Fix evas GL common engine to have a shader to do oversampling on
        downscaling. This makes quality much better and "at best"
        equates to a 16 point sample (2x2 linear interpolation samples,
        where a linear interpolation sample equates to a 2x2 sample). This
        will have perfomance impact, but the quality is worth it and
        makes it closer to software downscaling in quality. It supports
        2x2, 2x1 and 1x2 oversampling. YUV not done, nor image mask
        (font shaders not needed).

2013-02-23  ChunEon Park (Hermet)

        * Evas cache: remove the freed worker from the pthread worker list when it's failed to create a new thread so as not to access it if a thread is working newly.

2013-02-21  Tom Hacohen (TAsn)

        * Evas text: Fixed bug with the text object direction detection.
        * Evas font: Fixed font run detection for specific cases with 2
        different fonts in the middle of a run.

2013-02-21  Carsten Haitzler (The Rasterman)

        * Add ecore_x_dnd_self_begin() and ecore_x_dnd_self_drop() to
        allow xdnd chatting to yourself (your source drag window).

2013-02-20  Carsten Haitzler (The Rasterman)

        * Fix ecore-x edid fetch to ftech 128, not 100 bytes.

2013-02-20  Cedric Bail

        * Properly report file not found in Edje.

2013-02-19  Daniel Zaoui

        * Fix Evas_Object_Text when LTR and RTL are used in the same paragraph.

2013-02-18  Carsten Haitzler (The Rasterman)

        * Fix edje edje_color_class_list() and edje_text_class_list() to
        look at the correct hashes when returning.

2013-02-17  Mike Blumenkrantz

        * fix anchor clicked mouse signals for selection-enabled entries

2013-02-16  Paulo C. A. Cavalcanti Jr

        * Evas: add pixels_alpha_get to evas engine.

2013-02-16  Cedric Bail

        * Eina: improved Eina_Clist support for 64bits system.
        * Evas: improved BMP support for 64bits system.

2013-02-15  Tom Hacohen (TAsn)

        * Edje textblock: Improved textblock fit and added support for
        size_range.

2013-02-15  Jiyoun Park (jypark)

        * Add infrastructure to handle message between ecore and parent ecore in Ecore_Evas.

2013-02-14  Cedric Bail

        * Reduce memory consumption of Edje program handler.

2013-02-14  Jihoon Kim (jihoon)

        * edje entry : fix bug not to display preedit string with PREEDIT_TYPE_NONE style
        * edje entry : Fix bug candidate word couldn't be selected with up/down key in the preedit status

2013-02-11  Stefan Schmidt

        * Fix memory leak in error cases in ethumb.

2013-02-08  Stefan Schmidt

        * Fix memory leak in eina_xattr_value_ls.
        * Fix memory leak in gstreamer_ecore_x_check

2013-02-08  Tom Hacohen (TAsn)

        * Evas textblock: Fixed a selection issue with different scripts and
        bidi.

2013-02-08  Guillaume Friloux

        * Fix usage of Ecore_Con_Server's internal buffer.

2013-02-08  Carsten Haitzler (The Rasterman)

        * Fix ecore_x ecore_x_screen_is_composited/set() to work
        properly on multihead.

2013-02-07  Christopher Michael (devilhorns)

        * Added ecore_x_randr_crtc_info_free function.

2013-02-07  Christopher Michael (devilhorns)

        * Added ecore_x_randr_crtc_info_get function.

2013-02-07  Cedric Bail

        * eina: Eina_Tiler now take tile size into account.

2013-02-07  WooHyun Jung

        * edje: Checking walking_callbacks for not removing patterns which are still used.

2013-02-06  Cedric Bail

        * eina: fix map leak in Eina_File.

2013-02-05  Eduardo Lima (Etrunko) <eduardo.lima@intel.com>

        * ecore_wayland: Fix return type of function ecore_wl_outputs_get()

2013-02-04  U. Artie Eoff (uartie) <ulysses.a.eoff@intel.com>

        * ecore_wayland: Add #ifdef __cplusplus to Ecore_Wayland.h so the
        API can be used by C++ programs.
        * ecore_wayland: Add ecore_wl_registry_get
        * ecore_wayland: Add ecore_wl_globals_get

2013-02-04  Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
        * evas: Stop initializing and shutting Fontconfig down

2013-02-04  Cedric Bail

        * eina: counter measure denial of service on eina_hash function.

2013-02-04  Jihoon Kim (jihoon)

        * edje entry : Support &, < and > in preedit string.

2013-02-02  Chidambar Zinnoury (ilLogict)
        * Update French translation.

2013-02-01  Mike Blumenkrantz

        * added eet_data_descriptor_name_get()
        * added eina_stringshare_refplace()

2013-01-31  Guillaume Friloux

        * Fix a memory leak in ecore_con_dns

2013-01-31  Jihoon Kim (jihoon)

        * edje entry : Remove ecore_imf_context_cursor_position_set in functions related to selection.

2013-01-30  Christopher Michael (devilhorns)

        * Implement RandR 1.4 functions which were missing in our Ecore_X API

2013-01-30  Christopher Michael (devilhorns)

        * Deprecate ecore_x_randr_crtc_gamma_ramp_* functions.
        * Added new ecore_x_randr_crtc_gamma_* functions that uses a proper structure

2013-01-29  Christopher Michael (devilhorns)

        * Removed old ecore_x_randr code and replaced with new working code.

2013-01-29  Carsten Haitzler (The Rasterman)

        * Fix cache miss bug when edje cache hash is null, but cache
        list may have entries.

2013-01-29 Sumanth Krishna Mannam <sumanth.m@samsung.com>

        * Prevent a crash even if an invalid object is swallowed into an
        edje object.

2013-01-28 Rafael Antognolli <antognolli@gmail.com>

        * Ecore_Evas wayland-egl only renders now if last frame has
        been presented.

2013-01-28  Daniel Willmann <d.willmann@samsung.com>

        * Use ecore_audio in edje-multisense

2013-01-25  Jihoon Kim (jihoon)

        * edje entry : Remove ecore_imf_context_reset, cursor update in mouse move event because it's useless.
        * edje entry : move ecore_imf_context_cursor_position_set from mouse down event to mouse up event

2013-01-24  Sung W. Park (sung_)

        * Add EVAS_GL_DIRECT_MEM_OPT to enable on-demand fallback memory
        allocation policy for EvasGL direct rendering.

2013-01-24  Cedric Bail

        * Don't over align data if they are already aligned.

2013-01-22  Daniel Willmann <d.willmann@samsung.com>

        * Fix evas gif loader to return the correct frame duration

2013-01-22  Mike Blumenkrantz

        * rebase dns.c against upstream

2013-01-22  Sung W. Park (sung_)

        * Applied on-demand memory allocation policy for Evas GL Surface
        for direct rendering optimization.  For direct rendering in EvasGL,
        it falls back to FBO rendering if the conditions are not met.  Before,
        the fallback resources were created in the beginning but now they are
        created and destroyed on need base.

2013-01-21  Carsten Haitzler (The Rasterman)

        * Fix xsync problem in ecore_x_image_get() where prior errors
        can get caught.

2013-01-18  Jihoon Kim (jihoon)

        * edje entry: remove ecore_imf_context_reset in mouse up event because it's useless.

2013-01-18  Cedric Bail

        * Ecore_Input_Evas: add infrastructure to handle buggy touchscreen by using
        environment variable ECORE_INPUT_FIX and ECORE_INPUT_TIMEOUT_FIX.

2013-01-17  Jihoon Kim (jihoon)

        * Edje : cursor position and location will be passed when it's really changed
        in case of mouse down, move, and up event

2013-01-16  Carsten Haitzler (The Rasterman)

        * Fixed pixman image wrapping to handle allocated size instead
        of image size (unless allocated is 0/wrong).

2013-01-15  ChunEon Park (Hermet) <hermet@hermet.pe.kr>

        * Fix SIGFPE in evas map update if image size is 0.

2013-01-15  Paulo Alcantara (pcacjr)

        * Evas engines: Introduce multi_font_draw() function
        * Evas textgrid: Change render to support multi_font_draw()

2013-01-15  Tom Hacohen (TAsn)

        * Evas textblock: Fixed issue and simplified cursor_geometry_get.
        * Evas text: Fixed issue with horiz advance.
        * Evas text utils: Fixed issue with no-harfbuzz bidi.

2013-01-14  Daniel Willmann

        * edje: Fix off-by-one errors when using alloca in various functions

2013-01-14  Tom Hacohen (TAsn)

        * Evas textblock: Fixed issue with line height when breaking on a
        format.

2013-01-14  Cedric Bail

        * Fix bug in eio_file_map_new container set.

2013-01-14  Albin Tonerre

        * Fix endianess issue in Eet_Image.

2013-01-13  Boris Faure (billiob)

        * Fixed condition based on uninitialized value in ecore_x_selection
        (both xlib and xcb).
        * Fixed a leaked when no selection converter matches.

2013-01-11  Tom Hacohen (TAsn)

        * Static libs: Updated liblinebreak to libunibreak's latest version.
        * Evas texblock: Fixed a bug with breaking after format items.

2013-01-11  Cedric Bail

        * Fix not up to date clip cache for Evas_Object_Text.

2013-01-09  Jiyoun Park (jypark)

        * Fix evas bmp loader code which deal with image size.

2013-01-08  Gustavo Sverzut Barbieri (k-s)

        * Fix eina_prefix_new() with debian multilib without magic check file.

2013-01-08  Mike Blumenkrantz

        * Fix efreet desktop command parsing of https

2013-01-07  Sung W. Park (sung_)

        * Pulled out evas gl backend binary shader file caching code from 
        evas_gl_shader.c file and made an internal generic caching api in 
        evas_gl_common.h for use in evas_gl code.
        * Implemented evas_gl surface cap. caching code in gl backend to
        accelerate the engine creation. 

2013-01-07  Thomas Petazzoni

        * Fix build of Evas XCB backend.

2013-01-04  Jérémy Zurcher

        * Improve eina_share string del speed by a maybe 5-15%.

2013-01-03  Gustavo Sverzut Barbieri (k-s)

        * Add eina_alloc.h to Eina.h to define alloca()
        * Eeze: deprecated support for udev<148 and libmount<2.18

2013-01-03  Cedric Bail

        * Use Eina_File for evas png loader.

2013-01-03  Carsten Haitzler (The Rasterman)

        * Fixed ecore_con case where freeing server double-frees clients

2013-01-03  Jérémy Zurcher

        * Add eio_eet_sync symbols.

2013-01-02  Carsten Haitzler (The Rasterman)

        * Fixed evas_software_xlib_x_write_mask_line() issue - it was
        finding a segment in the shm cache of the wrong size for masks!

2013-01-02  Cedric Bail

        * Use Eina_File for evas webp, gif, tiff and eet loader.
        * Add eet_mmap to open an Eet file from an Eina_File.

2012-12-31  Gustavo Sverzut Barbieri (k-s)

        * Fixed eina_xattr_value_ls() an eina_xattr_value_fd_ls()
        * Added eina_xattr_fd_get(), eina_xattr_fd_set(),
        eina_xattr_del(), eina_xattr_fd_del(), eina_xattr_copy() and
        eina_xattr_fd_copy()
        * Added eina_file_copy()

2012-12-24  Mike Blumenkrantz

        * eina_magic_fail() now throws error messages on NULL pointers instead of critical
        * all efl object-freeing functions now take NULL without crashing or erroring
        * eio functions no longer crash when passed NULL and throw errors accordingly

2012-12-19  Gustavo Sverzut Barbieri (k-s)

        * Fixed Evas RGBA_Image->flags.loaded for copied images.
        * Fixed evas_object_image_is_inside() implementation.

2012-12-19  Carsten Haitzler (The Rasterman)

        * Fixed 24bpp issue with rendering in evas. It shows itself
        only under qemu/kvm with the cirruse driver that I have found.
        In this case the screen is really 24bpp packed and this case
        just never comes up on any vaguely modern gfx system.
        * Fixed 24bpp ximage convert back from 24bpp to 32bpp in
        ecore-x. Only shows itself in qemu/kvm.

2012-12-18  Gustavo Sverzut Barbieri (k-s)

        * Fixed many memory problems with ecore_evas_extn

2012-12-18  Leandro Pereira

        * Add threaded renderer.
        * Modify software_generic and gl_x11 to use threaded renderer.

2012-12-17  Daniel Willmann

        * Add EFL Audio API - ecore_audio

2012-12-17  Leandro Pereira

        * Get rid of unused `ref` field in RGBA_Image struct.
        * Prepare soil to land threaded render.
        * Use refcounted glyph arrays.
        * Common code to draw lines, polygons, rectangles, maps,
        and scaling.

2012-12-13  Cedric Bail

        * Fix potential segv in software engine native_set code.
        * Fix uninitialized data in Evas OpenGL engine.

2012-12-12  Daniel Willmann

        * Fix possible buffer overflow in functions relying on EET_T_LAST.
        * Fix possible memory corruption in xrandr EDID functions.

2012-12-12  Cedric Bail

        * Add ellipsis support in Evas_Object_Text.

2012-12-12  ChunEon park <hermet@hermet.pe.kr>

        * Fix the evas gl line incorrect position problem.

2012-12-11  Cedric Bail

        * Fix leak eet_pbkdf2_sha1 with OpenSSL.

2012-12-10  Gustavo Sverzut Barbieri (k-s)

        * Added ECORE_GETOPT_ACTION_BREAK to force breaking out of argument
        parsing logic (will behabe same as GNU's "--", useful for xterm -e)

2012-12-07  Cedric Bail

        * Don't leak fd on exec.

2012-12-07 Sung W. Park (sung_)

        * Added EVAS_GL_LINE_NO_OFFSET_HACK to turn off the line coordinate
          fiddling that was originally in the gl backend code. The offset
          fiddling caused issues with some ARM target GPU drivers.
        * Fixed polygon rendering bug in GL backend when there are cutouts.

2012-12-05  Gustavo Sverzut Barbieri (k-s)

        * Removed DirectFB support (both ecore_directfb, evas and ecore_evas).
        * Removed XRender, WinCE, X11-16 and X11-8 ecore_evas support.
        * Bumped gnutls version requirement to >= 2.11 (released in 2010).
        * Bumped GNU/libc requirement to >= 2.4 for inotify (sys/inotify.h).

2012-12-04  Gwanglim Lee

        * Add window profile support:
        * Add ecore_evas and ecore_x APIs to support the window profile.
        * Implement window profile for ecore_evas_x, ecore_evas_extn_socket,
          ecore_evas_extn_plug and ecore_evas_buffer.
        * Deprecate ECORE_X_ATOM_E_PROFILE and ECORE_X_ATOM_E_PROFILE_LIST.
        * Deprecate ecore_x_e_window_profile_list_set. Use
          ecore_x_e_window_available_profiles_set instead.
        * Deprecate ecore_x_e_window_profile_list_get. Use
          ecore_x_e_window_available_profiles_get instead.
        * Add ecore_evas_sub_ecore_evas_list_get API.

2012-12-05  Cedric Bail

        * Fix build of Ecore_Evas_Extn on Solaris 11.

2012-11-30 Gustavo Sverzut Barbieri (k-s)

        * Fix evas_object_box.c to properly reset size_hint_min to zero if
        there are no objects packed into the box.

2012-11-22 Paulo Alcantara (pcacjr)

        * Add scalecache support to Cserve2

2012-11-22  Sung W. Park (sung_)

        * Fixed a bug where if an image object rendered using Evas GL
        direct rendering and then another image object using Native
        Surface rendering, there was a potential for it to fall into
        the same direct rendering path.
        * Fixed some minor Evas GL extension bugs that came from refactoring.


2012-11-21  Carsten Haitzler (The Rasterman)

        * Fixed leak in textblock and text props in general that made
        textblock recalcs lead very badly. Required changed to textgrid
        though a sit relied on the leaky behavior.

2012-11-20  ChunEon Park (Hermet)

        * Fix the evas memory leak - eina_rectangles allocated internally.

2012-11-16  Sung W. Park (sung_)

        * Fixed glGetIntegerv() in Direct Rendering mode for Evas GL
        to properly handle GL_SCISSOR_BOX and GL_VIEWPORT parameters.


2012-11-13  Carsten Haitzler (The Rasterman)

        * Fixed GLX native surface handling to use glXChooseFBConfig.
        This frixes a break in compositing on new intel mesa drivers.

2012-11-12  Mike Blumenkrantz

        * Add eina_list_last_data_get

2012-11-10  Vincent Torri

        * Fix build of eina_file on Solaris 10

2012-11-09  Vincent Torri

        * Fixed longstanding memset bug in evas box.

2012-10-19  Cedric Bail

        * Add eina_thread API.

2012-10-19  Patryk Kaczmarek

        * eina_stringshare_add_length return NULL when func args are wrong.

2012-10-17  Carsten Haitzler (The Rasterman)

        * Add eina_barrier API to cover pthread_barrier functionality
        * Add eina_tmpstr_add() and eina_tmpstr_del().

2012-10-04  Vincent Torri

        * Update lz4 code to rev. 77. This fix compilation on NetBSD 5.0

2012-10-31  Cedric Bail

        * Add eet_list_entries().
        * Add eet -l -v to give more information about an eet file.

2012-09-27 Patryk Kaczmarek <patryk.k@samsung.com>

        * Add eet file handle null checks to eet_data_write_cipher(),
        eet_data_descriptor_decode_cipher(),
        eet_data_descriptor_encode_cipher(), eet_data_xattr_cipher_get(),
        eet_data_xattr_cipher_set().

2012-09-27  Carsten Haitzler (The Rasterman)

        * Fix return value of eina_mmap_safety_enabled_set() and
        ensure future eina_mmap_safety_enabled_get() return right value
        on success.

2012-09-21  Carsten Haitzler (The Rasterman)

        * Fix big endian bug with eet image handling and endianess swapping.

2012-09-15  Vincent Torri

        * Add DOCTYPE children to be parse in eina_simple_xml.

2012-09-12 Patryk Kaczmarek <patryk.k@samsung.com>

        * Add EINA_SAFETY checks for proper function arguments.
        * Add check if given arguments (distance and coordinates) in eina_tiler
        and eina_rectangle are not below zero
        * Documentation for eina list specified and eina stringshare fixed

2012-09-11  Cedric Bail

        * Speedup Eina Rbtree Iterator by recycling memory instead of
        massively calling malloc/free.

2012-09-04  Roberto de Souza <zehortigoza@profusion.mobi>

        * Fix EINA_INLIST_FOREACH_SAFE macro to work when inlist is not the
        first item in the struct.

2012-09-03  Igor Murzov

        * Add WebP image loader.