-
Notifications
You must be signed in to change notification settings - Fork 33
/
NEWS
5478 lines (5379 loc) · 321 KB
/
NEWS
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
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
==========
EFL 1.25.0
==========
Changes since 1.24.0:
---------------------
Features:
* ecore-drm2: Add support for using page_flip_handler2
* ecore-drm2: Add API function to return default depth
Fixes:
* ecore_evas: only define these eina errors once
* exactness: remove no longer needed _evas_new()
* edje - don't set font sizes less than 1
* ecore_evas_x - fix maximize/unmaximize request corner case
* exactness_player: do not test for delay_ms
* evas + gl - fix callback-to-app-changes-state issue with pixel data
* canvas render: don't apply mask if the objects in the map.
* evas_object_textblock: fix to free style properly by edje's style_user_pop
* evas_vg_shape: return NULL in evas_vg_shape_add when the parent of shape is NULL
* efl_ui_image: fix to call "clicked" smart callback when there is no img
* ecore-x - ensure we fully look at all xkb events and refresh all binds
* evas_vg_container: return NULL in evas_vg_container_add when the parent of container is NULL
* ecore thread - feedback threads should not be background threads...
* ecore_evas_wayland_common: keep the backword compatibility for wayland dnd handler
* edje: fix animation memory leak.
* canvas vg: fix dangling vector containers.
* evas vg: clean up dangling instances
* canvas vg: fix vector file data memory leak.
* evas - csd and wl csd - fix alpha zeroing to avoid framespace junk
* efl gfx_path: fix memory leak.
* evas - genetic update regions smart merge - merge v adjacent regions
* efreet - handle runtime relocation right with default XDG_DATA_DIRS
* efl_ui_image: fixed elm_image_preload_disabled_set api is not working when it is called before file set
* elm_image: keep backword compatibility for elm_image_file_set API when setting url file set twice
* efreetd - cache - add more statinfo work around 0 mtime distros
* elm_code: on newline ensure line number visible. (T2798)
* elm_code: cursor visbility fix.
* edje - fix edje_cc mis-re-iding images in image sets
* efl_ui_image: remove the unnecessary code in efl_file_unload
* win - x io errors really just have to exit, so call the iorr cb + exit
* evas - render - dont crash is private data is null
* eina vpath - fix windows ~username handling to only error when used
* efl ui image - fix scal to fill - broken with non-rect src images
* embryo: fix a integer(cell) overflow problem
* elput - support libelogind.so.0 as well as libelogind-shared.so.0
* edje - calce - really respect max image size for img sets
* ecore - don't do anything with heap between fork and exec
* evas - fix deadlock with sw async rendering calling cbs in post flush
* ecore con - curl - fix error map to map right enum
* eina - statgen (stat generation) - fix enable api to actually enable
* evas - image cache - fix loading with skip head on to load changed files
* evas_textblock: remove style padding from native width and formatted height
* elm icon/thumb - fix handling of a wider range of video extns
* edje - calc - handle swallow disappearing mid-calc due to callabcks
* ecore drm - increase timeout for flips from 0.05 to 2.0 sec
* docs: Correct the mismatched group name in Evas.
* elm - toolbar - use correct theme icon for more items
Changes since 1.23.0:
---------------------
Features:
* eina: add comparison macros for Eina_Size2D and Eina_Position2D
* ecore-wl2: Add API to find a window by surface
* ecore-wl2: Add API to find a connected display given a name
* ecore-wl2: Add API to return the compositor object from a given display
* ecore-wl2: Add API to return window type
* ecore-wl2: Add API to find a window by given surface
* edje: Add text change signal
* edje: add json file support feature
Fixes:
* efl_ui/bg: unset finger_size multiplier during construction (T8304)
* elementary: always use a font that matches our expectation for our test instead of the system one. (T8277)
* doc: improve colorselector preview (T8304)
* eldbus: properly call parent finalize during creation of Eldbus.Model_Method.
* efl_ui/win: fix max size hint eval (T8304)
* eet - fix loading eet files that do not have dicts (T8368)
* evas/callbacks: emit hardcoded legacy smart callbacks always
* elm/layout: add some workarounds to try handling legacy min sizes
* ecore_evas/wl2 0 fux xdg close cb for window when it's closed remotely
* wl egl - use platform get display
* ecore-evas-wayland: Add handler to array
* ecore_evas_wayland: Fix array step size
* efl/timer: correctly handle recursion for timer processing
* elm/genlist: trigger filter,done callback immediately if no filter queue exists
* elm/genlist: fix "drag" smart callback
* elm/genlist: set pan need recalc during item move on item position change
* elm/genlist: fix item focus unregister on item move
* ecore/timer: correctly handle recursive deletion of legacy timers
* ecore-drm2: Fix issue of shifting 1 by more than 32bits
* efreet - consider ctime changes as changes too
* edje - box - calc min size correctly at start ...
* vector svg: apply fill-opacity to graidents fill objects.
* evas vector: initialize data member properly.
* fix jpeg loading which freed the wrong ptr (T8497)
* fix the wrong method signature for evas_textgrid
* efl_ui/layout: fix multiple emissions of theme,changed during construction
* ui image: fix scale_method expand behavior.
* ecore-x - fix fallbacks to use capital X in lib name (T8543)
* elm - widget - actually check object smart data return for no data
* canvas vector: fix to refresh svg file of vector object.
* evas - fix access-after-free where during destroy hash item not cleared
* elm - fix filesel deferred unref to not crash
* ecore_con - freebsd bind blocking workaround
* elm win + ecore evas - fix csd stuff like base size and min sizing
* evas - fix access-after-free number 2 (T8534)
* elm win - fix client side move/resize req handling csd in x
* edje - store original size in edje struct and dont exceed max size
* evas - loaders - jp2k - re-enable in the build after it was lost
* edje_entry: Add matching tag.
* evas/events: fix multi-touch object targeting on touch down events
* eo - fix - fix alignment of eo object class structs - it was wrong
* canvas font: correct wrong masking length.
* Efl.Gfx.Path: Fix condition of for loop in current search
* canvas mask: fix incorrect render surface size.
* canvas proxy: fix broken proxy source clipping function.
* evas gl: clip rect with proper size.
* canvas proxy: fix a missing case that proxy not updated properly.
* evas_object_box: respect static clipper.
* ecore evas x - on argb dont create unused 1 bit pixmap masks
* emotion - webcam - fix segv on webcam plug/unplug and clean
* ui textpath: update map before rendering begins.
* elm icon/image efl ui image - respect aspect hints at all if set
* elm icon/image efl ui image - respect aspect hints at all if set
* elm_cnp: fix memory leaks
* elm menu - fix segv on deletion/shutdown where parent was not done ok
* canvas svg: fix memory leak.
* ecore_wl2: EFL Wayland Build on FreeBSD (T8659)
* ecore_file - address issue about false positive of finding a file in ./ (T8678)
* evas gl - shader cache was needless losing and overwriting
* efreet - work around conconforming apps putting startupwmclass in quotes
* ecore-evas-drm: Fix broken init count
Removals:
* emotion & evas: remove gstreamer 0.10 support
* emotion: remove xine and vlc support
* escape: remove library from tree
* ecore_x: remove support XGesture extension
* elocation: remove beta library
* eeze: remove tizen module support from eeze sensor
* evas3d: remove support for evas 3D which was a beta all along
Changes since 1.22.0:
---------------------
Features:
* ecore-drm2: Add background_color to crtc atomic properties
* ecore-drm2: Fill in crtc background color (if supported) during atomic commits
* ecore-drm2: Add API function to set crtc background color
* eolian: remove @nullable keyword
* ecore-drm2: Add API to check if vblank is supported
* eolian: remove param @nonull
* eolian: rename @warn_unused and its associated API
* eolian: initial versioning implementation
* evas: enable setting any object as a clipper
* eina/hash: add direct variants of list append/prepend functions
* edje: improve user-defined data caching to handle data before file is set
* edje: Add support for map zoom to use other part center.
* efl_ui_textpath: introduce efl_ui_textpath_circular_set() interface.
* efl_ui/layout_base: add "finger_size_multiplier" property (T8059)
* evas: add 'has_fixed_size' property for canvas objects
* efl/hints: add restricted and combined max size hints (T8122)
* efl_ui_animation_view: introduce a new widget for controlling vector animation.
* efl_ui: add scrollable_content mixin
Fixes:
* remove vpath test for user dir the test was broken and fixing is insane (T7728)
* tests - fix check header to always include eina due to windows
* tests - remove one of the eina strtod tests as libc is failing
* ecore_imf: do not loop forever on shutdown when there is no more a display
* efl_ui_list: fix to delete sub objects in efl_object_invalidate
* efl_ui_widget: Fix disabled set calling without meaning. (T7799)
* evas - fix crash/junk pixel content but with tiled rotate at 270 + neon
* ecore-drm2: Make atomic property values support uint64_t
* evas image: check format more strong way for wbmp.
* elm_atspi_bridget: Fix resource leak (CID1399424)
* elput: Remove useless call to eldbus_message_unref
* efl_core_command_line: Fix resource leak (CID1399105)
* ecore-evas-x: Fix double free (CID1382851)
* static_libs/vg_common: Fix resource leak (CID1382215)
* elm_theme: Check the ref count to delete or unref.
* elc_hoversel: Fix crash when no sd->last_location
* ecore drm2 - fix timeout in case case called from thread
* eina_test_file: Fix memory leak (CID1401072)
* efl_check: Fix memory leak (CID1401070)
* elm_test_widget_focus: Fix memory leak (CID1401069)
* emile_test_base64: Fix resource leak (CID1401062)
* evas_test_mesh: Fix memory leak (CID1401009)
* eina_test_binbuf: Fix memory leak (CID1401004)
* efl_ui_test_widget: Fix memory leak (CID1401003)
* efl_ui_test_widget: Fix memory leak (CID1400844)
* eina_bench_stringshare: Fix resourcce leak (CID1400975)
* evas_test_image: Fix resource leak (CID1400945)
* eina_test_file: Fix resource leak (CID1400926)
* eldbus_test_eldbus_message: Fix resource leak (CID1400921)
* efl_ui_test_widget: Fix memory leak (CID1400889)
* emile_test_base64: Fix resource leak (CID1400868)
* efl_ui_test_widget: Fix resource leak (CID1400857)
* emile_test_base64: Fix resource leak (CID1400852)
* ecore_test_ecore_file: Fix resource leak (CID1400825)
* efl_ui_test_widget: Fix resource leak (CID1400824)
* emile_test_base64: Fix resource leak (CID1400820)
* emile_test_base64: Fix memory leak (CID1400815)
* eina_test_ustr: Fix resource leak (CID1400784)
* eina_test_tiler: Fix resource leak (CID1401068)
* eo_test_manager_xattr: Fix resource leak (CID1400953)
* eina_test_strbuf: Fix resource leak (CID1400952)
* evas_object_textblock: Fix binary search fail.
* eolian: refactor parsing API and path handling (T7820)
* evas/image: fix broken auto_fill mechanism when manually changing fill
* elm_test: fix some bugs in elm_image tests
* ecore-evas-drm: Check if vblank is supported
* benchmarks: Fix copy-paste error (CID1401052)
* evas/render: fix proxy clipping when source_clip is disabled
* elm_color_class: use legacy event for genlist selection
* efl_ui_focus_manager_sub: handle manager change when tree is set to unfocusable
* edje/calc: correctly handle swallow/group objects as clippers for state clips
* gl_generic: handle image orientation setting when texture has not been created
* ecore/timer: fix handling of timer freeze during construction
* edje/load: (more) correctly handle part updates after changing edje group
* efl_canvas_layout: permit part_type_get on invalid parts
* eina/prefix: ignore magic files when running in tree
* efl_ui_focus_manager/calc: handle redirect setting if no previous redirect set
* elm/layout: do not trigger sizing eval on subobj deletion if no resize_obj set
* elm/layout: do not trigger sizing eval at end of canvas_group_add
* elm/colorselector: return early from theme apply if object is not yet finalized
* elm/diskselector: fix handling in theme data setup
* elm/diskselector: trigger sizing eval during theme set only if finalized
* elm/entry: use edje functions directly for interacting with edje objects
* elm/gengrid: handle cache item deletion without errors
* elm/gengrid: more null checks for setting mirrored state during construction
* elm/gengrid: handle focus events when no previous focus item was set
* elm/hovers: don't trigger more errors when setting null hover parent
* elm: fix value of datadir when running in tree
* elm/map: ignore zoom events during construction which cannot be handled
* elm/slider: avoid emitting double events when range slider value changes
* elm/slider: check for interval/range state before using that functionality
* efl_ui/button: check icon swallow existence before getting its content
* ecore-evas: check for internal evas presence before using it during free
* ecore-x: protect ecore_x_shutdown from creating a negative init count
* efl/io_model: check for parent object existence before removing wref
* eldbus: don't print warnings for user-canceled calls
* efl_ui/check: check icon swallow existence before getting its content
* efl_ui/image: check image object existence before using it in sizing
* efl_ui/layout: do not trigger sizing eval on hint change if object is dead
* efl_ui/layout: do not trigger sizing eval on subobj delete if layout is dead
* efl_ui/layout: only freeze internal layout during delete if it exists
* efl_ui/progressbar: check for part existence before using parts
* efl_ui/video: do not set 0x0 aspect hint
* efl_ui/widget: skip updating access info during parent_set(NULL) if dead
* elm/fileselector: return early in theme_apply during construction
* elm/popup: remove del callback for internal table object during destruction
* elm/code: check for cursor layout existence before emitting signals to it
* elm/gengrid: trigger unrealize event after unsetting unrealized flag
* elm/gen*: only call focus_object_setup_order_non_recursive if realized
* elm/genlist: unify all creation of calc jobs, skip if genlist is dead
* elm/genlist: trigger unrealize event after unsetting unrealized flag
* elm/genlist: handle cache item deletion without errors
* elm/genlist: handle genlist finding of nearest visible item when not realized
* elm/index: create event_rect[0] earlier in construction
* elm/interface_scrollable: return immediately from setting region if no content
* elm/list: return early from min_limit_cb if list object is dead
* elm/map: move setting initial zoom to later in construction
* elm/scroller: return immediately from updating focused scroll region without content
* elm_widget_item_static_focus: check for adapter existence in unrealize cb
* emotion: don't update crop clipper geometry if crop clipper doesn't exist
* ecore-imf/xim: only call ecore_x_shutdown if init was previously called
* elm/gengrid: handle gengrid finding of nearest visible item when not realized
* elm/fileselector_button: null fileselector model pointer on delete
* gl_generic: directly copy existing image when changing orientation
* theme: fix fileselector search button layout
* efl sel manager - flush wl conenction in cnp to avoid hangs...
* ecore_x - restore move event skipper that was removed long ago
* efl_ui_textpath: fix a center align but that doesn't happen at text_set().
* evas vector: set proper parents of clone objects.
* evas svg: fix missing node opacity attribute.
* elm - cursor - clear cursor job late to avoid crash
* edje - double make sure edje messages are zero'd due to a segv i saw
* ecore: also error when trying to add an event handler for a type 0 event
* edje: fix reapplying markup text on file/group change
* elm_actionslider: fix internal state when programmatically changing value
* elm/scrollable: avoid unnecessary edje recalcs
* evas/box: avoid triggering smart_move callback
* ecore: avoid breaking next main loop start if quit occurs outside of loop
* evas: fix type checking of Evas pointers in legacy functions
* evas/map: permit evas_map_free(NULL)
* ecore wl2 - fall back to shm if dmabuf fails in buf init
* ecore_evas buffer: fix a deadlock issue.
* efl_ui_widget: add safety checks to verify parents aren't being added as children
* [elm] Add missing sizing eval hook at radio
* [elm] Add missing sizing eval hook at check
* elm/glview: fix glview to (again) return null if context creation fails
* elm_test/plug: fix error handling
* elm/ctxpopup: check list existence before trying to delete list items
* efl_ui/popup: implement efl.file.unload for popup backwall part
* efl_ui/popup: unset callbacks on win object when parent is removed
* elm/config: monitor MODIFIED events on config files
* elm/config: fix config usage with EFL_RUN_IN_TREE set
* edje/calc: clamp part calc size to 0
* efl_ui: always set restricted_min size hints internally (T8059)
* evas events - fix segv if pointer data is freed by cb
* efl_ui/flow.box: fix item calc with mixed weights
* elm toolbar - fix packing options at start to avoid visual layout bugs
* elm toolbar - fix toolbar item separators and refactor aling/fill of item
* evas - gl_drm - delete old surfaces before creating new ones
* efl_ui_textpath: clear up path data when it's destructed.
* evas - png loader - fix leake in error case of pixels (CID1403027)
* elm - dnd - fix drop target del to not nuke handler all the time
* elm hoversel - avoid crash when items modified while popping down
* evas svg: fix svg spec compatibility.
* elm/hoversel: avoid calling api functions on null hoversel objects
* edje signal matches/patterns - handle re/alloc errors and missing ptrs
* edje - handle errors and eina file handles and vpath properly
* elm theme - handle error cases and eina file handles properly
* evas - font rendering - dont crash if we have color fonts and gl and sw
* eina file refs in edje/evas - audit them and plug holes where refs stay
* edje - signal callback matches/patterns try fix number 2
* emotion - webcam fix deletion of webcam still left in webcam list
* efl/io: fix race condition with child model deletion
* eio/poll: avoid ever dereferencing the backend's parent in a thread
* edje signal - let's not crash if something odd happens
* edje signal matches - try number 3 to try plug all the holes
* scalecache - handle possible use after free with sci still in list
* evas events: fix corrupted mouse events behavior on mapped object.
* evas -gl engines - buffer age - bring back fix for changing buffer age
* eio - don't call cb's after a cancel
* elm sel mgr - remove event handlers when no drop targets are left
* evas_vg: fix alpha animation bug in case of partial update
* elm_popup: calculate the label min size of popup before the popup group calculation
* vg_common_svg : Initialize "display" attribute
* fix a bunch of breaks that having a blind file unload has brought
* fix xpm loader to be threadable - fixes so much stuff...
* efl: check file's mtime in efl.file::file_set to determine if file is the same
* meson.build: allow to disable tiff evas loader
* ecore/signal: also use nonblock for writing side of signal pipe
* ector engine: +null checking.
* ecore-x: fix null derefs in window prop code
Changes since 1.21.0:
---------------------
Features:
* evas textblock: add/apply cursor cluster APIs based on grapheme cluster
* efl_ui_spin_button: Addded direction feature.
* scroller: refactory a momentum scroll animator
* elementary textpath: support legacy APIs
* elementary transit: add a convenient API.
* elementary transit: add a new api - elm_transit_progress_value_set()
* Text: add markup_range_get
* Canvas layout: support more Efl.Text.* with efl_part
* efl: Add support to elput for using elogind instead of systemd
* eina: add locale-independent eina_convert_strtod_c function
* elm perf tool - bring one back to efl
* eina: add locale-independent eina_convert_strtod_c function
* elm perf tool - bring one back to efl
* efl gfx_path: introduce efl_gfx_path_reserve()
* efl gfx_path: remove EFL_GFX_PATH_EVENT_CHANGED
* efl gfx_path: remove EFL_GFX_PATH_EVENT_CHANGED
* gfx: Add size hint fill (EO) (T3912)
* efl_app: add "standby" event (T5494)
* edje_cc: fail upon detecting invalid part description references in programs (T7016)
* elput: Add API to allow settings tap-to-click on pointer device
* ecore_drm2: Add API to allow settings tap-to-click on pointer device
* efl_ui_win: add 'exit_on_all_windows_closed' class property and unit test (T5494)
* efl_ui_win: add 'exit_on_close' property and unit test (T5494)
* eo: implement class overriding (+unit tests) (T7516)
* eolian gen: initial support for reflection api
* efl_ui_relative_layout: introduce new relative container (T5487)
* eolian: introduce typed slice types
* eolian: add support for inlist structs
* eolian: remove support for inlist/inarray
Fixes:
* build: fix rpath for binaries which use ecore-x dependencies
* elm/genlist: remove conditional in _calc_job for verifying show_item code (T6368)
* elementary image: don't calc size using empty ones.
* evas image: fix screen flickering issue at partial + image preloading
* edje_cc: change .mo file write location to be relative to the .edj file
* theme: add programs for deferred naviframe push/pop signals
* edje: unset internal _need_imf flag on shutdown
* elm_panel: return instead of EINA_SAFETY_ON_FALSE_RETURN (T7265)
* build: fix evas static build of gl engines
* ecore/main: only update loop_time during loop iteration if the change is monotonic
* evas gl: fix missing map texture target.
* elm_code: fix crash on backspace and selection delete. (T7259)
* ecore_wl2_dmabuf: Link with ecore_wl2 (T7327)
* ecore_wl2_dmabuf: Depend on ecore_wl2 (T7327)
* efl selection manager - avoid multiple selection get callbacks for req
* evas image: fix a bug in image preloading.
* evas canvas: fix null possibility of evas_object_above_get().
* edje: Remove hack code
* efl gfx_path: prevent buffer overflow.
* ecore_main: fix the invalid return value
* eina_vpath: fix the memory leak
* elementary: remove meaningless memory allocation and leaking
* elementary: fix memory leak from Efl.Ui.Layout.Object
* evas gl: fix invalid image size.
* elementary entry: apply scale to all edje objects
* eina debug: fix a double unlock issue
* elm_theme: fix return value when default style fallback is done
* evas vg: fix memory leak.
* devas vg: return default root node if possible.
* evas vg: fix memory leak at gradient.
* evas filter: remove critical messages from Evas Filter
* elementary transit: fix wrong pausing time calculation.
* Canvas text: fix line_jump_by logic
* cxx: explicitly require c++11 and fix tests to conform
* edje: fix an overflow issue for state values
* evas textblock: remove white space after line-break by a next item
* evas ector: fix memory leaks.
* evas vg: update render properly.
* ector software: make a pair of ref/unref.
* evas gl: recover current program state.
* ecore_evas - fix aninmator based frame render ticking to full framerate
* ecore evas - buffer - init ecore event evas as many times as shutdown
* eina: fix a build failure caused by missing 'locale_t' from OSX
* ecore_con: handle timeout of the attempt to connect.
* ecore_evas - fix aninmator based frame render ticking to full framerate
* ecore evas - buffer - init ecore event evas as many times as shutdown
* eina: fix a build failure caused by missing 'locale_t' from OSX
* ecore_con: handle timeout of the attempt to connect.
* evas gl - make GLintptr etc. also ndefed for GL_VERSION_1_5 fix typedef (T7502)
* ecore-drm2: Fix drmModeSetCrtc call during fb flip
* textblock: Fix crash with filters
* edje - stop trying to access ready deleted exrt/group swallow objects
* evas: remove memory leaks from deleted Textblock objects
* elm - dnd - restore to working as drop targets
* elm_config: Free data returned from eet_read
* ui/flip: fix efl_pack usage
* elm_entry: make file loading succeed on 0-sized files (T6562)
* theme: fix odd state setting on some items for list/genlist/gengrid
* theme: correct part name in program for elm/hover/base/main_menu_submenu/default (T6219)
* theme: remove a ton of invalid part description references in various programs (T6873)
* ecore-evas/extn: use evas from events when updating key masks (T5536)
* edje: apply maps to textblock cursors and backgrounds (T4977)
* ecore drm2 - work around kms/drm bug seemingly when no flip event comes
* elm textpath: reduces differences between actual pos and modified pos
* elm_map: Make more robust elm_map (T7443)
* Fix leak in elm atspi
* eina_file: set errno on open fail for win32 build
* evas-gl-drm: Fix issue of rotation not actually rotating (T7690)
* solve neon rotation issue by moving to the tiled rotator
* eo: Fix missing varags cleanup (CID1399080)
* efl_core_command_line: Fix logically dead code (CID1399106)
* efl_ui_widget_common: Fix potential resource leak (CID1399088)
* efl_ui_selection_manager: Fix unchecked return value (CID1399092)
* evas_device: Fix dereferencing null pointer (CID1399091)
* efl_ui_stack: Fix dereference null return value (CID1399082)
* efl_ui_datepicker: Fix uninitialized scalar value (CID1397006)
* efl_ui_grid: Fix dereferencing null pointer (CID1397000)
* ecore_con: Fix dereferencing of null pointer (CID1396990)
* elm_atspi_bridge: Fix resource leak (CID1399429)
* efl_ui_win: Fix dereference null return value (CID1399428)
* efl_ui_win: Fix dereference null return (CID1399427)
* efl_ui_win: Fix dereference null return (CID1399426)
* efl_ui_win: Fix dereference null return value (CID1399425)
* efreet: Fix resource leak (CID1399090)
* efl_ui_text: Fix resource leak (CID1396998)
* eldbus: Fix dereference after null check (CID1399422)
* efl_ui_focus_manager_calc: Fix resource leaks (CID1396984, CID1396965)
* elm_focus_legacy: Fix resource leaks (CID1399096, CID1399095)
* eldbus: Fix resource leak (CID1399097)
Changes since 1.20.0:
---------------------
Features:
* evas: Make all EO canvas objects visible by default
* Eo: Allow multiple functions overrides (T5580)
* eo: Add debug_name read-only property to ease debugging
* evas/edje/elm: Override debug_name in core classes
* wayland: add efl-hints protocol for setting aspect on surfaces
* efl-wl: support min/max hinting
* efl-wl: add handling for external protocol interfaces
* edje - add embryo echo command for debugging
* layout: Implement missing edje APIs (T5315)
* ecore-wl2: Add support for Window Iconify State Change
* ecore-evas-wayland: Add handler for Iconify State Change event
* efl: Introduce Efl.Ui.Direction interface (T5870)
* Efl.Ui.Panes: implement allow_user_size_hints on parts (T5359)
* Efl.Ui.Panes: rename left/right_size_set to split_ratio (T5359)
* efl-wl: add EFL_WL_DEBUG env variable for enabling wayland debug
* efl-wl: add functionality for extracting surfaces for external use
* elput: Add API to set pointer acceleration speed (T4736)
* ecore-drm2: Add API function to allow setting pointer acceleration speed (T4736)
* ecore-drm2: Add API to allow setting pointer acceleration profile (T4736)
* Introduce text on path widget
* eina: Add convenience eina_rectangle_equal
* evas textblock: support ZWJ, ZWNJ, LRM, RLM in escaped form
* evas: Add EO API to get clipper in smart object
* evas: Add group_member_is to smart objects
* efl: Introduce Eina.Rect and switch EO APIs to it
* efl_ui_image: add new scale type: EFL_UI_IMAGE_SCALE_TYPE_TILE
* Canvas text async: add async layout functionality
* Ui text: add Efl.Ui.Text_Async object
* edje: Add part_type_get API
* ecore exe - add an "isolate io"f lag for sending io to /dev/null
* evas: Add scale feature for embedded bitmap fonts.
* eo_debug: Enable logging of all ref/unref
* eo: Add API to allow deletion by unref
* Efl text: add Efl.Text.Markup interface
* evas: Implement support for different H/V font DPI
* elm_config: add offline and powersave config members
* efl_wl: add function for returning the evas object for an extracted surface
* wayland: add support for efl weight hint propagation from elm_win to efl_wl
* evas textblocke: add align=end for putting a text at the opposite side of LTR/RTL
* eina: eina_value - Add "struct tm" support (T6204)
* edje_cc - add offset_scale/offscale per desc to allow offsets to scale
* Genlist Item Pin Feature (T6241)
* saver/svg: parse loaded tree data into svg XML file and save it
* build: improve configure accessibility
* eolian: Add API's for part enumeration
* evas filters: Add "alphaonly" flag for blend and blur
* elm: Add "shadow" part to all widgets
* efl-wl: add function to get the parent of an extracted surface
* ecore_imf: Add transaction start and end event callback
* entry: Add autofill hint
* eo: Add "destruct" event
* efl-wl: move to xdg-shell vfinal
* wayland: add xdg-shell vfinal support for client-side
* Canvas image: add Efl.Canvas.Textblock.Factory + use in Ui.Text
* efl-wl: add functionality for directly passing through xkb objects
* ecore-x: add more info to Ecore_X_Event_Xkb event
* ecore-x: add some useful xkb function wrappers
* eolian: deferred parsing of inherits + better static checks
* ecore: add function for prepending an event handler
* efl-wl: add functions for managing allowed client pids
* efl-wl: add function for passing ecore-exe flags to launched exes
* ecore-drm2: Add API functions to get/set output relative mode
* efl-wl: send surface enter/leave based on compositor object visibility
* ecore-drm2: Add API to get/set which output is relative to another
* ecore-drm2: Add API function to retrieve output user data
* edje: add ability to reference images from other edje files
* eolian: add API to query information about Objects
* eolian: clean rollback support
* evas: apply fribidi bracket types to show paired bracket properly
* efreet: add method for disabling efreetd connection
* efl_ui_spin: Added special value feature.
* elm_entry: add elm_entry_prediction_hint_hash_set/del API
* edje_cc: add option for verifying namespace usage (T6911)
* eio: add method for setting the global file polling rate for fallback monitors
* eina_debug: add function to reset debug subsystem after fork
* eio: add method for determining if a monitor is using the fallback mechanism
* edje_cc: add 'skip_namespace_validation' keyword (T7072)
Fixes:
* ecore-wl2: pass display to aux hint event_adds
* ecore-wl2: don't send null set_parent requests for every window
* ecore-wl2: sync aux hints after window creation
* efl-wl: block connection attempts from unmanaged clients
* wayland: fix min/max size setting
* efl-wl: do shm pool ref/unref for bm safety
* ecore-evas-wayland: update size when size hints are changed
* efl-wl: add handling for commit during canvas render
* efl-wl: set cursor surface roles
* theme: clip start gadget arrow to intended clipper
* edje crash with run program references - fix
* Allow to override build date (T5495)
* elm_win: simplify/fix recalc logic when changing csd
* elm_win: set shadow geometry based on borderless state
* elementary cursor: remove a warning message from Wayland supports
* elm: Add missing undef EAPI to Elementary.h
* ecore glib support - if we are not the main ctx owner loop to acquire
* evas: Fix crash in E (T5868)
* eolian: implement proper return type serialization (T5024)
* eo: Check refs in efl_data_scope_safe_get (T5869)
* wayland: fix xdg-shell popup windows
* efl-wl: use correct accessor method for keyboard resource hash
* elm_widget: do not reparent subobjs to top widget for non-elm objects
* efl-wl: always dismiss popups on hide
* efl-wl: handle case where eglBindWaylandDisplay fails
* ecore: always set delete_me before removing fd from poll
* efl-wl: initialize seat keymap fd to -1
* ecore_evas_extn: Fix socket & plug windows
* elm_test: Fail nicely if plug can't connect
* evas: make top object returning functions return the top object
* theme: handle e dialog sizing when no buttons are present
* wayland: fix num/caps lock handling in events (T5737)
* elm segment control: delete event cbs on obj delete.
* glview: Fix ALWAYS render policy
* elm_box: Fix support of aspect hints (T5888)
* theme: fix dialog sizing when no buttons are present
* edje: Fix warning message
* efl_ui_clock: Parses the format recursively.
* photocam: Fix key zoom in/out
* elm init - fix init seq and quicklaunch as we shut down x before evas
* ecore-wl2: normalize axis event values (T5427)
* efl-wl: match nested wl seats based on display ordering
* elm_win: update opaque region for fake windows
* elm_win: check for wayland engine during finalize by checking for wl win
* efl_ui_image: maintain geometry for prev image while preloading new image (T5936)
* access: Fix crash in ecore
* Canvas text: fix non-dirty paragraph width calculation (T5939)
* evas: fix invalid return of evas_textgrid_cellrow_get()
* eina file - use recursive locks for cache and file to avoid deadlock
* eina mmap safety - only map zeropages if it's an eina file that sigbuses
* multibuttonentry: Separate selected item and focused item logic.
* efl_ui_clock: Add 'O' character to ignore POSIX alternative format in format.
* elm focus manager - dont leak child lists when updating focus order (T5800)
* elm focus manager - dont leak child lists when updating focus order (T5800)
* eina_array: Fix magic checks to return
* evas: handle object names with a list hash
* evas: fix event grabber child stacking
* ecore_exe - fix failed finalize fork to reutrn NULL not ecore_exe_free
* evas: proceed glyph iterator to handle next index properly
* evas_thread: only join the thread if the thread is still alive (T5245)
* filters: Safety++
* cxx: generate a constructor with a parent and a lambda function (T5980)
* evas: don't search other fonts only for INHERITED script unicodes
* edje: Add legacy compatibility code (T5944)
* evas box - fix longstanding bug where min size is miscalculated
* ecore exe - fix fix malloc fail handling
* efl net - adapt to openssl 1.1.0 changes with tls method support
* eina: prevent memory corruption in chained mempool
* efl net http - fix protocol error handling to not crash and handle it
* flip: Fix invalid use of EOAPI in legacy header
* eina file: Fix map_populate on the global map
* eina file: Ensure populate is safe to call
* elm image: Fix async open to avoid multiple mmap
* Entry: use _edje_seat_name_get to get the seat
* edje: Fix invalid storage of efl_part objects (T6032)
* efl po files - fix LTR/RTL translation string to be correct for langs
* efl ui layout - handle content unset properly and remove the unset item
* hover: Fix hover parts usage
* ecore-x: reject successive MappingNotify events if they are identical
* elm hoversel - fix alignment in ephoto (T6078)
* evas textblock: use primary font's size as minimum size of a line
* elm: Fix module load with ELM_RUN_IN_TREE
* elm: Properly unregister providers on shutdown
* evas: Fix shutdown of async cmd cache
* eo: Fix crashes with call cache after init cycle
* elm: Delete atspi root object on shutdown
* ecore: Reset do_quit when ecore shuts down
* elm: Fix shutdown of atspi (unregister handlers)
* evas textblock: use main font's ascent/descent as minimum value
* evas: Fix dangling references with input devices
* eo: Fix unnecessary ERR logs with eo_debug
* eo: Allow efl_reuse to be called with a parent
* evas ector gl - fix leak of image data on data put (CID1374645)
* evas font: check returned value of FcPatternGet function
* edje entry: fill content info when text is deleted by imf event
* ecore-file: do not emit events when an inotify watch is removed
* elput: Fix issue of pointer rotation not being set on startup
* eolian-bin: Free previously allocated eina_strbuf (CID1381502)
* evas-gl-common: Fix dereference after null check (CID1374272)
* evas-gl-image: Fix dereference after null check (CID1374273)
* elementary: passing NULL to variadic funtion can be undefined.
* eet: wrong comparision to less than zero with unsigned integer.
* evas: there is no effect of variable assignment outside the function.
* efreet: unsigned int cannot be compared to less than zero.
* emotion gst1 - handle null imagwe data returrn and dont crash
* eina: same expression on both statement.
* eina: comparing less than zero with unsigned long int
* emile: comparing less than zero with unsigned interger.
* ephysic: comparing with same statement.
* evas: there is no effect of variable assignment while clean up.
* emotion: Properly unmap video frame
* efl_ui_bg: fix ELM_BG_OPTION_CENTER bg in left top side.
* edje_cc: fix a memory leak issue when edje_cc writes images
* evas gl generic/common - add more linking for gles mode to fix deb build (T6158)
* jp2k module - dont print ERR on llading if format wrong
* edje_edit: duplicate assignment to variable.
* ecore_wayland: fix assigned value is never used.
* ecore: remove doxygen warning messages
* win: Do not forward all key events on win (legacy) (T6148)
* evas: Prevent crash with image_data_get (T5957)
* elm_code_widget: make sure the widget is cleared properly. (T6185)
* ecore_wl2: Remove just the flush from the idle handler (T6250)
* elm_tooltip: set parent window for windowed tooltips
* efl_wl: more closely follow wl spec for input regions
* efl_wl: destroy extant shell surface upon surface deletion
* efl_wl: do not propagate hints to main widget for child surfaces
* ecore-wl2: correctly handle configure events on popup surfaces
* ecore_cocoa: fix the backspace key
* edje_cc: fix errors in documentation
* edje_cc: add missing default values to documentation
* edje_cc: fix color2 and color3 descriptions
* edje_cc: fix state.no_render description
* edje_cc: parse "fixed" as bool
* edje_cc: fix incorrect type in minmul defaults
* edje_cc: fix color_class description
* edje_cc: move part_remove and program_remove to group
* edje_cc: fix default color_class colors
* edje_cc: fix spelling
* edje_cc: make bool parsing consistent
* edje_cc: make color parsing consistent
* edje_cc: move box and table properties documentation
* edje_cc: limit map.zoom to non-negative values
* edje_cc: fix text.align description
* edje_cc: fix program.filter description
* edje_cc: fix item.max parsing
* edje_cc: fix parsing and documentation
* ecore-drm2: Fix issue of not being able to set output mode
* Efl.Ui.Radio: remove value{} api
* edje: don't return negative width and height from _parts_extends
* evas textblock: handle ellipsis when text's height exceed its area by "br"
* evas-software-generic: Check for render engine function before calling
* evas-wayland-shm: Do not dereference a potentially freed pointer (CID1381707)
* emotion: Fix data race condition (CID1381624)
* evas-object-main: Fix null dereference (CID1381710)
* evas-object-main: Fix null dereference (CID1381711)
* evas-object-main: Fix potential null dereference (CID1381713)
* evas_vg_cache: load svg from any file, not from defined only
* ector: use cairo_pattern_add_color_stop_rgba in gradient_radial
* vg_loaders/svg: set up default focal values for radialGradient
* efl_gfx_path: fix typo in _path_bounds_get
* evas_vg_load_svg: default stop opacity color should be 255, not 0
* evas_vg_load_svg: get rid of static Evas_SVG_Parsing
* efl ui win - make win centering work with multiple screens (T6323)
* eo - fix freeq usage to not use freeq for a vtable cleaning
* efl_ui_radio: keep radio state when theme is changed
* efl net - handle proxy helper fails better and abort proxy lookups
* elput - re-enable switches (power buttons, lid etc.)
* elm_code_widget: keep track of visibility.
* Ctxpopup: resizing ctxpopup after its content is removed (T6327)
* genlist: fix state corruption of content
* Efl.Ui.Slider: add default indicator format to %0.2f
* elm_genlist: fix rare segfault
* elput: Remove unreachable code (CID1382857)
* ecore-wl2: Destroy buffer before we exit the buffer_test function
* efl_ui_bg: fix unclipped image on EFL_UI_IMAGE_SCALE_TYPE_NONE
* eo - by default on 64bit only use 47 bits because of luajit
* elm ifrace scrollable - fix uninitialized values on scroll asjust
* ecore ipc/con: fix nasty ... they dont mutually exclude
* efl_ui_bg: add Efl.Gfx.color_get.
* eina_file: make sure we use a stringshare when virtualized. (T6449)
* ecore-evas-drm: Check for XDG_SEAT existence (T6455)
* efl_ui_text: apply new theme logic and use constructor/destructor
* Efl.Ui.Popup.Alert: add message signal process function for scroller size calculation
* elementary: Fix resource leak (CID1383549)
* elementary: Fix resource leak (CID1383550)
* elementary: Fix resource leak (CID1383551)
* eina: Fix typo in doxygen
* evas: Fix potential crash with draw context
* eeze: Don't leak udev enumeration
* eeze: Remove unused device variables
* eldbus test - del not unref obj as it has a parent ...
* eina: fix random segfaults when displaying BT
* Elementary: fix makefile ignore efl_ui_theme edc's change
* ecore_con: bug workaround SO_REUSEADDR and EADDRINUSE from bind (fix)
* elm - scroll manager - fix up momentum animator code to use real consts
* elm: fix memleak in combobox
* emotion: unset DISPLAY when loading an engine under wayland (T6418)
* ecore evas init - init ecore then evas not the other way...
* fix evas test suite to now init both ecore and evas.... correctly.
* ecore-drm2: Fix enabling outputs
* ecore-drm2: return supported rotations if not using hardware
* efl-wl: do not modify extracted surface visibility during commit (T6443)
* elementary: Remove use of implicit declaration
* evas sw generic - don't dlopen osmesa until first needed.
* ecore_audio - don't about destruction because of failed sndfile load
* elm_tooltip: force immediate hint recalc during tooltip creation if 0x0 size
* elm_tooltip: immediately show tooltip if callback is set for obj under pointer
* efl-wl: unset cursor role on existing cursor surface if new cursor is set
* ecore_audio wasapi - fix ecore win32 handler deletion and destruction (T6607)
* efl theme - fix bug in e init splash that would do hide anim 2x (T6619)
* efl-wl: send more mouse buttons to clients
* efl-wl: propagate surface activation back to parent if child is hidden
* efl-wl: set event ON_HOLD flag when they are sent to a surface
* efl-wl: remove some broken logic for activating toplevel parents
* efl-wl: only send keyboard enter and activation for mapped surfaces
* efl-wl: immediately unset a destroyed surface's cursor
* efl-wl: only perform mouse-out operations for a seat if the mouse was "in"
* wayland: always flush client display when protocol sends are pending
* ecore-wl2: correctly translate spacebar keyname into key events (T6620)
* ecore-x: perform internal shutdown on io error if callback is set
* ecore-x: add more null checks for functions
* elementary config: Fix to use ELEMENTARY_BASE_DIR for configure path
* ecore-x: filter XkbNewKeyboardNotifyEvent before emitting ecore-x event
* ecore-x: re-add implementation of ecore_x_connection_get()
* efl-wl: fix no-op of setting keyboard enter on already-entered surface
* efl-wl: unset kbd mods changed flag after sending modifiers
* ecore: prune existing thread_join callbacks during ecore_fork_reset
* edje_cc: make -thread option
* Efl.Ui.Image: remove previous image when NULL is set
* elm: call ecore_event_init() during init
* ecore-file: make monitoring truly fork-safe
* eio: make inotify monitors fork-safe
* disable async mode (use sync mode) for ibus when keymap changes
* ecore-drm2: Ensure output changed event is sent for removed outputs
* eio: remove broken pid-based monitor reset copied from ecore-file
* ecore-imf: do ecore-x init during ctx creation instead of module init
* elm: call ecore_app_args_set() after quicklaunch fork
* elm: remove ecore-x init from quicklaunch post-fork
* elm progressbar - fix val set (T6697)
* efl ui format - fix format checking to be correct (T6697)
* edje - entry - fix empty item handling (T6668)
* ecore-evas-drm: Use output viewport in ecore_evas_animator_tick calls
* evas drm engines: Fix variable type for output
* elementary: fix legacy widget type name for backward compat
* ecore - fix fd handlers to also set read/write/err flags on hup's
* ecore - loop handler - fix wakeup to reslect active flag mask
* evas event_grabber: fix child ordering when adding non-top children
* elm_datetime: Handle wrong param case for legacy.
* elm: set default theme name internally when applying config
* efreet_xml: make sure we unmap the right pointer. (T5949)
* evas: increase offset by 4 to do work for next map points
* efl_ui_multibuttonentry: maintainance legacy function type.
* elementary: add missed type for legacy.
* elementary: bg - keep file path and key string for legacy bg widget
* ecore-wl2: Reduce calls to strlen
* ecore-wl2: Check for valid string before passing to strlen()
* genlist: fix "insane" order [BUG COMPATIBILITY] (T5938)
* efl_ui_clock: Fix wrong target to compare with.
* ecore ipc - fix flush to not lose messages
* evas: fix Evas Map AA changes the alpha flag of an image issue. (T1975)
* eldbus: call ecore_init in eldbus_init
* efl selection - fix paste with multiple windows and filter by window
* efl selection manager - handle multi window selections properly
* evas - plug in dirty + pixels get hold in "is inside" for images (T6791)
* elm - selection manager - fix string buffer handling and format types (T6284)
* ecore: poll the thread pipe twice during shutdown
* ecore: reduce pipe wait time during shutdown
* edje: fix potential memory leak.
* edje: fix potential memory leak.
* ecore: fix a potential memory leak.
* ecore ipc - fix send to skip data payload if null/0
* evas - loading extension query - fix to not skip small extensions
* efl selection manager - fix crashes when doing selections on non-x11
* efl selection manager - fix anoyther binary buffer treated as string bug
* efl selection - fix entry <-> plain text compy and paste in wl
* efl selection - fix another binary buffer treates as string bug
* efl selection manager - fix dnd end handling to only handle on dnd
* efl selection manager - fix x11 cnp from entry to plain text conversion
* edje: Dont append font source if fonts are not embedded in edje
* edje edje_cc: fix memory leak.
* ecore: fix a potential memory leak.
* ecore_wl_dnd: correct wrong variable assignment
* elm: resolve possible memory leak.
* elm: resolve possible memory leak.
* ector cairo: fix a memory leak.
* elm: resolve possible memory leak.
* elm: resolve possible memory leak.
* elementary bg: allow NULL pointers in legacy usage
* elementary: fix build on X11.
* edje: remove recalc from content_get and text_get
* ecore animator, x, vsync ecore evas restore x vsync to work again
* evas: fix default return value of image-related legacy functions
* edje: fix backward compatibility issue caused by legacy cursor funcs
* ecore-evas-win32: set draw_block until the window receives a configure event (T6907)
* efl_ui_image: add NULL check in elm_image_memfile_set() function
* evas textblock: fix double free issue from user style push/pop and free
* Evas textblock: fix wrong hyphenation issues with non UTF8 encoded dictionary (T3221)
* edje: return proper value from the function.
* elm_multibuttonentry: Fix to install eo header files
* edje: Fix to support translation for textblock part
* evas textblock: update format nodes when a Evas Textblock Style is updated
* evas textblock: manage default style properly for new interfaces
* efl_ui_tags: Fixed bug when setting format string.
* evas: fix a map rendering problem.
* elm_main: call _elm_config_shutdown() after loop_iterate()
* efl_ui_win: fix wrong comparison in icon_object_set
* elm_interface_scrollable: change return value for post events.
* edje: don't give a wrong Edje data when an Edje object has group parts
* elm_notify: remove allow_events_set call in destructor
* elm_spinner: Spinner value adjust when round enabled.
* elementary textpath: update Evas map when text is updated
* elementary widget: fix to trigger object signal emit properly. (T6981)
* evas engines: do not immediately free native surface when unsetting it (T6970)
* edje_cc: fixup edje_collections_lookup hash ids during collection pruning
* evas vg: fix broken vg rendering. (T6993)
* edje: fix an issue "description.text.text" is not shown (T6997)
* evas vg: get rid of memory leak.
* ecore_evas: fix crash on free of smart data. (T6974)
* eina_barrier: handle PTHREAD_BARRIER_SERIAL_THREAD return from barrier_wait
* evas vg: fix broken morphing(interpolation) (T6996)
* evas vg: fix another memory leak
* efreet: mark efreet_menu_async_parse() deprecated. (T585)
* eina_lock: do not set PTHREAD_MUTEX_ERRORCHECK on recursive locks (T1984)
* eina_lock: modify mutex debugging to ignore recursive locks
* eina_lock: remove locks from eina tracking list on free while thread debugging
* eina: disable abort on shutdown when triggered by system monitoring thread
* eet: handle decode failures as errors in variant decoding (T5379)
* ecore - handle G_IO_ERR conditions for net sockets (T5725)
* emotion_generic: clean up event handlers on fork failure
* eina_threadqueue: fix spinlock destruction by using spinlock api
* eina_threadqueue: add locking for variable used between threads
* eina: call eina_threads_init from eina_debug_init
* eina: prevent threads subcomponent from being shutdown while eina is active
* eina_debug_bt: only enable SIGPROF handler when profiling is enabled (T7028)
* Edje load: add safecheck for TEXTBLOCK-specific code path (T6279)
* ecore_cocoa: fix ECORE_EVENT_KEY_DOWN/UP on MacOS. (T6944)
* efl: Bump required libinput version for Elput
* edje: fix text set/get issue without edje calculation
* Edje: recalc edje before fetching the real part (T7057)
* ecore/thread: track "no_queue" threads (T7041)
* ecore_con: make dns resolver thread stop blocking when canceled (T7041)
* elm/win: move trigger for "shot" to first pre-render callback (T6929)
* eina/lock: add errno wrapping for backtrace() calls in thread debug blocks
* ecore/thread: track "no_queue" threads (T7041)
* ecore/thread: flush main loop threads during ecore_thread_wait()
* eio/fallback: fix fallback shutdown when threads exist
* eio/fallback: remove intermediate idler
* eio/fallback: fix MODIFY event emission on base path when monitoring (T7042)
* eio/fallback: mark all fallback monitors as fallbacks, not just for win32
* eio/fallback: do not modify the children hash while iterating it
* tests: cancel the timeout timer when cleaning up eio tests
* evas map: check render condition more elaborately. (T6975)
* Elm label: fix "horizontal_fixed" usage with different styles (T5382)
* eet: set parent struct member when adding a child to a parent node (T4600)
* Evas font: fix inifinite loop problem for fallback fonts
* Evas font: add comparison for fallbacks in evas_font_desc_cmp()
* Evas font: simplify fallback parsing step
* Evas textblock: clear ellipsis item at start of layout (T6986)
* elm_test: fix invalid read in dnd image drop
* ecore-con/legacy: kill server with DEL event if a dialer error occurs (T6330)
* efreet: use correct path when generating error message about stale efreetd socket (T7045)
* eo/base_class: explicitly refuse to set an object as its own parent
* ecore-con/proxy_helper: fix in-tree run path (T6713)
* efreet: simplify and fix efreetd launch (T6713)
* build: always check for fork() and clearenv()
* popup: fix popup sizing when scroll enabled. (T6886)
* evas gl-x11 engine - nvidia driver - fix performance drop
* canvas vg_loader: close opened file after using it.
* elm/win: correctly track and set x11 shaped state
* evas textblock: adds missing legacy types
* canvas render: stop render_pre/post cb if it didn't render.
* Evas text textblock: call evas_font_free even on null fonts
* emile image: close file properly.
* examples/evas: do not attempt to free animator on window delete (T7000)
* ecore_evas: when window resized in ecore_evas, check evas rotate state.
* elm_code: (cherry-pick) Fix cusor pos after newline when indenting with tabs
* ecore x - fix vsync to not block amdgpu drivers
* elm_code_widget: resize cursor at time of font change. (T6470)
* evas canvas: fix not to trigger unnecessary events.
* build: fix rpath for binaries which use ecore-x dependencies
* elm/genlist: remove conditional in _calc_job for verifying show_item code (T6368)
* elementary image: don't calc size using empty ones.
* evas image: fix screen flickering issue at partial + image preloading
* edje_cc: change .mo file write location to be relative to the .edj file
* theme: add programs for deferred naviframe push/pop signals
* edje: unset internal _need_imf flag on shutdown
* elm_panel: return instead of EINA_SAFETY_ON_FALSE_RETURN (T7265)
* build: fix evas static build of gl engines
* ecore/main: only update loop_time during loop iteration if the change is monotonic
* evas gl: fix missing map texture target.
* elm_code: fix crash on backspace and selection delete. (T7259)
Changes since 1.19.0:
---------------------
Features:
* evas: Make save() work on snapshots (T2102)
* ecore-drm2: Add support for plane formats
* ecore-drm2: Support multiple planes on a given output
* ecore-drm2: Add hardware plane functions
* ecore-drm2: Add API function to set plane destination
* ecore-drm2: Add library symlink to merge atomic commit requests
* ecore-drm2: Add API functions for atomic commit test and commit
* eo: Add new API efl_cast (T5311)
* Ecore_Win32: add ecore_win32_window_state_get() API to retrieve a window states
* Ecore_Win32: add Property event API
* Ecore_Win32: add API to retrieve the geometry and dpi of plugged displays
* evas map: Introduce new API for maps (Efl.Gfx.Map)
* evas map: Reach feature parity with legacy API
* ecore-evas: add function for unsetting a specific seat's cursor
* ecore-wl2: store names for inputs and add api for retrieving name
* ecore-wl2: add some accessors for useful Ecore_Wl2_Input struct members
* ecore-wl2: add function for checking if a client connection sync is done
* ecore-wl2: change selection setting apis to return the serial of the request
* ecore-wl2: add events for changes in keymap, selection, and kbd repeat rate
* ecore-wl2: add function for accepting a single mime type
* ecore-wl2: add function for setting a drag source's actions without a drag
* ecore-wl2: add functions for proxying a selection receive externally
* efl_input_device: add seat_id property
* evas_device: add seat_id property, set seat id for default fallback seat
* ecore-wl2: add ecore_wl2_display_input_find()
* ecore-wl2: add ecore_wl2_display_name_get()
* elm_cnp: add event for selection change
* elm_cnp: add elm_cnp_clipboard_selection_has_owner()
* elm_win: add elm_win_get()
* ecore-wl2: add ecore_wl2_display_input_find_by_name()
* ecore-wl2: add ecore_wl2_window_activated_get()
* ecore-wl2: add ecore_wl2_window_popup_input_set()
* evas: add evas_device_get_by_seat_id()
* edje: Implement EO API for message_send
* evas: Add children_iterate to Efl.Input.Device
* evas/elm: Add Efl.Image.image_size read-only property
* elput: group tablet input devices into pointer devices
* elput: add initial input tablet support
* ecore-wl2: implement compose keys (T5006)
* elput: implement compose sequences (T5006)
* wayland/drm: create evas_devices and add device pointer to input events
* Efl text: add Font, Format and Style interfaces
* Canvas text: implement Font, Format and Style interfaces