Commit Graph

67292 Commits

Author SHA1 Message Date
Hermet Park 8eb04c5321 Merge branch 'feature/themes/flat' into devs/hermet/lottie 2021-03-22 10:43:22 +09:00
Hermet Park e6019ce6d9 Merge branch 'master' into devs/hermet/lottie 2021-03-22 10:42:35 +09:00
Carsten Haitzler 5f4524295a efl ui scroller - support signals for up/down/elft/right show/hide 2021-03-21 01:37:20 +00:00
Carsten Haitzler 31d44a2ffd TH - efl scroller 2021-03-21 01:37:07 +00:00
Carsten Haitzler b1426bf022 TH - efl radio 2021-03-21 00:05:02 +00:00
Carsten Haitzler 796e345da1 evas - gl - stop leaking images and never freeing them from cache
the subject says it all

@fix
2021-03-20 21:58:25 +00:00
Carsten Haitzler 4ed5ad6e35 TH - efl ui progress 2021-03-19 17:18:38 +00:00
junsu choi 3666574f88 ector image: Prevents drawing images outside buffer
Summary:
A crash may occur when image size is set larger than buffer.
So, modify boundary of the image drawing the image
so that it does not go out of the buffer.

Test Plan: N/A

Reviewers: Hermet

Reviewed By: Hermet

Subscribers: cedric, #reviewers, #committers, kimcinoo

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D12251
2021-03-18 17:10:05 +09:00
Carsten Haitzler 17af05ba88 TH - make ac on/off sound only do it after 5 sec after start 2021-03-17 23:30:53 +00:00
Carsten Haitzler 9a70d3cc97 TH - battery - add sound for ac on/off - very useful 2021-03-17 22:52:08 +00:00
Carsten Haitzler fa106bc710 TH - efl popup 2021-03-17 16:48:15 +00:00
Carsten Haitzler eb7b16f9ed TH - efl.ui panes 2021-03-17 14:52:12 +00:00
Carsten Haitzler ed336b2bcc TH - efl.ui.panel 2021-03-17 11:02:52 +00:00
Carsten Haitzler 106a0bb896 TH - ransitions - mark lots of them to be affected by transition multi 2021-03-16 11:02:55 +00:00
Hermet Park b9b2b72205 ecore_con: add null check for safety. 2021-03-16 10:28:27 +09:00
Carsten Haitzler 29269c8774 TH - efl pointer 2021-03-15 17:31:22 +00:00
Marcel Hollerbach 046c5cd58e eeze_scanner: do not crash
the free logic here was wrong. The udev_device_get_parent results get
automatically unrefed when the original device is deleted.

This caused random segfaults when starting e.
2021-03-15 14:16:34 +01:00
Hermet Park b4460591b4 Merge branch 'feature/themes/flat' into devs/hermet/lottie 2021-03-15 14:57:39 +09:00
Hermet Park 2eae107604 Merge branch 'master' into devs/hermet/lottie 2021-03-15 14:57:34 +09:00
Marcel Hollerbach 3cd6191409 ci: there is no heif 2021-03-14 14:56:08 +01:00
Marcel Hollerbach 5215421570 efl_ui_collection: disable desktop_entry behaviour when in api call
otherwise only the last item would have been selected.
2021-03-14 14:34:14 +01:00
Carsten Haitzler f94c972f18 TH - add icons 2021-03-13 23:05:52 +00:00
Carsten Haitzler becb66e5d5 TH - unused icon remove 2021-03-13 19:28:28 +00:00
Carsten Haitzler 8a04046540 TH - progress - fix icon sizing 2021-03-13 13:08:07 +00:00
Carsten Haitzler ec52433f3a elm - fix emitting of signals to theme for label existence
@fix
2021-03-12 10:51:14 +00:00
Carsten Haitzler 593025db3e TH - fix check button styles to emit signals right 2021-03-10 22:19:10 +00:00
Carsten Haitzler c82df5c66b TH - navbar/layout (and bvutton was missed) 2021-03-10 00:30:55 +00:00
Carsten Haitzler aa7be1a96d evas gl - remove freed gl image from context image list
fix asan memory mis-access

@fix
2021-03-09 16:04:45 +00:00
Carsten Haitzler f0a67e22d8 TH - add download mime icon 2021-03-09 12:05:28 +00:00
Hermet Park 7a20b084fb Merge branch 'feature/themes/flat' into devs/hermet/lottie 2021-03-09 10:33:50 +09:00
Hermet Park 59453a5ab9 Merge branch 'master' into devs/hermet/lottie 2021-03-09 10:33:43 +09:00
Alastair Poole d8023529a1 theme: border procstats use swallow.
This is all debatable and "up in the air", but, using a swallow
here is probably better.
2021-03-06 11:05:38 +00:00
Carsten Haitzler 8fffd59dd1 TH - efl ui list 2021-03-05 21:54:01 +00:00
Carsten Haitzler 9e68bf7bfe TH - remove echo debug 2021-03-05 16:58:34 +00:00
Carsten Haitzler 6899bd034c elm conffig - display icons if using elm icon theme
also use different sample icons i think work better
2021-03-04 13:44:30 +00:00
Carsten Haitzler 34f7388ac4 TH - svg save 2021-03-04 13:25:17 +00:00
Shinwoo Kim 9da41a50cb evas_object_smart: enhance logic checking clipper visibility
Summary:
If current clipper object is equal to previous clipper object,
then the value of visible (or alpha) is same, because it is same object.

But there is a case that current visible value is different with
previous visible, when clipper object is same.

I added this patch to cover above case to draw childern of map.
See following flow.

  evas_render_mapped
    > if (_evas_render_has_map(obj) && !_evas_render_can_map(obj))
      > if (!changed) changed = evas_object_smart_changed_get(obj);

The evas_object_smart_changed_get returned FALSE, even though
current visible value is different with previous one in the same
clipper object.

Reviewers: raster, Hermet, herb, jsuya

Reviewed By: Hermet

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D12250
2021-03-03 16:44:28 +09:00
Hermet Park ea61e95e4c Merge branch 'feature/themes/flat' into devs/hermet/lottie 2021-03-03 09:59:46 +09:00
Hermet Park ec2356e9fb Merge branch 'master' into devs/hermet/lottie 2021-03-03 09:59:08 +09:00
Hermet Park a5f22e73d2 +++ 2021-03-03 09:55:51 +09:00
Carsten Haitzler fd18561a40 TH - efl ui image zoomable 2021-03-02 21:19:54 +00:00
Carsten Haitzler 91f07de890 efl ui format - now dont leak and dont double free 2021-03-02 13:20:00 +00:00
Carsten Haitzler 81f962da75 efl ui format - only sety format fun to null if format func free exists 2021-03-02 13:11:35 +00:00
Carsten Haitzler 67acb15a1f elm slider - don't double-free output format. 2021-03-02 12:52:53 +00:00
Carsten Haitzler cbc2251605 TH - make about theme flat-like 2021-03-02 12:00:47 +00:00
Hermet Park 6056d49666 +++ 2021-03-02 16:18:55 +09:00
Christopher Michael 914a85159b ecore_wl2: Remove legacy teamwork stuff
This patch removes the remainder of the Teamwork protocol &
implementation. The module has been removed from Enlightenment for
some time now so there is no need to generate a protocol or have any
legacy code remaining..
2021-03-01 11:22:58 -05:00
Christopher Michael f174e739e1 ecore-evas-wayland: Remove wayland wobbly windows junk
Never worked properly, is unsupported by upstream wayland, and is just
general clutter so let's remove it.
2021-03-01 10:33:31 -05:00
Christopher Michael 350b65fc21 ecore_wl2: Remove wayland wobbly windows stuffs
This cleans up the www mess that never worked properly and is
unsupported with no plans to ever be used
2021-03-01 10:32:08 -05:00
Christopher Michael fbfcb4b309 wayland_protocol: Remove wayland wobbly windows junk
This protocol never fully worked properly, is unsupported & unused,
would never be accepted in upstream wayland, and is just generally
worthless so let's remove it. There are no plans to ever support it...
2021-03-01 10:29:50 -05:00