From 8b7ffccd64f8388c3c32f3892c447063e161961e Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Tue, 8 Sep 2020 13:45:22 +0200 Subject: [PATCH 1/4] Update ROADMAP.md --- docs/ROADMAP.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/ROADMAP.md b/docs/ROADMAP.md index 4894a7f71..e979db508 100644 --- a/docs/ROADMAP.md +++ b/docs/ROADMAP.md @@ -4,6 +4,9 @@ This is a summary for thenew fatures of the major releases and a collection of i This list indicates only the current intention and can be changed. +## v8.1 +- Add radio button widget + ## v8 Planned to September/October 2020 - New scrolling: From a2685363e8374eefd84291291ca5d5461130b7d7 Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Tue, 8 Sep 2020 14:47:56 +0200 Subject: [PATCH 2/4] Update ROADMAP.md --- docs/ROADMAP.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/ROADMAP.md b/docs/ROADMAP.md index e979db508..361b8c85d 100644 --- a/docs/ROADMAP.md +++ b/docs/ROADMAP.md @@ -4,9 +4,6 @@ This is a summary for thenew fatures of the major releases and a collection of i This list indicates only the current intention and can be changed. -## v8.1 -- Add radio button widget - ## v8 Planned to September/October 2020 - New scrolling: @@ -24,11 +21,14 @@ Planned to September/October 2020 - Work in progress - Simplified File system interface ([feat/new_fs_api](https://github.com/lvgl/lvgl/tree/feat/new-fs-api) branch) to make porting easier - Work in progress -- RGB888 support [#1722](https://github.com/lvgl/lvgl/issues/1722) - Remove the align parameter from `lv_canvas_draw_text` +## v8.1 +- Add radio button widget + ## v9 - Simplify `group`s. Discussion is [here](https://forum.lvgl.io/t/lv-group-tabindex/2927/3).7 +- RGB888 support [#1722](https://github.com/lvgl/lvgl/issues/1722) - Unit testing (gtest?). See [#1658](https://github.com/lvgl/lvgl/issues/1658) - Benchmarking (gem5?). See [#1660](https://github.com/lvgl/lvgl/issues/1660) From 50594851f6be593cef394b0a04f0fd7cc8e403a3 Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Tue, 8 Sep 2020 14:57:38 +0200 Subject: [PATCH 3/4] Update ROADMAP.md --- docs/ROADMAP.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ROADMAP.md b/docs/ROADMAP.md index 361b8c85d..1c4cdac93 100644 --- a/docs/ROADMAP.md +++ b/docs/ROADMAP.md @@ -22,13 +22,13 @@ Planned to September/October 2020 - Simplified File system interface ([feat/new_fs_api](https://github.com/lvgl/lvgl/tree/feat/new-fs-api) branch) to make porting easier - Work in progress - Remove the align parameter from `lv_canvas_draw_text` +- RGB888 support [#1722](https://github.com/lvgl/lvgl/issues/1722) ## v8.1 - Add radio button widget ## v9 - Simplify `group`s. Discussion is [here](https://forum.lvgl.io/t/lv-group-tabindex/2927/3).7 -- RGB888 support [#1722](https://github.com/lvgl/lvgl/issues/1722) - Unit testing (gtest?). See [#1658](https://github.com/lvgl/lvgl/issues/1658) - Benchmarking (gem5?). See [#1660](https://github.com/lvgl/lvgl/issues/1660) From c683a3612dfb1836a38d3bf9a04d2254e58ffce2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A2=81=E6=B0=B8=E7=A5=A5?= Date: Tue, 8 Sep 2020 21:56:51 +0800 Subject: [PATCH 4/4] group fix calling lv_obj_invalidate() when focuse is NULL (#1774) --- src/lv_core/lv_group.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lv_core/lv_group.c b/src/lv_core/lv_group.c index a926a5a0c..bb511bc41 100644 --- a/src/lv_core/lv_group.c +++ b/src/lv_core/lv_group.c @@ -332,9 +332,9 @@ void lv_group_set_editing(lv_group_t * group, bool edit) focused->signal_cb(focused, LV_SIGNAL_FOCUS, NULL); /*Focus again to properly leave/open edit/navigate mode*/ lv_res_t res = lv_event_send(*group->obj_focus, LV_EVENT_FOCUSED, NULL); if(res != LV_RES_OK) return; - } - lv_obj_invalidate(focused); + lv_obj_invalidate(focused); + } } /**