1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00

2894 Commits

Author SHA1 Message Date
github-actions[bot]
e2f96b9007
Merge 20fef93fea45b3dc80cce28478fed16ab9c603d2 into dev 2020-11-13 15:21:10 +00:00
Gabor Kiss-Vamosi
20fef93fea fix(list): fix removing list elements
remove the button from last_sel_btn adn act_sel_btn
related to #1895
2020-11-13 16:20:11 +01:00
Gabor Kiss-Vamosi
63dfe9e8e3 fix(imgbtn): guess a the closest availabe state with valid src 2020-11-13 16:18:34 +01:00
Gabor Kiss-Vamosi
0ae70c027b fix(anim): tune overshoth path 2020-11-13 15:57:38 +01:00
github-actions[bot]
3e404b1583
Merge 43771fa2f71d5323ef9dffc1ff0aee326d59f5ce into dev 2020-11-11 12:22:27 +00:00
Gabor Kiss-Vamosi
43771fa2f7 fix(theme_material): remove the bottom border from tabview header
If the tabs were placed to the bottom the bottom border looked like gap on the bottom

fix #1882
2020-11-11 13:21:40 +01:00
github-actions[bot]
34635da14c
Merge b79d615ae82a1b9fa1352bf2af83244fa673a018 into dev 2020-11-11 11:30:19 +00:00
iDalink
b79d615ae8
look ahead chars when be in LV_LABEL_LONG_DOT (#1881)
Co-authored-by: Dalink <Dalink@gitee.com>
Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
2020-11-11 12:29:51 +01:00
github-actions[bot]
af27c16793
Merge 945f5900d586d480c0c8cffd1a44253fe5b69091 into dev 2020-11-10 21:07:35 +00:00
Gabor Kiss-Vamosi
945f5900d5 fix(arc): update knob position when bg_angle(s) changes 2020-11-10 22:06:58 +01:00
github-actions[bot]
24340fa927
Merge a7c4fc410ae45cdf7d83055821646cc7e51c4299 into dev 2020-11-10 21:00:26 +00:00
Gabor Kiss-Vamosi
a7c4fc410a fix(arc): fix and improve arc dragging
It was difficult to handle the pressed angle on the arc when it crossed the 360 degree boundery.
The solution is to handle the angle relative to the bg_start_angle. This way no angle can be larger than 360.
The other issue was the case when a smaller than min. or larger than max. angle was pressed.
It is handled by introducing 'min_close' flag which stores which end is closer on the last valid press
and prefer this end in uncleary situation.
2020-11-10 21:59:37 +01:00
github-actions[bot]
08fcf03c3f
Merge 93138759a956d9b86aa9f8cb97ba0ba2292d5468 into dev 2020-11-10 16:26:09 +00:00
Gabor Kiss-Vamosi
93138759a9 fix(btnmatrix): fix setting the same map with modified pointers
fix #1889
2020-11-10 17:25:17 +01:00
Gabor Kiss-Vamosi
d06aa859c9 fix(flex): correctly handle setting the size of streched flex items 2020-11-10 16:16:58 +01:00
Gabor Kiss-Vamosi
dd7a392023 fix(lv_obj_scroll): add missing function declarations in header 2020-11-10 16:16:13 +01:00
Gabor Kiss-Vamosi
9a926aa2f0 fix(copy): fix copying spec_attrs in lv_obj_create 2020-11-10 16:11:10 +01:00
Gabor Kiss-Vamosi
a69d5d08df fix(draw): handle opa_scale on scrollbars 2020-11-10 16:10:06 +01:00
Gabor Kiss-Vamosi
288411a1d3 feat(flex): add item placement in the main direction too 2020-11-10 16:09:28 +01:00
Gabor Kiss-Vamosi
1ea0d7845a fix(dropdown): fix incorrect scrolling to the selected option 2020-11-10 16:08:12 +01:00
Gabor Kiss-Vamosi
380df4578e
fix(lv_font_unscii_16) use relative include path to lvgl.h 2020-11-10 10:18:08 +01:00
Gabor Kiss-Vamosi
cfd0968bfe fix(grid): fix grid positioning with RTL base diraction 2020-11-09 19:58:05 +01:00
Gabor Kiss-Vamosi
fab5121ac5 feat(grid): add RTL and margin support 2020-11-09 16:14:51 +01:00
github-actions[bot]
2afd887fdf
Merge 1bc1d278eb7595181655e6e9754461718dc4b4e2 into dev 2020-11-09 15:11:28 +00:00
Gabor Kiss-Vamosi
1bc1d278eb fix(draw_triangle): fix polygon/triangle drawing when the order of points is counter-clockwise 2020-11-09 16:10:46 +01:00
github-actions[bot]
fc5709d04c
Merge b3c909683062e0bac2f62ce51bd3fafd0dfcafb8 into dev 2020-11-09 12:13:49 +00:00
Gabor Kiss-Vamosi
b3c9096830
Use copy of va_list rather than original va_list in txt_set_text_vfmt (#1890)
Fix issue #1886

Co-authored-by: Wenting Zhang <zephray@outlook.com>
2020-11-09 13:13:18 +01:00
github-actions[bot]
8a489b3a8e
Merge b19fb8620f9d59d86580e380796f78d52b5a373f into dev 2020-11-06 08:51:06 +00:00
Maureen Helm
b19fb8620f
lv_font: Fix compiler warning when compressed fonts are disabled (#1880)
Fixes a compiler warning in lv_font_fmt_txt.c when compressed fonts are
disabled (LV_USE_FONT_COMPRESSED=0):

/home/maureen/zephyrproject/modules/lib/gui/lvgl/src/lv_font/lv_font_fmt_txt.c:349:13: warning: 'decompress' defined but not used [-Wunused-function]
  349 | static void decompress(const uint8_t * in, uint8_t * out, lv_coord_t w, lv_coord_t h, uint8_t bpp, bool prefilter)
      |             ^~~~~~~~~~

This was found after upgrading Zephyr to use LVGL v7.6.1, building with
the Zephyr SDK 0.11.3 toolchain.

Signed-off-by: Maureen Helm <maureen.helm@nxp.com>
2020-11-06 09:50:32 +01:00
Gabor Kiss-Vamosi
2d986871c9 fix(lv_conf_internal): re-generate to add LV_FONT_UNSCII_16 2020-11-05 12:42:20 +01:00
Gabor Kiss-Vamosi
ef81e0fbc3 feat(font): add unscii-16 built-in font
https://forum.lvgl.io/t/more-unscii-font-version/3433
2020-11-05 12:38:44 +01:00
Gabor Kiss-Vamosi
92c23bab9a feat(flex): add LV_FLEX_PLACE_STRETCH to support stretching items in cross direction 2020-11-03 14:14:21 +01:00
Gabor Kiss-Vamosi
d12af050fa style: comment update in lv_flex.c and lv_obj_scroll 2020-11-03 13:19:54 +01:00
Gabor Kiss-Vamosi
1fa0c5527f perf(scroll): simplify lv_obj_get_scroll_right with RTL base direction 2020-11-03 11:48:27 +01:00
Gabor Kiss-Vamosi
d98b933b05 refactor(flex): use dedicated defines for flex_dir instead of OR-ing 2020-11-03 11:26:53 +01:00
Gabor Kiss-Vamosi
112c894e73 Merge branch 'master' into dev 2020-11-03 09:23:29 +01:00
Gabor Kiss-Vamosi
5035c0c780 Release v7.7.1 2020-11-03 09:23:29 +01:00
Gabor Kiss-Vamosi
f42afb1c52
Update lv_conf_kconfig.h 2020-11-02 16:12:24 +01:00
Gabor Kiss-Vamosi
66dc6250b5 flex, scroll: support RTL base dir 2020-11-02 15:52:26 +01:00
github-actions[bot]
380b59fddd
Merge 6d92d084f78600885cf478a84b91fcc142944526 into dev 2020-11-02 11:24:52 +00:00
Gabor Kiss-Vamosi
6d92d084f7 group: fix in lv_group_remove_obj to handle deleting hidden obejcts correctly 2020-11-02 12:24:12 +01:00
Carlos Diaz
16678b78bc
lv_conf_kconfig: Update (#1870)
* lv_conf_kconfig: Update

* lv_conf_kconfig: Define CONFIG_LV_COLOR_TRANSP with lv_color_hex.
2020-11-02 11:10:33 +01:00
Gabor Kiss-Vamosi
a2cc8c3127 minor fix 2020-10-31 14:22:35 +01:00
github-actions[bot]
8f14c31bc9
Merge a2b4bbcd2a997a874ab924fa0dd31820964233ea into dev 2020-10-29 22:05:58 +00:00
Gabor Kiss-Vamosi
a2b4bbcd2a add missing #include <stdarg.h> 2020-10-29 23:05:16 +01:00
Gabor Kiss-Vamosi
4fbc518d6a raname lv_obj_rare_attr_t to lv_obj_spec_attr_t and finialize it 2020-10-29 22:46:37 +01:00
Gabor Kiss-Vamosi
7a950f1863 introduce lv_obj_rare_attr_t 2020-10-29 14:51:39 +01:00
Gabor Kiss-Vamosi
e6738a2617 remove debug code 2020-10-28 14:58:44 +01:00
Gabor Kiss-Vamosi
54fa0dc28b fix lv_mem_free 2020-10-28 14:50:42 +01:00
Gabor Kiss-Vamosi
6bc4f00bf0 minor fixes 2020-10-28 14:40:14 +01:00