12011-01-29  Carsten Haitzler (The Rasterman)
2
3	1.0.0 release
4
52011-01-29  Carsten Haitzler (The Rasterman)
6
7	* Enabled mempool for object allocation
8	* Allow shorter pre-render handler for rect objects if they are
9	  invisible
10
112011-01-30  Tom Hacohen (TAsn)
12
13	* It's actually a merge from my local branch upstream so this
14	  includes many changes.
15	* Fixed cursor/selection handling with BiDi text.
16	* Fixed many BiDi issues in both textblock and text objects.
17	* Cleaned up textblock and font engine a lot.
18	* Added auto-alignment to tetxblock and text objects.
19	* Added mixedwrap (word wrap, and if a word is too big cut it) support
20	  to textblock.
21	* Renamed a lot of stuff.
22	* Made textblock faster, mostly by saving item sizes and caching
23	  layout items when text doesn't change.
24	* Added harfbuzz (ot layouting/shaping and etc) support.
25	* Currently you need to set the env var EVAS_USE_OT to '1' in order to
26	  use OT support (harfbuzz) that will change soon.
27	* More code cleanups will be coming in the future. This shipment is
28	  mostly to get code review started (and also make sure I don't have a
29	  merging hell later on).
30
312011-01-31  ChunEon Park
32
33	* Fix lurking free bug in key grabs.
34
35
362011-02-01  Carsten Haitzler (The Rasterman)
37
38	* Added WBMP loader thanks to Samsung.
39
402011-02-01  Tom Hacohen (TAsn)
41
42	* Started using string objects instead of strings in most of the
43	  font engine (everywhere except draw). Haven't removed the
44	  paramteres yet, but did mark them as UNUSED. Removing them will be
45	  part of a future change.
46	* Removed run-time OT toggling support, OT is now fast, no need for that.
47	* Renamed all of the intl_props->text_props (because it really
48	  changed purpose
49	* Fixed spliting/merging of text_props to be fast and good, not
50	  hacky and complex like before.
51	* Added "mirrored mode" to table object.
52
532011-02-07 Brett Nash (nash@nash.id.au)
54
55	* Proxy Objects; Now you can set an image to have a 'source' of
56	  another object.  The proxy will display the object as well.  Proxy
57	  objects should be mostly complete.
58	* Proxy objects should be complete; please report and bugs to me.
59	* Partial support for arbitrary clipping.  Final support coming soon
60	  (with some other changes).  You can set most objects as a clip on
61	  other objects.  This will use the alpha channel of the object as a
62	  clip on the object.  This is still buggy.
63        * CLIPPING DISABLED AND REMOVED DUE TO BEING TOO BUGGY AND INCOMPLETE *
64	* Software support for arbitrary maps.  So you can use any size map
65	  (not just 4 points) for maps.  Once again this is a little buggy.
66        * ARBITRARY MAPS DISABLED AND REMOVED DUE TO BEING TOO BUGGY AND INCOMPLETE *
67
682011-02-02  Carsten Haitzler (The Rasterman)
69
70	* GL engine gets a speculative texture cache to shadow the
71	  normal image cache to avoid excess texture uploads when
72	  cycling images often. Should improve performance in some
73	  cases.
74
752011-02-12  Carsten Haitzler (The Rasterman)
76
77	* Fix "ridiculous scaling size" bug, where scaling images to
78	  sizes like 1 billion pixels high or wide caused evas to try
79	  allocate scaletables on the stack and the stack just couldn't
80	  handle it. Now it only allocates a table for the visible
81	  region which will always be sane, and even has insanity
82	  checks now. At worst you'll get an unrendered image if the
83	  values are silly and some slowness. No crashes.
84
852011-02-13  Brett Nash (nash@nash.id.au)
86
87	* Fix crash when deleting proxies.  This _technically_ breaks
88	  evas engines which realloc engine data when a border is set.
89	  Practically no engines do this.  There is a comment there (and
90	  if the engine does that border set won't work), in which case
91	  a more complex work-around is possible.
92
932011-02-14  Tom Hacohen (TAsn)
94
95	* Added a newline character mode API to textblock. This lets us set
96	  the newline behavior to either normal (i.e only break a line, not
97	  a paragraph) to "behave as a PS" mode. Default is the latter.
98	  The former is the more correct approach but I guess everything else
99	  is in e is not yet ready to use it. These API should help with the
100	  transition.
101	* A lot of textblock speed improvements and reduced memory footprint.
102
1032011-02-16  Jeonghyun Yun
104
105	* Patch from Jeonghyun Yun <jh0506.yun@samsung.com> that
106	  improves BMP loader support to handle malformed RLE BMP's that
107	  encode more pixels per line than the image actuall has.
108
1092011-02-16  Tom Hacohen (TAsn)
110
111	* Dropped Evas_Encoding and moved to use Eina_unicode_utf8 instead.
112	* Started showing the unicode replacement character instead of missing
113	  glyphs.
114
1152011-02-20  Carsten Haitzler (The Rasterman)
116
117	* Fix bug in font string parsing that can result in a crash if a
118	  font element is long enough.
119	* Fix convert rgba8888 -> a8 bug so it wont crash.
120
1212011-02-21  Carsten Haitzler (The Rasterman)
122
123	* Fixed bug with memory access of old utf8 string when
124	  comparing prev and cur state with text obj.
125
1262011-02-22  Tom Hacohen (TAsn)
127
128	* Fixed a bug in textblock cursor position with empty textblocks.
129
1302011-02-22  Carsten Haitzler (The Rasterman)
131
132	* Fixed bug smart calc array where it'd nuke the array when nested
133	  process calls happen and leave some objects uncalculated, but
134	  removed from the array and marked as needing a calc thus never
135	  getting back into the array.
136
1372011-02-27  Vincent Torri
138
139	* Fixed static linking of the bmp, wbmp and tga loaders
140
1412011-03-07  Mike Blumenkrantz
142
143        * Fix segv when trying to set gl viewpoint with NULL ctx
144
1452011-03-08  Carsten Haitzler (The Rasterman)
146
147	* Fix problem with different x vsync api between SGI and EXT flavor
148        as they have the same base name, but different prototypes
149        * Add evas_object_ref() and evas_object_unref() to defer
150        deletion of objects until all references are removed
151
1522011-03-09  Carsten Haitzler (The Rasterman)
153
154	* Fix bug with evas_object_del() calling DEL callback BEFORE
155        the HIDE one.
156
1572011-03-10  Sung W. Park
158
159	* Fix bug with yinvert handling of native surfaces.
160
1612011-03-10  Carsten Haitzler (The Rasterman)
162
163	* Fix issue with loading alpha BMP's with "check if all pixel alpha
164        are 0 or not and then force alpha off if all are 0". This
165        means you can never have a 100% empty/transparent BMP though
166        in 32bpp mode.
167
1682011-03-11  Carsten Haitzler (The Rasterman)
169
170	* Add ICO loader to evas (also can load CUR cursor files in theory)
171
1722011-03-14  Carsten Haitzler (The Rasterman)
173
174	* Add "load from memory" API: evas_object_image_memfile_set() by
175        popular demand. Can load an image format from a memory address.
176
1772011-03-15  Cedric BAIL
178
179	* Fix issues with clipping and map.
180
1812011-03-18  Jiyoun Park
182
183	* Fix wrong call to free when using mempool for Evas_Object.
184
1852011-03-19  Carsten Haitzler (The Rasterman)
186
187	* Caching and timestamp checker for image files made much more
188        pedantic and it checks not just modified timestamp but also
189        inode number, size, and on linux, the nanonsecond resolution
190        timestamp as well.
191
1922011-03-19  Brett Nash (nash)
193
194	* Proxy: Bypass the clip on smart clipped objects.  This is probably
195	what you want if you are using proxies, as it means clips don't cause
196	the object to be invisible by the proxy.
197
1982011-03-22  Gustavo Sverzut Barbieri (k-s)
199
200	* Fix build of GL and static modules.
201	* Fix ico loader static build.
202
2032011-03-30  Tom Hacohen (TAsn) and Carsten Haitzler (The Rasterman)
204
205	* Added vertical alignment support to textblock.
206	  API: evas_object_textblock_valign_set/get
207
2082011-04-04  Sung W. Park
209
210	* Added Evas OpenGL interface to be able to get an OpenGL API for
211        rendering to image objects. This is the beginning so not
212        totally functional yet.
213
2142011-04-05  Cedric Bail
215
216	* Remove Evas Quartz backend.
217	* Remove Evas Cairo backend.
218	* Remove Evas Qtopia backend.
219	* Remove Evas Xrender backend.
220
2212011-04-06  Carsten Haitzler (The Rasterman)
222
223	* Fix bug in GL engine with someone stealing the GLX context away
224        as well as scissor clips when rotated output is not 0 (90, 180, 270).
225
2262011-04-07 Tom Hacohen (TAsn)
227
228	* Textblock: Major speed improvements.
229	* Textblock: Only relayout and remake paragraphs that have actually
230	  changed. This means we are a lot faster than before, especially with
231	  long texts.
232
2332011-04-10 Tom Hacohen (TAsn)
234
235	* Textblock: Fixed a bug in evas_object_textblock_text_markup_prepend
236	  that caused it to use the object's cursor instead of the cursor
237	  passed.
238
2392011-04-11  Carsten Haitzler (The Rasterman)
240
241	* Feature: Text & Textblock - Add 8 explicit shadow directions for
242        text style effects.
243
2442011-04-12 Myoungwoon Roy Kim (roy_kim)
245
246	* Font-engine: Added runtime italic (actually slanting) and
247	  emboldening. - Automatically slants/emboldens a font at runtime if
248	  italic/bold/crusiva and etc are requested but not found in the
249	  system.
250
2512011-04-14 Tom Hacohen (TAsn)
252
253	* Font-engine: Implemented higher level override API for the bidi
254	  functions. This implements clause HL4 of the bidi algorithm.
255	  This is very cool actually, it lets us to force-separate paragraphs
256	  so each part will get his bidi calculated on it's own. This is very
257	  useful for "to" field of email/sms applications where ',' is used to
258	  separate different text entities.
259
2602011-04-19 Brett Nash (nash)
261
262	* Filters: So filtering of various flavours.  They work only on images
263	  (use a proxy if you want it on other objects).  Documentation inline.
264	  Supports a filter object or filter under (the area where the object
265	  is filtered).  Various parameters to tweak, and potential for
266	  additional filters (but you get to write the shader ;-)
267        * FILTERS DISABLED AND REMOVED DUE TO BEING TOO BUGGY AND INCOMPLETE *
268
2692011-04-24 Thierry el Borgi
270
271	* Add PSD file format support.
272
2732011-04-26  Carsten Haitzler (The Rasterman)
274
275	* Added "generic" image loader that can just execute some command
276        to load any given file format and read the RGBA data as stdout
277        from the command, or from an intermediate temporary file or
278        shared memory segment the executable loader provides. Evas
279        doesn't care about the loader beyond it providing output via
280        stdout to define image parameters (size, alpha channel and data
281        information), and evas will call a specific loader binary
282        based on extension name of srouce file. This allows for evas to
283        load image data from files where the loader may be prone to
284        instability, or require use of libraries that are GPL or
285        otherwise undesirable in terms of the result to applications
286        using evas. So basically, if you want a GPL loader or have a
287        very unstable one, write a loader binary and call it
288        evas_image_loader.extension e.g. evas_image_loader.pdf or
289        evas_image_loader.xcf or evas_image_loader.xcf.gz etc. etc.
290
2912011-04-28 Shilpaonkar Singh
292
293	* Textblock: Add "password" tag to turn on/off password in the middle
294	  of the textblok. Especially useful for implementing "show last char"
295	  for password entries.
296
2972011-05-04  Carsten Haitzler (The Rasterman)
298
299	* Improved table layout for homogeneous mode to handle not column
300        or row multiple sized table better.
301
3022011-05-04  Jiyoun Park
303
304	* OpenGL binary shader ability to cache (save and load back
305        later) to avoid re-compiling shaders on every time an app starts and
306        uses the GL engine. Faster startup time.
307
3082011-05-04 Tom Hacohen (TAsn)
309
310	* Textblock: Do standard compliant line breaks. In order to achieve
311	  that we now statically link against liblinebreak (available in
312	  src/static_deps/liblinebreak). It's usage can be disabled using the
313	  configure flag: "--disable-liblinebreak"; Disabling it will activate
314	  the fallback line breaking methods which are not very correct, but
315	  are possibly faster. I haven't noticed any difference between the
316	  two speed-wise, but there probably are in some rare cases.
317
3182011-05-06 Cedric Bail
319
320	* Don't try all image loader when user is pointing them on a directory.
321
3222011-05-11  Carsten Haitzler (The Rasterman)
323
324	* Fix problem with Evas engine not calling pre/post swap functions
325        in the GL engine when using EGL/OpenGL-ES2
326        * Fix SVG loader 2 phase loader having differing scale down code
327        for first and 2nd phase. Resulted in crash when loading some SVGs
328
3292011-05-11 Tom Hacohen (TAsn)
330
331	* Textblock: Added evas_textblock_node_format_list_get. This is very
332	  useful for edje_entry that uses anchors in the text.
333
3342011-05-12  Carsten Haitzler (The Rasterman)
335
336	* Add smart instance usage count get function for ability to free
337        data from memory from a smart class if needed.
338
3392011-05-12 Brian Wang
340
341	* Textblock: fix segfault with evas_textblock_cursor_content_get
342
3432011-05-12  Carsten Haitzler (The Rasterman)
344
345	* Add a smart "Grid" layout object that lays out objects in a regular
346        "virtual resolution" grid (eg 100x100) so you can lay them out
347        as a "scaled percentage" of the virtual resolution. virtual
348        resolution is defineable as is the geometry of each member.
349
3502011-05-18  Sung W. Park
351
352	* Fix some internal stencil and depth requests for OpenGL-ES2
353        due to OpenGL-ES limitations.
354        * Fix Surface recreation for FBO in Evas GL support.
355
3562011-05-23  Vincent Torri
357
358	* Fix compilation with libjpeg 8 on Windows.
359
3602011-05-24  Cedric Bail
361
362	* Use Eina_File when possible.
363
3642011-05-26  Carsten Haitzler (The Rasterman)
365
366	* Fix Evas table to handle weighting correctly for items and veto
367        rows or columns that have any child spanning that column not
368        able to expand.
369        * Fix Evas table to use actual fractional weights, not just
370        boolean expand/not expand from weight value.
371
3722011-05-27  Carsten Haitzler (The Rasterman)
373
374	* Add evas_event_thaw_eval() for conveneince of evaluating in state
375        and callbacks of the pointer after a thaw is complete.
376
3772011-05-29  Tom Hacohen (TAsn)
378
379	* Font-engine: Fixed a bug in glyph search causing inconsistent return
380	  values. The found fi should always be NULL if there was no fi found.
381
3822011-05-29  Tom Hacohen (TAsn)
383
384	* Font-engine: Conform to the API changes in Harfbuzz 0.6.0
385
3862011-05-29  Raoul Hecky
387
388	* Textblock: Added support for numeric escape codes. e.g "&#x3c;".
389
3902011-05-29  Vincent Torri
391
392	* Fix compilation when --disable-async-preload is passed to configure.
393
3942011-06-01  Cedric Bail
395
396	* Add +evas_object_image_extension_can_load_get and
397	evas_object_image_extension_can_load_fast_get that check if a file
398	may be opened by Evas_Object_Image.
399
4002011-06-07  Cedric Bail
401
402	* Use Eina_File for JPEG loader.
403	* Add evas_object_image_load_orientation_get and evas_object_image_load_orientation_set,
404	that tell if we should honor the orientation information when loading image file.
405
4062011-06-17  Carsten Haitzler (The Rasterman)
407
408	* Allow evas table to re-pack the same object without error and just
409        update packing parameters
410        * Allow to get packing location of table child
411
4122011-06-28  Tom Hacohen (TAsn)
413
414	* Polygon: Implemented "is_inside".
415
4162011-07-05  Hyoyoung Chang
417
418	* Fix bug where event causes event in callback on same object, but
419        with same event counter, so also filter out same event types.
420
4212011-07-06  Carsten Haitzler (The Rasterman)
422
423	* Fix bug in grab counting on object hide while events are frozen
424
4252011-07-07  Cedric Bail
426
427	* Fix infite loop when reinserting object during recalc stage.
428
4292011-07-27  Tom Hacohen (TAsn)
430
431	* Textblock: Closing tags formats is now well-defined for complex
432	  formats.
433	  For example: <font=Sans font_size=23 color=#FFF> should now be
434	  closed with </font> (or, like before, with the generic poper).
435	* Textblock: Add support for out-of-order tag openers/closers.
436	  Markup sequences like <b><i></b></i> are now legal and work as
437	  expeceted.
438
4392011-07-28  Tom Hacohen (TAsn)
440
441	* Textblock: Added support for quoting format parameters.
442	  Formats like: <font='Sans' color='#FFF'> are now legal.
443	* Textblock: Added font_weight and font_style formats.
444	  These format allow overriding the font style set using:
445	  font=':style=Bold'.
446
4472011-07-31  Tom Hacohen (TAsn)
448
449	* Textblock: Added font_width.
450	  This allows overriding the font width set using:
451	  font=':style=Condensed'
452
4532011-08-01  Tom Hacohen (TAsn)
454
455	* Textblock: Added lang to markup to set the lang of the text.
456
4572011-08-09  Tom Hacohen (TAsn)
458
459	* Textblock: Added evas_textblock_cursor_range_formats_get which
460	returns the formats inside a range.
461	* Textblock: Added evas_textblock_cursor_visible_range_get which
462	updates the cursors to the ends of the area currently visible on
463	screen.
464
4652011-08-17  Tom Hacohen (TAsn)
466
467	* Callbacks: Added priority support to callbacks.
468
4692011-08-23  Cedric Bail
470
471	* Fix evas_object_image_data_convert.
472	* Add YUV 601 input format to evas_object_image_data_convert.
473
4742011-08-29  Cedric Bail
475
476	* Add colorspaces NV12 and MT12 (64 * 32 macro block tiled
477	format, see Linux videodev documentation for more information).
478
4792011-10-17  Shilpa Singh
480
481	* Textblock: Added underline=dashed support.
482	Tag changes:
483	 - dashed is a legal value for underline
484	New tags:
485	 - underline_dash_color
486	 - underline_dash_width
487	 - underline_dash_gap
488
4892011-10-21  Carsten Haitzler (The Rasterman)
490
491	* Add function to request what the largest possible image (or texture)
492        size is from evas.
493
4942011-10-27  ChunEon Park (Hermet)
495
496	* Add evas_object_freeze_events_set/get to discard the object events.
497	they will be useful some cases such as transition.
498
4992011-11-02  Nicolas Aguirre
500	* Add gl_cocoa engine
501
5022011-11-16  Carsten Haitzler (The Rasterman)
503
504        * JPEG encode and decode in eet now uses ISLOW (not IFAST) due to
505        noticeable quality losses in the chase for speed. It will use
506        IFAST for quality less than 60 when encoding
507
5082011-11-20  Carsten Haitzler (The Rasterman)
509
510        * TGA loader gets fixed alpha decode - real life tga's have
511        proper alpha values. also reduce false positive tga file
512        detection
513
5142011-11-24  Carsten Haitzler (The Rasterman)
515
516        * Fix repeat event inheritance from parent smart just like
517        pass events are inherited. This was inconsistent.
518
5192011-12-02 Carsten Haitzler (The Rasterman)
520
521        1.1.0 release
522
5232011-12-07  Carsten Haitzler (The Rasterman)
524
525        * Fix build if gcc too old - if immintrin.h doesn't exist,
526        don't enable SSE3.
527
5282011-12-08  Tom Hacohen (TAsn)
529
530	* Textblock markup: Support self closing format tags, i.e <br/>.
531	You should use <br/> and not <br>. The latter still works but it's use
532	is discouraged.
533	* Textblock: Added evas_textblock_text_markup_to_utf8.
534	This lets you convert textblock markup to plain text.
535	This converts formats and everything correctly.
536
5372011-12-12  Carsten Haitzler (The Rasterman)
538
539        * Fix rounding error in map clip bounds calculation
540
5412011-12-12  Tom Hacohen (TAsn)
542
543	* Textblock: Added evas_textblock_cursor_word_start/end.
544	Those functions let you jump to the start/end of the word under the
545	cursor.
546
5472011-12-13  Carsten Haitzler (The Rasterman)
548
549        * Fix grab count negative values if you do weird combinations of
550        press and release with multiple fingers or multiple mouse
551        buttons.
552
5532011-12-14  Cedric BAIL
554
555	* Use Eina_File when loading bmp, ico, pmaps and wbmp files.
556	* Fix potential race condition in wbmp loader code.
557
5582011-12-14  Tom Hacohen (TAsn)
559
560	* Textblock: Made "br" and "tab" default tags for newline and tab.
561	* Textblock: Added "b" and "i" as default tags that can be overridden
562	by style, and added the infra to support this.
563	* Textblock: Added evas_textblock_text_utf8_to_markup
564
5652011-12-16  Carsten Haitzler (The Rasterman)
566
567        * Fix clip bug that shows up in buffer engine
568        * Fix SSE3 routines with buggy output - disable
569        * Add new api to set and get default event flags.
570
5712011-12-19  Carsten Haitzler (The Rasterman)
572
573        * Add new canvas events called just before and after evas rendering
574        starts and stops.
575
5762011-12-21  ChunEon Park (Hermet)
577
578	* Events: repeat events should not be affected by children.
579	Fixed to object passes events to the next object in the same layer
580	if the repeat_events is enabled.
581
5822011-12-23 Sanghee Park
583
584        * Extend pixman support to allow other operations to use
585          pixman when doing software rendering. On x86 this isn't useful
586          but on ARMv7 with NEON pixman happens to do better with image
587          blending and nearest scale blending.
588        * Add tiled rotator for 32bit display as an option.
589
5902011-12-26  Christopher Michael (devilhorns)
591
592        * Add functions to get/set if an object is a 'frame_object'
593
5942011-12-27  Carsten Haitzler (The Rasterman)
595
596        * Add feature to get number of pressed devices (help fix
597          ecore-evas bug).
598
5992011-12-28  Carsten Haitzler (The Rasterman)
600
601        * Add recursive name find function - evas_object_name_child_find()
602
6032012-01-01  Carsten Haitzler (The Rasterman)
604
605        * Improve CPU use on nvidia drivers when vsyncing. It was
606          actually glXWaitGL() spinning, not glXSwapBuffers(), so this
607          points to a bug in the nvidia drivers where the sleep logic
608          in glXSwapBuffers() hasn't been transferred to glXWaitGL().
609          Avoid use of glXWaitGL() to avoid the nvidia bug.
610
6112012-01-02  Cedric Bail
612
613	* Fix unitialized value when running generic loader without any
614	application found to open the file.
615	* Use Eina_File when openning XPM file.
616
6172012-01-03  Cedric Bail
618
619	* Use Eina_File for PSD file to.
620
6212012-01-06  Sung W. Park (sung_)
622
623        * Add EvasGL support to software backend using OSMesa.  Requires OSMesa
624          library.  Due to caveats in OSMesa, surface config stays with a
625          context rather than with a surface.  So for now, the config of a
626          surface remains with the first context that it binds to.  May need
627          to come up with a different solution in the near future.
628
6292012-01-12  Sung W. Park (sung_)
630
631	* Add new api evas_gl_config_new/free() to ensure backward compatibility.
632          Previously, the user simply declared a Evas_GL_Config object but this
633          can cause issues if new configs are added. Now we have evas allocate it
634          for you.
635
6362012-01-16  Raphael Kubo da Costa (rakuco)
637
638	* Add evas_object_smart_callback_del_full() to allow users to
639	unregister a specific smart event callback instead of all
640	callbacks matching a given type and function pointer.
641
6422012-01-17  Carsten Haitzler (The Rasterman)
643
644        * Add EVAS_OBJECT_POINTER_MODE_NOGRAB_NO_REPEAT_UPDOWN pointer mode
645        for some very specific behavior needed for accessibility.
646
6472012-01-19  Cedric Bail
648
649	* Add double buffer support to buffer engine.
650
6512012-01-20  Sung W. Park (sung_)
652
653	* Add Direct Rendering to Evas' window optimization for Evas_GL.  This
654          optimization can be significant since it avoids and extra copy from
655          an offscreen buffer.  Normally, Evas_GL will render to a render
656          target using an FBO. This can be enabled by giving
657          EVAS_GL_OPTIONS_DIRECT hint in the config options_bits. Direct
658          rendering is actually done if the following conditions are met -
659          1) All GL rendering is done in the pixel_getter callback 2) No
660          rotation on the image object 3) Corresponding image
661          object has alpha disabled.
662
6632012-01-23  Tom Hacohen (TAsn)
664
665	* Textblock: Added evas_object_textblock_style_user_push/pop.
666	This is used to override the default style set for an evas object.
667	For example, this can be used to nicely change the font and size
668	in a text editor.
669
6702012-02-23  Carsten Haitzler (The Rasterman)
671
672        * Fix rouding of update regions for image objects when scaled
673        (leaves trails without this).
674
6752012-02-23  Cedric Bail
676
677	* Remove Software SDL engine.
678
6792012-02-23  Carsten Haitzler (The Rasterman)
680
681        * Add evas_object_ref_get() to be able to tell if others ref
682        an object.
683
6842012-04-03  Gustavo Sverzut Barbieri (k-s)
685
686	* Box layouts: fix handling of weights that have decimal parts,
687	they were being handled as "int" where "double" was expected.
688
6892012-04-12  Carsten Haitzler (The Rasterman)
690
691        * Fix gl engine clipping bug when rendering to evas map fbo's
692        when gl window buffer is smaller than the fbo. used wrong
693        surface size in clipping logic.
694
6952012-04-12  Tom Hacohen (TAsn)
696
697	* Textblock: Fixed compilation with liblinebreak disabled.
698
6992012-04-14  Carsten Haitzler (The Rasterman)
700
701        * Fix color multiplier staying set when rendering map.
702
7032012-04-22  Carsten Haitzler (The Rasterman)
704
705        * Fix shader binary saving to save with dir existing already.
706
7072012-04-26  Carsten Haitzler (The Rasterman)
708
709        1.2.0 release
710
7112012-04-26  Cedric Bail
712
713	* Lock less font rendering.
714	* Removing EVAS_FRAME_QUEUING, EVAS_SLI, METRIC_CACHE and WORD_CACHE.
715
7162012-04-29  Tom Hacohen (TAsn)
717
718	* Textblock: Fixed a couple of bugs with range delete.
719
7202012-04-30  Jérôme Pinot
721
722	* Add missing files in the tarballs.
723
7242012-05-01  Cedric Bail
725
726	* Compute limited bounding box for Smart object.
727	* Use bounding box to reduce the number of object explored during event propagation.
728
7292012-05-03  Iván Briano (Sachiel)
730
731	* Add CServe2 and image cache2 that makes use of it. Several changes
732	in the buffer and software engines to use the right cache if CServe2
733	is requested for the application.
734
7352012-05-14  Carsten Haitzler (The Rasterman)
736
737        * Fix pixman rendering support if you set alpha flag AFTER
738        setting image size for custom image data.
739
7402012-05-14  Sanghee Park
741
742	* Add Multisample Anti-Anliased surface format for Evas GL.
743        The formats are divided into High, Med, Low, None, where High represent
744        max number of samples.  Currently, this feature is only supported in GLES2
745        environment with GL_IMG_multisampled_render_to_texture extension supported.
746
7472012-05-16  Vincent Torri
748
749	* Use Esvg for svg rendering. If not found, librsvg is still used.
750
7512012-05-18  Cedric Bail
752
753	* Remove librsvg svg loader as it is a massive source of crash in e17. If
754	you still want to use it, use the evas_generic_loader librsvg binary.
755
7562012-05-18  ChunEon Park (Hermet)
757
758	* Update mapped objects rendering when their color is changed
759
7602012-05-24  Carsten Haitzler (The Rasterman)
761
762        * Fix evas_object_image_memfile_set() on non-linux systems.
763
7642012-05-29  Tom Hacohen (TAsn)
765
766	* Text: Fixed an issue with text object sizing.
767	* Font: Fixed run-time italic.
768
7692012-05-30  ChunEon Park (Hermet)
770
771	* Fixed to clean up when map actually changed. Now rendering updates will be
772	correct after evas_map acutally disabled/enabled for the smart object.
773
7742012-05-30  Cedric Bail
775
776	* Don't wake up prepare thread if there is nothing to prepare.
777
7782012-05-30  Daniel Zaoui
779
780	* Fix evas_free callback deletion to not sometimes abort evas freeing
781        in some situations, thus leaking.
782
7832012-06-10  Carsten Haitzler (The Rasterman)
784
785        * Fix evas font handling so bitmap fonts work again like they
786        once did. This ifxes max height, and max ascent/descent
787        calculation for 0 em fonts with 0 bbox size (bitmap case), and
788        fixes 1 rounding error in text objects that placed ascent in the wrong
789        place by 1 pixel for even ascents.
790
7912012-06-10  Cedric Bail
792
793	* Limit the updated region to fit in CPU cache for Pipe rendering.
794
7952012-06-12  ChunEon Park (Hermet)
796
797 	* Fixed simple line drawing on s/w backened. Unmatched loop scope caused the
798  	destination buffer pointer march in place.
799
8002012-06-12  ChunEon Park (Hermet)
801
802 	* Removed empty evas_object_map_source_set/get APIs. Will Not be implemented.
803
8042012-06-13  Mike Blumenkrantz
805
806        * Fix crash in evas_object_image_add() when called prior to setting an engine
807          for the given canvas.
808
8092012-06-14  Cedric Bail
810
811	* Cache conversion from Evas_Map to RGBA_Map.
812
8132012-06-15  Vincent Torri
814
815	* Add Textgrid object.
816
8172012-06-15  Mike Blumenkrantz
818
819        * evas_object_smart_members_get() now returns NULL on non-smart objects
820
8212012-04-26  Carsten Haitzler (The Rasterman)
822
823        * Fix GL engine bitmap font handling
824
8252012-06-19  Vincent Torri
826
827	* Remove uselesss software DirectDraw 16 bits engine
828
8292012-06-27  Sung W. Park (sung_)
830
831	* Added (w, h) <= 0 check in EvasGL surface that was never handled before.
832        * Handled evas_gl_make_current to return error when either surface
833        or context is NULL.  Before, when that was the case, it just did
834        make_current(NULL, NULL) internally.
835
8362012-04-28  Carsten Haitzler (The Rasterman)
837
838        * Fix font instance refcounting for textprops that hang around.
839
8402012-06-29  Jiyoun Park
841
842	* upstream merge
843	* Merge remote-tracking branch 'remotes/origin/upstream'
844
8452012-07-03  Christopher Michael
846
847	* Merge Tizen changes to upstream EFL.
848	* Support gif scaling in evas gif loader.
849	* Create vertex & fragment shader(s) in the gl_common engine.
850	* Don't call glGetTexLevelParameteriv unless it is supported.
851	* Support evas_cserve2 in the wayland_shm engine.
852	* When freeing a gl_x11 window, make sure to call eglMakeCurrent with a null surface
853		to inform EGL that this window is no longer valid.
854
8552012-07-04  Cedric Bail
856
857	* Make pipeline rendering use more extensively the prepare stage.
858
8592012-07-04  Gustavo Lima Chaves
860
861	* Add simple interfaces support to Evas smart classes
862
8632012-07-05  ChunEon Park(Hermet)
864
865	* Fixed Map pipe region issue. It caused the incorrect object rendering order
866  	on gl backened.
867
8682012-07-05  Cedric Bail
869
870	* Strongly disable Evas pipe rendering.
871
8722012-07-05  Cedric Bail
873
874	* Don't let bad map sneek at render time and ban them as early as possible.
875
8762012-07-07  ChunEon Park(Hermet)
877
878	* Let Draw Text with viewport size instead of window size. When map is enabled then it should be rendered completely.
879
8802012-07-11  Tom Hacohen (TAsn)
881
882	* Fixed runtime emboldenment with bitmap fonts.
883
8842012-07-16  Hermet (ChunEon Park)
885
886	* Fixed to do pre render for the children of mapped object.
887
8882012-07-17  Cedric Bail
889
890	* Fix garbage left by mapped smart object when they fly away from the canvas.
891	* Fix map life cycle.
892
8932012-07-18  Carsten Haitzler (The Rasterman)
894
895        * Fix evas box to not skip dealing with size hint changes
896          while it lays out objects. This breaks elementary badly and it should
897          never have done this. This broke the general logic of size
898          hint handling.
899
9002012-07-19  Jiyoun Park(jypark)
901
902        * Fix jpeg save bug related with error handler
903
9042012-07-22  Cedric Bail
905
906	* Don't crash when calling evas_object_smart_type_check without type.
907
9082012-07-24  Ingvaldur Sigurjonsson
909
910	* Fix typoe in docs
911
9122012-07-24  Hermet (ChunEon Park)
913
914	* Fixed evas_gl resource list have cleared properly when it is released
915  	so it would be no problem when it is reinitialized in one same process.
916
9172012-07-24  Cedric Bail
918
919	* Handle Proxy with the right context.
920
9212012-07-24  Carsten Haitzler (The Rasterman)
922
923        * Fix long-standing bug when changing layer of a smart object,
924        its children dont change their layer value and pointer with it, thus
925        getting layer from them get you the wrong one.
926
9272012-07-26  Cedric Bail
928
929	* Keep track of inactive proxied object change so we always update the proxy correctly.
930
9312012-08-01  Jiyoun Park(jypark)
932
933        * Fix gif load bug. we initialize first frame buffer of gif loader
934
9352012-08-01  Jiyoun Park(jypark)
936
937        * Fix evas pointer count problem, if press/release events occurs not pair,
938	it screws up the evas event process. We are not deal with release event if
939	there is no pressed pointer.
940
9412012-08-01  Carsten Haitzler (The Rasterman)
942
943        * Provide share (Data) file for prefix finding and use
944        eina_prefix for modules too so we work with debian multiarch
945
946
9472012-08-02  Sung W. Park (sung_)
948
949        * Fix evas_gl's internal resource surface bug. For optimzation evas_gl
950        was using evas' window surface to do its resource creation and it
951        wans't properly updated when a window is destroyed and recreated.
952
9532012-08-07  Cedric Bail
954
955	* Properly warn when user try to link object from different canvas.
956
9572012-08-13  Carsten Haitzler (The Rasterman)
958
959	* Fix async fd stuff to generate new pipe after a fork (pid mismatch)
960
9612012-08-14  Tom Hacohen (TAsn)
962
963	* Textblock: Fixed range geometry when the last item is a format.
964
9652012-08-17  Hermet (ChunEon Park)
966
967	* Let clip the mapped obj even if it is a child of the mapped obj and do
968  	it only when clipper exists
969
9702012-08-20  Hermet (ChunEon Park)
971
972	* Removed unnessesary lines which causes the gles resource leak and
973	corruption.
974
9752012-08-21  Sung W. Park (sung_)
976
977        * Fix evas_gl current_context update issue when evas_gl context is deleted.
978
9792012-08-23  Tom Hacohen (TAsn)
980
981	* Textblock: Fixed bug with 1 char word separators at the start of the
982	text when going to the start of the word (e.g: "=test").
983
9842012-08-26  Jiyoun Park(jypark)
985
986	* Jpeg loader: fix orientation didn't work if jpeg file format is JFIF.
987	Add code deal with JFIF file format.
988
9892012-08-27  Tom Hacohen (TAsn)
990
991	* Textblock: Make sure scale changes causes a complete recalc.
992
9932012-08-29  Christopher Michael (devilhorns)
994
995	* Wayland Egl Engine: Add support for Multi-Sample Anti-Aliasing and GL Direct Images.
996                              Add support for using native image binding.
997                              Add support for setting GL surface capabilities.
998
9992012-08-30  Carsten Haitzler (The Rasterman)
1000
1001        1.7.0 release
1002
10032012-08-31  Christophe Sadoine
1004
1005       * Added a function: evas_map_util_quat_rotate().
1006
10072012-09-02  Vincent Torri
1008
1009       * Fix seg fault in the esvg loader, latest code is required, and
1010	 enable it on Windows.
1011
10122012-09-03  Igor Murzov
1013
1014       * Add WEBP loader module and cserve2 binary loader patch.
1015
10162012-09-03  Christopher Michael (devilhorns)
1017
1018       * When doing a move or geometry_get, we need to make sure that we
1019	 don't try to do these on the framespace clip object. Also, since we
1020	 need the evas to get the framespace clip object, just directly use the
1021	 framespace values from the canvas, rather than function call to get
1022	 those values.
1023
10242012-09-05  ChunEon Park (Hermet)
1025
1026       * Added EVAS_CALLBACK_IMAGE_RESIZE. Now user have a notify when image data size of the image object is changed.
1027
10282012-09-05  Carsten Haitzler (The Rasterman)
1029
1030       * Fix EGL/GLES bug when setting up rgba dest alpha windows where they
1031       cease to be rendered to. use a shared context and it works.
1032
10332012-09-07  Carsten Haitzler (The Rasterman)
1034
1035       * Fix image alpha set bug if the image data has not been loaded
1036       yet from disk. Fixes across software and gl engines needed.
1037       * Fix map surface leak.
1038
10392012-09-14  Carsten Haitzler (The Rasterman)
1040
1041       * Add env EVAS_GL_NO_BLACKLIST to disable blacklisting.
1042
10432012-09-17  Carsten Haitzler (The Rasterman)
1044
1045       * Add evas_device API for being able to register devices, set
1046       their names, descriptions, classes, parents, sources etc. etc.
1047
10482012-09-20  Carsten Haitzler (The Rasterman)
1049
1050       * Fix native surface crash when setting to null in some
1051       situations.
1052
10532012-09-24  Sung W. Park (sung_)
1054
1055       * Refactored Evas GL engine code so wayland_egl and gl_x11 and other
1056       engines can share the same code. The common codes are in gl_common/
1057       directory and evas_engine just has to implement a few engine functions.
1058
10592012-09-26  Carsten Haitzler (The Rasterman)
1060
1061       * Add the ability via env vars to do partial swaps in the gl
1062       engine. This requires that we also can get from gl info as to
1063       if a swap was a copy, swap, discard and if a swap with 2 or 3
1064       buffers. don't have that but env var will do for now for testing.
1065
10662012-09-27  Jiyoun Park (jypark)
1067
1068       * Add the object display mode hint. this can be used to check object
1069       mode like compress or expand or etc
1070
10712012-10-03  Mike Blumenkrantz
1072
1073       * evas_object_del() now accepts NULL more peacefully
1074
10752012-10-05  Sung W. Park (sung_)
1076
1077       * Added Debug feature for Evas GL's GL APIs. It can be set with
1078       EVAS_GL_API_DEBUG=1 and when it is set, all the GL calls will check
1079       if make_current has been properly called.  Also, it'll check if all
1080       the GL calls are called within the Pixel Getter function for Direct
1081       Rendering option.
1082
10832012-10-09 Daniel Zaoui and Tom Hacohen
1084
1085	* Evas: change Evas to use Eo.
1086	This change adds Eo support to Evas while keeping the old API intact.
1087	For more information, go to Eo.
1088
10892012-10-10  Carsten Haitzler (The Rasterman)
1090
1091       * Fix font sizing issues when size scaling happens to down down
1092       when it should round up. happens in rare sizing situations and fonts.
1093
10942012-10-11 Sohyun Kim
1095
1096       * Fix texture size issues when the image has nv12 format
1097
10982012-10-11  Carsten Haitzler (The Rasterman)
1099
1100       * Fix C code fallback line rendering path in software
1101
11022012-10-16  Carsten Haitzler (The Rasterman)
1103
1104       * Like 16bpp engine, 8bpp engine goes the way of the dodo.
1105
11062012-10-16  ChunEon Park (Hermet)
1107
1108       * Fix the vertical line drawing on gl backened.
1109
11102012-10-18  ChunEon Park (Hermet)
1111
1112       * Update move event when object freeze event is off.
1113
11142012-10-19  ChunEon Park (Hermet)
1115
1116       * Added Proxy'source visibility set APIs
1117
11182012-10-23  Carsten Haitzler (The Rasterman)
1119
1120       * Fix possible segfault in gl engine if image->im is null in
1121       image size set.
1122
11232012-10-24  ChunEon Park (Hermet)
1124
1125       * Added Proxy'source events set APIs.
1126
11272012-10-25  Cedric Bail
1128
1129       * Make XPM loader faster.
1130
11312012-10-25  ChunEon Park (Hermet)
1132
1133       * Added Evas_Coord_Size, Evas_Coord_Precision_Size type.
1134
11352012-10-26  ChunEon Park (Hermet)
1136
1137       * Fixed event multi move memory leak.
1138
11392012-10-30  Sung W. Park (sung_)
1140
1141       * Fix clip bug while computing coordinates for Evas GL
1142       direct rendering optimization.
1143
11442012-11-02  Carsten Haitzler (The Rasterman)
1145
1146       * Fix evas textblock tag parser to respect escaped spaces and
1147         escaped single quotes. This fixes an edje text class restyling bug.
1148