2017-07-30 12:22:39 +02:00
|
|
|
# TODOs for major versions
|
|
|
|
Major versions released typically when API changes are required
|
|
|
|
|
2017-07-30 13:35:55 +02:00
|
|
|
## Contributing
|
|
|
|
Please create an issue to suggest a new feature instead of adding pull request to this file.
|
|
|
|
|
2017-07-30 15:47:44 +02:00
|
|
|
## v5
|
2017-08-24 14:24:35 +02:00
|
|
|
**Architectural changes**
|
2017-10-20 21:18:10 +02:00
|
|
|
- [ ] Rename repository from *lvgl* to *littlevgl*
|
|
|
|
- [ ] Rename repository from *proj_pc* to *pc_simulator*
|
|
|
|
- [ ] Integrate *hal* in LittlevGL as a normal folder
|
|
|
|
- [ ] Create a new repository for examples
|
|
|
|
- [ ] Convert Applications into simple examples
|
|
|
|
- [ ] Add tests for all object types
|
2017-08-24 14:24:35 +02:00
|
|
|
|
|
|
|
**API changes**
|
2017-08-04 18:17:09 +02:00
|
|
|
- [ ] Remove LV_DOWNSCALE (LV_ANTIALIAS will be used instead)
|
2017-10-20 21:18:10 +02:00
|
|
|
- [ ] Rename (and slightl rework) some function, defines and enums to be more descriptive
|
2017-10-12 15:36:01 +02:00
|
|
|
- [ ] lv_btnm: rework width control. Now a control byte is used for *width*, *hide* and *no long press* settings.
|
2017-10-09 08:31:52 +02:00
|
|
|
- [x] LV_LABEL_LONG_DOTS removed, use LV_LABEL_LONG_ROLL instead
|
|
|
|
- [x] *lv_list_set_element_text_roll()* removed.
|
|
|
|
- [x] *lv_ddlist_set_fix_height()* instead of *auto_size*
|
2017-10-26 21:22:26 +02:00
|
|
|
- [x] *lv_gauge* rework to make it more like line meter (remove background but add scale lines)
|
2017-10-11 08:58:17 +02:00
|
|
|
- [x] rename *lv_dispi_...* to *lv_indev_...*
|
2017-10-20 21:18:10 +02:00
|
|
|
- [x] *lv_dispi_t* removed from *lv_action_type_t*. Use lv_indev_act() instead
|
2017-11-01 11:16:51 +01:00
|
|
|
- [x] make styles to global variable to ensure less typing
|
|
|
|
- [x] make fonts to global variables to ensure less typing and easy user-font adding
|
|
|
|
- [x] join symbol fonts into normal built-in fonts
|
2017-11-05 01:04:24 +01:00
|
|
|
- [ ] add inline functions to avoide direct use of anchestor functions (e.g. for buttons: lv_cont_set_fit -> lv_btn_set_fit)
|