1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00
lvgl/docs/ROADMAP.md

64 lines
3.2 KiB
Markdown
Raw Normal View History

2020-07-24 21:49:44 +02:00
# Roadmap
This is a summary for thenew fatures of the major releases and a collection of ideas.
2020-07-24 21:49:44 +02:00
This list indicates only the current intention and can be changed.
## v8
2020-11-19 17:21:52 +01:00
Planned to November/December 2020
2020-10-16 13:12:46 +02:00
- Create an `lv_components` repository for compley widgets
- It makes the core LVGL leaner
- In `lv_components` we can have a lot and specific widgets
- Good place for contribution
2020-07-24 21:49:44 +02:00
- New scrolling:
2020-08-03 13:39:51 +02:00
- See [feat/new-scroll](https://github.com/lvgl/lvgl/tree/feat/new-scroll) branch and [#1614](https://github.com/lvgl/lvgl/issues/1614)) issue.
2020-07-24 21:49:44 +02:00
- Remove `lv_page` and support scrolling on `lv_obj`
- Support "elastic" scrolling when scrolled in
- Support scroll chaining among any objects types (not only `lv_pages`s)
- Remove `lv_drag`. Similar effect can be achieved by setting the position in `LV_EVENT_PRESSING`
2020-09-06 12:50:08 +02:00
- Add snapping
- Add snap stop to scroll max 1 snap point
2020-07-24 21:49:44 +02:00
- Already working
- New layouts:
- See [#1615](https://github.com/lvgl/lvgl/issues/1615) issue
2020-09-06 12:50:08 +02:00
- [CSS Grid](https://css-tricks.com/snippets/css/a-guide-to-grid/)-like layout support
2020-10-16 13:06:21 +02:00
- [CSS Flexbox](https://css-tricks.com/snippets/css/a-guide-to-flexbox/)-like layout support
- Remove `lv_cont` and support layouts on `lv_obj`
2020-07-24 21:49:44 +02:00
- 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
2020-08-09 12:41:25 +02:00
- Remove the align parameter from `lv_canvas_draw_text`
- Make the copy parameter obsolate in create functions
2021-01-04 18:15:37 +01:00
- Optimize and simplifie styles [#1832](https://github.com/lvgl/lvgl/issues/1832)
- Use a more generic inheritenace [#1919](https://github.com/lvgl/lvgl/issues/1919)
2020-09-08 14:47:56 +02:00
2020-11-18 13:52:01 +01:00
## v8.x
2021-01-04 18:15:37 +01:00
- Add radio button widget
2020-08-03 13:37:11 +02:00
- Unit testing (gtest?). See [#1658](https://github.com/lvgl/lvgl/issues/1658)
- Benchmarking (gem5?). See [#1660](https://github.com/lvgl/lvgl/issues/1660)
2021-01-19 15:57:27 +01:00
- chart: pre-delete `X` pint after the lastly set
- chart: autoscroll to the right
2020-11-18 13:52:01 +01:00
## v9
- Simplify `group`s. Discussion is [here](https://forum.lvgl.io/t/lv-group-tabindex/2927/3).
2020-09-17 15:09:11 +02:00
- Consider direct binary font format support
- Optimize line and circle drawing and masking
2020-11-18 13:52:01 +01:00
- Reconsider color format management for run time color format setting, and custom color format usage. (Also [RGB888](https://github.com/lvgl/lvgl/issues/1722))
- 9-patch support for `lv_imgbtn`.
2020-12-01 12:19:45 +01:00
- Handle stride. See [#1858](https://github.com/lvgl/lvgl/issues/1858)
- Make gradients more versatile
- Make image transformations more versatile
2021-01-04 18:15:37 +01:00
- Allow snapshoting object to tranfrom them to images
2020-10-16 13:06:21 +02:00
2020-09-06 12:50:08 +02:00
## Ideas
2021-01-20 11:56:54 +01:00
- Use [generate-changelog](https://github.com/lob/generate-changelog) to automatically generate changelog
2020-10-05 09:43:52 +02:00
- lv_mem_alloc_aligned(size, align)
2020-09-28 11:07:49 +02:00
- Text node. See [#1701](https://github.com/lvgl/lvgl/issues/1701#issuecomment-699479408)
2020-08-03 13:37:11 +02:00
- CPP binding. See [Forum](https://forum.lvgl.io/t/is-it-possible-to-officially-support-optional-cpp-api/2736)
- Optimize font decompression
2020-08-03 13:37:11 +02:00
- Switch to RGBA colors in styles
- Need coverage report for tests
- Need static analyze (via coverity.io or somehing else)
2020-08-05 10:04:16 +02:00
- Support dot_begin and dot_middle long modes for labels
2020-08-31 11:06:04 +02:00
- Add new label alignment modes. [#1656](https://github.com/lvgl/lvgl/issues/1656)
2020-11-26 15:54:39 +01:00
- Support larger images: [#1892](https://github.com/lvgl/lvgl/issues/1892)