aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/evas/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/evas/ChangeLog')
-rw-r--r--libraries/evas/ChangeLog131
1 files changed, 130 insertions, 1 deletions
diff --git a/libraries/evas/ChangeLog b/libraries/evas/ChangeLog
index ac0f3d2..fa77400 100644
--- a/libraries/evas/ChangeLog
+++ b/libraries/evas/ChangeLog
@@ -503,7 +503,7 @@
503 503
504 * JPEG encode and decode in eet now uses ISLOW (not IFAST) due to 504 * JPEG encode and decode in eet now uses ISLOW (not IFAST) due to
505 noticable quality losses in the chase for speed. It will use 505 noticable quality losses in the chase for speed. It will use
506 IFAST for quality less than 60 when encoding 506 IFAST for quality less than 60 when encoding
507 507
5082011-11-20 Carsten Haitzler (The Rasterman) 5082011-11-20 Carsten Haitzler (The Rasterman)
509 509
@@ -515,3 +515,132 @@
515 515
516 * Fix repeat event inheritance from parent smart just like 516 * Fix repeat event inheritance from parent smart just like
517 pass events are inherited. This was inconsistent. 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