Gabor Kiss-Vamosi
2e08f80361
feat(calendar): add the header directly into the calendar widget
...
In v8.0 the header was a detached object which made it difficult to move the header and the calendar
together. Besides there were no way to notifi the header of the calendar's shown date has changed.
BREAKING CHANGE: API of cleander headers, the appearence of the calendars
related to #2573 "
2021-10-25 18:39:18 +02:00
Johannes Marbach
b59cc9cfb8
feat(disp): add non-fullscreen display utilities ( #2724 )
...
This adds utility functions/macros for dealing with non-fullscreen
displays.
Related to lvgl/lv_drivers#166
2021-10-25 08:26:43 -04:00
Alexander Salas Bastidas
ed9169c56d
docs(rlottie): fix typo in commands
2021-10-24 01:47:24 +02:00
Gabor Kiss-Vamosi
03fff13f62
feat(rlottie) add LVGL-Rlottie interface as 3rd party lib ( #2700 )
2021-10-22 15:44:43 +02:00
Kenji Mouri
bbad478ce6
feat(fsdrv) add driver based on Win32 API ( #2701 )
2021-10-20 11:35:11 +02:00
guoweilkd
91a0d3b5e4
feat(span) indent supports percent for fix and break mode ( #2693 )
...
* span:indent supports percent for fix and break mode
* Update docs/widgets/extra/span.md
Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
2021-10-20 11:13:42 +02:00
Gabor Kiss-Vamosi
64527a5a1b
fix(docs) add fsdrv back
2021-10-20 10:42:38 +02:00
Gabor Kiss-Vamosi
b3b3ffc2b3
feat(canvas) add lv_canvas_set_px_opa
...
fixes #2665
2021-10-19 13:44:40 +02:00
Gabor Kiss-Vamosi
dfa4f5cff5
feat(arc) add support to LV_OBJ_FLAG_ADV_HITTEST
2021-10-19 12:52:35 +02:00
Xiang Xiao
608d06e47a
fix(fsdrv) minor fs issue ( #2682 )
...
* fix(fs): replace all tab to space and other minor style fix
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
* fix(extra/fs): rename lv_fs_libs.h to lv_fsdrv.h
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
* fix(extra/fs/stdio): fix the wrong directory path in fs_dir_open
and remove the duplicated or platform specific code
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
* fix(extra/fs/posix): implement in fs_dir_read
and fix the wrong directory path in fs_dir_open
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
* fix(extra/fs/posix): return file handle directly to avoid malloc
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
2021-10-18 13:00:47 +02:00
gesture1968
2a701eeaa7
feat(lv_spinbox) support both right-to-left and left-to-right digit steps when clicking encoder button ( #2644 )
...
* Update lv_spinbox.c
* Added support for moving the Spinbox digit position from right-to-left when clicking the button on an encoder. The default behaviour is when clicking the encoder button, the digit is moved from left-to-right (MSB to LSB).
* Added a check to see if the spinbox digit-count is just one. In that case it is pointless to check the buttonclick
* See also the spinbox.h file
* Update lv_spinbox.c
* Forgot the implementation of the setter function
* forgot a ;
* Update lv_spinbox.h
Adding Spinbox support for moving the digitposition both from left-to-right and right-to-left when editing a spinbox and clicking the encoder button. The current behaviour is clicking the encoder button only moves the digitposition from right to left (from MSB to LSB)
* Update lv_spinbox.c
Added brief / comment to new function
* Update lv_spinbox.h
More clear Brief / Comment
* Update lv_spinbox.c
nested function replaced by lv_pow fiunction
* Update lv_spinbox.h
removed spaces
* Update lv_spinbox.h
Replaced type used for direction of digit step when clicking an encoder with existing LVGL lv_dir_t
* Update lv_spinbox.c
Replaced type used for direction of digit step when clicking an encoder with existing LVGL lv_dir_t
* Update spinbox.md
Added comment for the new function 'lv_spinbox_set_digit_step_direction'
* Update src/extra/widgets/spinbox/lv_spinbox.h
Co-authored-by: embeddedt <42941056+embeddedt@users.noreply.github.com>
* Update src/extra/widgets/spinbox/lv_spinbox.h
Co-authored-by: embeddedt <42941056+embeddedt@users.noreply.github.com>
* Update lv_spinbox.c
bug: old definition LV_SPINBOX_DIGIT_DIR_TO_RIGHT changed to LV_DIR_RIGHT
* Update lv_spinbox.h
Extra linefeed removed
Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
Co-authored-by: embeddedt <42941056+embeddedt@users.noreply.github.com>
2021-10-14 13:42:25 +02:00
Gabor Kiss-Vamosi
ee5369e2d2
feat(event) add LV_EVENT_SCREEN_LOADED/UNLOADED events
2021-10-13 12:36:03 +02:00
Jianting (Meco) Man
8debe10cd2
feat add support for rt-thread RTOS ( #2660 )
2021-10-12 17:35:37 +02:00
Johannes Marbach
d09f6bdea3
feat(disp): Enable rendering to display subsection ( #2583 )
...
This change introduces new fields on `lv_disp_drv_t` that allow to
specify the size of the full display and the offset of the display
subsection that is being rendered to. The values are used to transform
the drawing area before calling `flush_cb` so that only the desired part
of the full display is being rendered to.
Relates to: lvgl/lv_drivers#166
2021-10-11 08:48:15 -04:00
Johannes Marbach
7658f98e86
feat(keyboard): add user-defined modes ( #2651 )
...
As discussed in https://forum.lvgl.io/t/localized-keyboard-layouts/6734 ,
this adds further `..._USER_N` keyboard modes that can be used to
implemented more keyboard layouts for locales that need more than 4
layers.
2021-10-11 14:46:07 +02:00
Jose Commins
07688e6543
docs(colorwheel) fix old API names ( #2643 )
...
`lv_colorwheel_set_color_mode` is now `lv_colorwheel_set_mode`
2021-10-06 12:55:09 -04:00
Miguel Magno
d93360537f
fix typos ( #2634 )
2021-10-04 18:37:07 +02:00
Gabor Kiss-Vamosi
5f90029811
feat(event) add LV_EVENT_CHILD_CREATED/DELETED ( #2618 )
...
* feat(event) add LV_EVENT_CHILD_CREATED/DELETED
* update docs and CHANGELOG
2021-10-04 16:52:11 +02:00
grarup
4eb406440b
fix LV_FORMAT_ATTRIBUTE fix for gnu > 4.4 ( #2631 )
...
Co-authored-by: Peter Grarup <pegp@dgs-diagnostics.com>
2021-10-04 16:42:41 +02:00
Gabor Kiss-Vamosi
8e7bba6ace
docs libs fixes
2021-10-04 15:27:52 +02:00
Gabor Kiss-Vamosi
1a8fed5df0
docs add libs to the main index
2021-10-04 15:08:52 +02:00
Gabor Kiss-Vamosi
f5f9562336
docs include paths in libs
2021-10-04 15:03:49 +02:00
Gabor Kiss-Vamosi
18f61c5f77
arch add small 3rd party libs to lvgl ( #2569 )
...
* move png, sjpg, bmp, gif, fs_if to extra/libs
* reorganize the examples
* update lv_conf_internal.h
* fix warnings
* add freetype
* remove unused assets
* add the new libs to build tests
* update the docs
2021-10-04 14:34:11 +02:00
Lzx-James
3211066c05
docs(display) fix typo ( #2624 )
2021-09-30 09:46:37 -04:00
Gabor Kiss-Vamosi
2a9b9e6e11
Update arc.md
2021-09-29 13:30:44 +02:00
Francesco Valla
fc4fdb1e2c
fix(disp) set default theme also for non-default displays ( #2596 )
...
* feat(theme) add getter function for default theme
* fix(disp) set default theme also for non-default displays
Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
2021-09-29 11:24:13 +02:00
Gabor Kiss-Vamosi
e6e98abbc2
docs update version support table
2021-09-29 10:37:51 +02:00
seteq
c77ac0d904
docs add static for lv_indev_drv_t ( #2605 )
...
* added static for lv_indev_drv_t
* removed accidential edit
* Update indev.md
2021-09-29 10:31:35 +02:00
Johannes Marbach
d57eb7614d
feat(btnmatrix/keyboard): add option to show popovers on button press ( #2537 )
...
This adds a new option that, when enabled, shows popovers when pressing
buttons, similar to how the system keyboards on Android and iOS behave.
2021-09-28 11:28:59 +02:00
fvanroie
bc9c356347
docs(animimg) add to extra widgets index and fix example ( #2610 )
...
`lv_example_animimg_1` should not contain the `.c` extension, and add animation image to the index page for extra widgets.
2021-09-27 13:02:52 -04:00
fvanroie
f9d9aef122
docs(animimg) Add missing animation image page ( #2609 )
...
* docs(animimg) Add missing animation image page
Skeleton page for the new `animimg` object.
It needs more review and updating, but this can serve as a start.
* docs(examples) Add index.rst for animation image
Add index.rst for animation image to include the example in the documentation of the widget.
* Update animimg.md
2021-09-27 17:52:00 +02:00
Gabor Kiss-Vamosi
2433732570
docs(image) mention the frame_id paramter of lv_img_decoder_open
...
Related to https://github.com/lvgl/lvgl/pull/2197#issuecomment-926852353
2021-09-27 17:04:04 +02:00
Mariotaku
c45d9ccc3e
fix lv_deinit when LV_USE_GPU_SDL is enabled ( #2598 )
...
* Fixed lv_deinit when LV_USE_GPU_SDL is enabled
* Update CHANGELOG.md
2021-09-27 11:04:53 +02:00
Neo
5f75a3b406
fix(snapshot) snapshot is affected by parent's style because of wrong coords ( #2579 )
...
* fix(snapshot) image is affected by parent's style because of wrong coordinates
Signed-off-by: Neo Xu <neo.xu1990@gmail.com>
* fix(snapshot): take ext_draw_size into account and set disp res to obj size.
Signed-off-by: Neo Xu <neo.xu1990@gmail.com>
Change-Id: Iae0d37fa1b2cdf20220087ced51857a36e83bb6d
2021-09-23 18:28:28 +02:00
Johannes Marbach
51f3310592
fix(btnmatrix): make ORed values work correctly with lv_btnmatrix_has_btn_ctrl ( #2571 )
...
This commit replaces the current `actual & expected` check in
`lv_btnmatrix_has_btn_ctrl` with `(actual & expected) == expected`. This
is required to make the function work with ORed control flags because
otherwise a parity in *any* bit will result in a return value of `true`
even if not all expected bits are set.
2021-09-22 12:03:19 +02:00
Gabor Kiss-Vamosi
56ebb1a4c8
feat(textarea) remove the need of lv_textarea_set_align
...
It was used to position the text in one line text areas where the label is shorter then the text area itself.
However, setting min_width=100% in case of one line text area ensures that the label is at least as wide as
the text area. This way the normal text_align style property can be used too.
Fixes https://forum.lvgl.io/t/spinbox-text-centering-not-working-as-intended-expected/6762/4
2021-09-13 20:09:54 +02:00
Gabor Kiss-Vamosi
26e15fa577
fix(imgbtn) add lv_imgbtn_set_state
...
The normal lv_obj_add/clear_state couldn't refresh the image button properly.
2021-09-13 17:44:12 +02:00
Karijn Wessing
953d9fb003
feat(example) add lv example list 2 ( #2545 )
...
* added micropython sample for obj.move_to_index(index)
* formatting update
* added lv.group_remove_obj(btn) for command buttons
* updated CHANGELOG.md
2021-09-13 17:41:25 +02:00
Thomas Hepworth
8abd060a8a
example(chart) add area chart example ( #2507 )
...
* feat add stacked area chart example
The example shows how to use a line chart and masking to create a stacked area chart.
* feat stacked area chart example
Updated index.rst to contain the stacked area chart example
* feat stacked area chart example
Coding style changes
* Update changelog
* feat(example) stacked area chart
Added axis ticks
* feat(example) stacked area chart
Responses to PR comments
- Changed to fixed point maths
- Renamed variables and filenames
* feat(example) stacked area chart
Made shift amount a variable.
* feat(example) stacked area chart
Fixed typo in changelog
Co-authored-by: Tom Hepworth <Tom_Hepworth@mentor.com>
Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
2021-09-13 12:11:10 +02:00
Miguel Magno
5de6fbf847
docs(style) use correct API name for local styles ( #2550 )
2021-09-12 08:09:50 -04:00
Johannes Marbach
2cd5a90b7d
feat(msgbox): omit title label unless needed ( #2539 )
...
Prior to this commit, when the title string was empty and the close
button disabled, an extra empty line showed at the top of the message
box. This commit prevents adding the title label unless it has content
or is needed as a spacer for the close button.
As a positive side effect, this also prevents the default "text" from
displaying when NULL is passed as the title.
Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
2021-09-09 15:09:49 +02:00
Johannes Marbach
52dac2b8e4
feat(msgbox): add function to get selected button index ( #2538 )
...
This adds a new function lv_msgbox_get_active_btn that works analogously
to lv_msgbox_get_active_btn_text but returns the button index instead of
its text.
The index is more convenient for comparison in localized applications as
it doesn't depend on the current language.
2021-09-09 14:40:37 +02:00
Kevin Thibedeau
ec9b41a05f
fix(zoom) multiplication overflow on 16-bit platforms ( #2536 )
2021-09-06 21:40:38 -04:00
Kevin Thibedeau
7d9fe20a0e
docs(all) Proofread, fix typos and add clarifications in confusing areas ( #2528 )
...
Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
2021-09-06 10:55:37 +02:00
Karijn Wessing
780e0efe2c
feat(obj) add lv_obj_move_to_index(obj, index), renamed lv_obj_get_child_id(obj) to lv_obj_get_index(obj) ( #2514 )
...
* - renamed lv_obj_get_id(obj) to lv_obj_get_index(obj).
- added lv_obj_move_to_index(obj, index).
* automatic review comment fixed
* removed unused variable
* review issue
* restored deprecated function in header, otherwise Build Micropython with LVGL submodule / build (pull_request) failes
* moved deprecated lv_obj_get_child_id() back to lv_obj_tree.h, otherwise Micropython will not build
* inline function did not work
* made deprecated function 'static inline'
* and now also inline
* move static inline function to lv_api_map.h again
* removed lv_obj_move_up/down
* changed log to warning for deprecated function
* redefined lv_obj_move_foreground(obj) and lv_obj_move_background(obj) as inline functions now calling lv_obj_move_to_index(obj, index).
- lv_obj_swap(obj1, obj2) added. (#2461 )
2021-09-05 20:47:55 +02:00
Johannes Marbach
53b65a7964
fix(examples) don't compile assets unless needed ( #2523 )
...
This wraps the code for the assets under examples/assets in
LV_BUILD_EXAMPLES so that it is not compiled when examples are
deactivated in lv_conf.h.
2021-09-03 15:01:01 +02:00
Ehsan Galavi
21f6a2ea03
docs(flex) update flex.md ( #2517 )
...
Description sentences "LV_FLEX_FLOW_ROW_WRAP_REVERSE" and "LV_FLEX_FLOW_COLUMN_WRAP_REVERSE" are corrected.
2021-09-01 09:12:39 +02:00
Kevin Thibedeau
4d74194e0d
fix(color) Bad cast in lv_color_mix() caused UB with 16bpp or less ( #2509 )
2021-08-30 16:46:41 +02:00
Avra Mitra
d53b873556
Corrected a function name in obj.md ( #2511 )
...
In the example of `lv_obj_align_to(obj_to_align, obj_referece, LV_ALIGN_..., x, y)`, the function name was written as `lv_obj_align()`.
2021-08-30 11:08:04 +02:00
embeddedt
da0c97a367
docs(grid) fix missing article
2021-08-27 11:09:43 -04:00
embeddedt
5dbea7d725
docs(display) fix grammar in one spot
2021-08-27 08:35:38 -04:00
Gabor Kiss-Vamosi
bcd99e8e43
docs(indev, layer) update lv_obj_set_click() to lv_obj_add_flag()
2021-08-27 13:58:46 +02:00
ckielstra
5249a34d5d
docs more spelling fixes ( #2499 )
2021-08-27 12:15:39 +02:00
ckielstra
0f4e6e26f9
Simple spelling fixes ( #2496 )
2021-08-26 10:52:39 +02:00
Vincent Hamp
088b2bd490
docs fix typo: arae -> area ( #2488 )
...
Co-authored-by: Vincent Hamp <hamp@zimo.at>
2021-08-24 14:51:29 +02:00
Karijn Wessing
e111ea2a62
added lv_obj_move_up() and lv_obj_move_down() ( #2467 )
...
* - small with unneeded lv_obj_invalidate() fix in lv_obj_move_foreground() and lv_obj_move_background()
- added lv_obj_move_up() and lv_obj_move_down()
- used new functions in sample 2
- used lv_obj_swap() to shuffle (turn around) list
* solved build error
* added top and bottom buttons in sample
2021-08-24 14:30:38 +02:00
fvanroie
2d38f1884c
Fix two examples in the docs with new v8 api ( #2486 )
...
* docs(overview) fix draw_buf fieldname
Change display driver buffer field to the new v8 field name: draw_buf.
* docs(overview) fix lv_img_create parameters
lv_img_create only has 1 parameter in v8.
* docs(get-started) fix draw_buf fieldname
Display driver `buffer` field changed to the new v8 field name: `draw_buf`.
2021-08-24 09:17:59 +02:00
Mariotaku
9b92885f83
fix(draw) use correct pointer in lv_draw_mask assertion ( #2483 )
2021-08-23 10:25:00 -04:00
Chris Mumford
35c430fe2d
docs update company name and year ( #2476 )
...
Update from 2020/LLC → 2021/Kft.
2021-08-22 14:27:23 -04:00
Miguel Magno
b7e6f6763d
docs fix typos ( #2472 )
2021-08-20 19:47:59 -04:00
tfx2001
f85ae9d32b
docs(overview) fix typo ( #2465 )
2021-08-19 12:06:10 -04:00
Gabor Kiss-Vamosi
906448ef63
feat(obj) place the scrollbar to the left with RTL base dir.
...
Related to #2424
2021-08-19 12:51:29 +02:00
Karijn Wessing
9a1f7f2fcb
feat(obj) add lv_obj_swap() function ( #2461 )
...
* proposal for lv_obj_swap() function
* review issues applied
* review changes for comments
2021-08-18 11:32:10 +02:00
embeddedt
51a82a17ff
docs(btnmatrix) fix typo with set_all/clear_all parameters
...
Fixes #2455
2021-08-16 11:02:42 -04:00
jadonmmiller
85d45d7ec3
docs(overview) fix typo ( #2454 )
2021-08-16 09:27:44 -04:00
fvanroie
e8c1670381
fix(docs) add static keyword to driver declaration ( #2452 )
...
Add missing static keyword to disp_drv and indev_drv declarations in the examples
2021-08-13 13:00:14 -04:00
Gabor Kiss-Vamosi
55e8846871
docs(style) complete the description of style the properties
2021-08-12 14:37:15 +02:00
Themba Dube
e5fafc4122
docs(flex) fix typo in flex grow section
2021-08-10 11:54:49 -04:00
Gabor Kiss-Vamosi
0f8bc18f6a
docs update CHANGELOG
2021-08-02 15:55:04 +02:00
guoweilkd
65415d3f68
docs(chart) typos ( #2427 )
2021-08-02 11:51:18 +02:00
Gabor Kiss-Vamosi
4dd1d566fc
fix(dropdown) use LV_EVENT_READY/CANCEL on list open/close
...
Instead of LV_EVENT_VALUE_CHANGE to avoid conflicts with new option selection.
2021-07-28 10:09:46 +02:00
Gabor Kiss-Vamosi
637b706ddc
perf(draw) reimplement circle drawing algorithms ( #2374 )
...
* perf(draw) reimplement circle drawing algorithms
Imporve the speed of circle drawing
Add circle draw caching
Various other speed improvements
* docs describe how to use masks
* fix(draw) add missing GC root usage
2021-07-27 19:16:00 +02:00
_VIFEXTech
202cf1c8cb
perf(anim_timeline) add lv_anim_timeline_stop() ( #2411 )
...
* add anim_timeline
Signed-off-by: FASTSHIFT <vifextech@foxmail.com>
* add anim_timeline
Signed-off-by: FASTSHIFT <vifextech@foxmail.com>
* add lv_anim_timeline.c to lv_misc.mk
Signed-off-by: FASTSHIFT <vifextech@foxmail.com>
* LV_ANIM_TIMELINE_END uses global variables to replace macros, lv_anim_timeline_set_progress() adds user_data, act_time uses int32_t type
* solve the problem of uninitialized variable and act_time comparison
* add LV_ANIM_TIMELINE_CUSTOM_EXEC option
Signed-off-by: FASTSHIFT <vifextech@foxmail.com>
* add LV_ANIM_TIMELINE_CUSTOM_EXEC in lv_conf_internal.h
* redesign lv_anim_timeline
Signed-off-by: FASTSHIFT <vifextech@foxmail.com>
* add missing LV_USE_USER_DATA
* remove set_progress, update doc
* update workflow files
* Remove lv_example_anim_timeline_2.c and LV_ANIM_TIMELINE_CUSTOM_EXEC, update lv_anim_timeline_1.c example
Signed-off-by: FASTSHIFT <vifextech@foxmail.com>
* fix warning
* fix(anim_timeline) heap use after free
Signed-off-by: FASTSHIFT <vifextech@foxmail.com>
* fix(docs) wrong spelling of words in pictures
* perf(anim_timeline) add lv_anim_timeline_stop()
Signed-off-by: FASTSHIFT <vifextech@foxmail.com>
Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
2021-07-27 14:30:36 +02:00
_VIFEXTech
e258e78f21
fix(docs) wrong spelling of words in pictures ( #2409 )
...
* add anim_timeline
Signed-off-by: FASTSHIFT <vifextech@foxmail.com>
* add anim_timeline
Signed-off-by: FASTSHIFT <vifextech@foxmail.com>
* add lv_anim_timeline.c to lv_misc.mk
Signed-off-by: FASTSHIFT <vifextech@foxmail.com>
* LV_ANIM_TIMELINE_END uses global variables to replace macros, lv_anim_timeline_set_progress() adds user_data, act_time uses int32_t type
* solve the problem of uninitialized variable and act_time comparison
* add LV_ANIM_TIMELINE_CUSTOM_EXEC option
Signed-off-by: FASTSHIFT <vifextech@foxmail.com>
* add LV_ANIM_TIMELINE_CUSTOM_EXEC in lv_conf_internal.h
* redesign lv_anim_timeline
Signed-off-by: FASTSHIFT <vifextech@foxmail.com>
* add missing LV_USE_USER_DATA
* remove set_progress, update doc
* update workflow files
* Remove lv_example_anim_timeline_2.c and LV_ANIM_TIMELINE_CUSTOM_EXEC, update lv_anim_timeline_1.c example
Signed-off-by: FASTSHIFT <vifextech@foxmail.com>
* fix warning
* fix(anim_timeline) heap use after free
Signed-off-by: FASTSHIFT <vifextech@foxmail.com>
* fix(docs) wrong spelling of words in pictures
Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
2021-07-27 12:26:38 +02:00
Yin Zhong
1f255b7a0c
feat(obj) Backport keypad and encoder scrolling from v7 lv_page
to v8 lv_obj
( #2390 )
...
* support scrolling scrollable but non-editable objects thru keypad / encoder
* update doc on `lv_obj` scrolling behavior by arrow keys
2021-07-23 14:55:13 +02:00
Gabor Kiss-Vamosi
6d8799fbbf
Update textarea.md
2021-07-23 13:52:13 +02:00
Yin Zhong
4d43b99702
doc(table) update doc on cell merging ( #2397 )
...
See https://github.com/lvgl/lvgl/issues/2276#issuecomment-884776230
2021-07-23 09:49:59 +02:00
EnricoLusaEGF
95bf16952e
docs(layout) add internal padding paragraph to grid and flex layout p… ( #2392 )
...
* docs(layout) add internal padding paragraph to grid and flex layout pages
* docs(layout) inlined bulletpoints
2021-07-22 11:36:40 +02:00
Neo
c98c8252ea
feat(snapshot) add API to take snapshot for object ( #2353 )
...
* Fix image zooming causes unexpected object size.
Signed-off-by: Xu Xingliang <xuxingliang@xiaomi.com>
* add lv_snapshot_take API.
* fix(img) invalidate size and layout on zoom and angle change
* fix(img) not self-repeating under some zoom level.
* fix(snapshot) fix to keep the original position
* Move various set_px_cb_xx functions to lv_hal_disp.c
* add snapshot API to store image to provided buffer
* minor fixes and refactoring
* Move snapshot source to extra/others/snapshot.
1. Update parameter buff to buf.
2. Add macro to disable lv_snapshot, enabled by default.
* docs(others) add the others folder with snapshot.md
* docs(snapshot) added doc and example for snapshot.
1. Update doc snapshot.md
2. Add example lv_example_snapshot_1 to folder examples/others/snapshot
3. Update lv_conf_template.h and lv_conf_internal.h
4. Remove lv_snapshot.c from lv_misc.mk
5. Add others to index.md
Signed-off-by: Xu Xingliang <xuxingliang@xiaomi.com>
* add micropython example for snapshot
Co-authored-by: Xu Xingliang <xuxingliang@xiaomi.com>
Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
2021-07-19 14:46:28 +02:00
_VIFEXTech
690b3546d6
feat(anim) add anim timeline ( #2309 )
...
* add anim_timeline
Signed-off-by: FASTSHIFT <vifextech@foxmail.com>
* add anim_timeline
Signed-off-by: FASTSHIFT <vifextech@foxmail.com>
* add lv_anim_timeline.c to lv_misc.mk
Signed-off-by: FASTSHIFT <vifextech@foxmail.com>
* LV_ANIM_TIMELINE_END uses global variables to replace macros, lv_anim_timeline_set_progress() adds user_data, act_time uses int32_t type
* solve the problem of uninitialized variable and act_time comparison
* add LV_ANIM_TIMELINE_CUSTOM_EXEC option
Signed-off-by: FASTSHIFT <vifextech@foxmail.com>
* add LV_ANIM_TIMELINE_CUSTOM_EXEC in lv_conf_internal.h
* redesign lv_anim_timeline
Signed-off-by: FASTSHIFT <vifextech@foxmail.com>
* add missing LV_USE_USER_DATA
* remove set_progress, update doc
* update workflow files
* Remove lv_example_anim_timeline_2.c and LV_ANIM_TIMELINE_CUSTOM_EXEC, update lv_anim_timeline_1.c example
Signed-off-by: FASTSHIFT <vifextech@foxmail.com>
* fix warning
Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
2021-07-19 13:58:58 +02:00
Drew Hoener
d041191ff3
feat(span) Add missing spangroup functions ( #2379 )
2021-07-18 21:44:27 -04:00
Yin Zhong
5a3876e9e6
docs(porting) fix indev example to remove v7 bool return ( #2381 )
...
update indev doc example to remove v7 `return false` and fix return type
2021-07-18 08:54:33 -04:00
Gabor Kiss-Vamosi
c386110e23
docs update changelog
2021-07-16 21:57:54 +02:00
Neo
fe461caf7e
feat(img) add img_size property ( #2284 )
...
* Fix image zooming causes unexpected object size.
Signed-off-by: Xu Xingliang <xuxingliang@xiaomi.com>
* fix(img) invalidate size and layout on zoom and angle change
* fix(img) not self-repeating under some zoom level.
* minor fixes and refactoring
* docs(img) add img_size
Co-authored-by: Xu Xingliang <xuxingliang@xiaomi.com>
Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
2021-07-16 21:05:49 +02:00
Gabor Kiss-Vamosi
acbb680683
docs minor CSS fix
2021-07-15 16:07:40 +02:00
Gabor Kiss-Vamosi
7f367d6956
docs minor CSS improvements
2021-07-13 16:42:03 +02:00
embeddedt
9a77102c40
docs(arduino) update some outdated information
...
This fixes some broken links and updates the steps to match the new repository layout.
2021-07-11 15:28:08 -04:00
Gabor Kiss-Vamosi
84c00862ae
docs minor typo fixes
2021-07-07 16:30:17 +02:00
Gabor Kiss-Vamosi
88c485949f
feat(event, widgets) improve the paramter of LV_EVENT_DRAW_PART_BEGIN/END
...
Add lv_<widget>_draw_part_type_t to widgets to precisly describe the hooked drawings.
Also add class_p element to lv_obj_draw_part_dsc_t to show what widgets lv_<widget>_draw_part_type_t needs to be used.
Related to: https://forum.lvgl.io/t/how-to-add-minor-division-lines-to-a-chart/5366/
2021-07-07 16:19:06 +02:00
wreyford
45eda2f664
Update win.md ( #2352 )
...
In the paragraph **Title and buttons**
should be lv_add_btn and not lv_add_btn_right
And in the prargraph **Events**
should also be lv_add_btn
2021-07-06 12:20:18 +02:00
Gabor Kiss-Vamosi
3668e54f06
docs(contributing) add commit message format section
2021-07-01 14:36:01 +02:00
Gabor Kiss-Vamosi
6e83d378e9
docs(keyboard) change LV_KEYBOARD_MODE_NUM
to LV_KEYBOARD_MODE_NUMBER
...
Fixes https://forum.lvgl.io/t/error-in-master-branch-documentation-for-lv-keyboard/6072/1
2021-07-01 14:12:57 +02:00
Gabor Kiss-Vamosi
a38fcf2c7a
Update ROADMAP.md
2021-06-28 15:16:20 +02:00
Gabor Kiss-Vamosi
2b1ae3c107
Update ROADMAP.md
2021-06-28 15:03:12 +02:00
Gabor Kiss-Vamosi
1640b7fe08
Merge branch 'master' of https://github.com/lvgl/lvgl
2021-06-25 15:32:07 +02:00
Gabor Kiss-Vamosi
65673c0e15
docs(textarea) clarify the use of text selection bg_color
2021-06-25 15:31:57 +02:00
Gabor Kiss-Vamosi
e0ae2aa106
feat(chart) send LV_EVENT_DRAW_PART_BEGIN/END before/after the division line drawing section.
...
See https://forum.lvgl.io/t/how-to-add-minor-division-lines-to-a-chart/5366/15
2021-06-25 13:51:09 +02:00
embeddedt
255f7294d3
docs(keyboard) add note regarding event handler
2021-06-23 17:32:41 -04:00
embeddedt
145a0fad08
fix(docs) consider an example to be visible over a wider area
2021-06-18 18:11:53 -04:00
Themba Dube
b5f632ee7a
fix(docs) add margin for example description
2021-06-18 12:38:08 -04:00
Themba Dube
4b8c73a577
feat(docs) improvements to examples
...
* examples are now loaded only when they are visible on your screen
* stylistic improvements
* support for a description
2021-06-18 12:25:49 -04:00
dyktronix
7066c8fbbb
feat(spinbox ) add function to set cursor to specific position ( #2314 )
...
* Spinbox set cursor to specific position (funct.)
* changed exp10 to lv_pow(10
* Update lv_spinbox.c
resolved indentation
* Update spinbox.md
Added lv_spinbox_set_pos description
Co-authored-by: Sebastian Dyker <sebastian.dyker@walther-systemtechnik.com>
2021-06-17 13:43:19 +02:00
Gabor Kiss-Vamosi
31ab0628d5
docs update lv_fs.h, layer and align.png to v8
2021-06-16 14:14:55 +02:00
Gabor Kiss-Vamosi
8731ef141e
docs add btn_example.png
...
It's referenced from the README
2021-06-16 10:30:43 +02:00
embeddedt
918d94801f
feat(docs) lazy load individual examples as well
2021-06-15 09:13:47 -04:00
Gabor Kiss-Vamosi
cd600d1056
docs example list fixes
2021-06-15 10:47:09 +02:00
Gabor Kiss-Vamosi
c49e830aad
docs add lazy load to the iframes of the examples
2021-06-15 10:33:49 +02:00
Gabor Kiss-Vamosi
ed77ed1dae
docs fix eaxmple list
2021-06-15 07:59:04 +02:00
Gabor Kiss-Vamosi
c6f99ad200
docs fix example list
...
Button matrix was missing.
2021-06-15 00:35:25 +02:00
Gabor Kiss-Vamosi
25acaf45ca
docs list all examples on one page
2021-06-14 23:16:31 +02:00
Gabor Kiss-Vamosi
8691611de2
update version numbers to v8.1.0-dev
2021-06-14 13:51:45 +02:00
Gabor Kiss-Vamosi
3fdb9b6b35
fix conflicts
2021-06-14 13:46:25 +02:00
Gabor Kiss-Vamosi
a1b59e34dd
docs(examples) add <hr/> to better separate examples
2021-06-14 11:44:05 +02:00
Gabor Kiss-Vamosi
7971ade47b
docs(filesystem) update to v8
2021-06-14 11:07:15 +02:00
Ali Rostami
69d109d2f4
docs(grid) typo fix ( #2310 )
2021-06-13 10:15:46 -04:00
Gabor Kiss-Vamosi
c6a2e15ec2
feat(obj) add lv_obj_del_delayed()
2021-06-12 08:02:31 +02:00
Themba Dube
6f37c4fc56
docs(examples) add MicroPython examples
2021-06-11 16:48:27 -04:00
Rop Gonggrijp
c7169762a3
More Snapable --> Snappable replacements ( #2304 )
2021-06-09 16:33:27 +02:00
Rop Gonggrijp
07ecc9f1ef
docs(color) language fixes ( #2302 )
2021-06-09 09:33:41 -04:00
Rop Gonggrijp
d0aaacafb6
Spelling and other language fixes to documentation ( #2293 )
2021-06-09 15:10:35 +02:00
embeddedt
d2efb8c6e5
docs(overview) spelling fixes
2021-06-08 17:23:36 -04:00
Gabor Kiss-Vamosi
75209e893e
chore(docs) minor formatting on example's GitHub link
2021-06-07 22:52:17 +02:00
Themba Dube
a716ac6ed2
feat(docs) add view on GitHub link
2021-06-07 16:07:40 -04:00
embeddedt
3cf5751461
fix(docs) use let instead of const for variable which gets changed
...
`const` variables cannot be reassigned.
2021-06-07 15:26:21 -04:00
Gabor Kiss-Vamosi
9573bab5cb
Update page.html
2021-06-07 21:22:56 +02:00
Gabor Kiss-Vamosi
e796448f9c
Merge branch 'master' of https://github.com/lvgl/lvgl
2021-06-07 20:35:38 +02:00
Gabor Kiss-Vamosi
ca54ecfe0e
feat(event) pass the scroll aniamtion to LV_EVENT_SCROLL_BEGIN
...
Also add lv_example_tabview_2 for demonstration
2021-06-07 20:35:27 +02:00
Gabor Kiss-Vamosi
847236044d
Update CHANGELOG.md
2021-06-07 18:55:41 +02:00
Gabor Kiss-Vamosi
8cd504d58b
docs(extra) add extra/README.md
2021-06-07 18:02:39 +02:00
Gabor Kiss-Vamosi
48fd73d20d
Update CHANGELOG.md
2021-06-07 17:13:06 +02:00
Ali Rostami
5616471c27
Update quick-overview.md ( #2295 )
...
* Update quick-overview.md
* Update quick-overview.md
* Update lv_example_get_started_3.c
* Update coords.md
2021-06-07 14:32:00 +02:00
Gabor Kiss-Vamosi
81f3068dd7
fix(pxp) change LV_COLOR_TRANSP to LV_COLOR_CHROMA_KEY to v8 compatibility
...
Fixes #2289
2021-06-07 14:03:16 +02:00
Gabor Kiss-Vamosi
ac8f4534a5
docs(color) minor fix
2021-06-07 13:36:15 +02:00
Gabor Kiss-Vamosi
9056b5ee1b
docs(color) update colors' docs
2021-06-07 13:21:00 +02:00
dependabot[bot]
b2f77dfcd9
chore(deps): bump urllib3 from 1.26.4 to 1.26.5 in /docs
...
Bumps [urllib3](https://github.com/urllib3/urllib3 ) from 1.26.4 to 1.26.5.
- [Release notes](https://github.com/urllib3/urllib3/releases )
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst )
- [Commits](https://github.com/urllib3/urllib3/compare/1.26.4...1.26.5 )
---
updated-dependencies:
- dependency-name: urllib3
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
2021-06-02 04:41:41 +00:00
Gabor Kiss-Vamosi
29bfe60438
fix(docs) add docs about the default group
2021-06-01 19:43:54 +02:00
Gabor Kiss-Vamosi
9c7f4a8651
Update CHANGELOG.md
2021-06-01 11:11:54 +02:00
Themba Dube
c8e1876eda
fix(docs) more fixes
2021-05-31 14:14:58 -04:00
Gabor Kiss-Vamosi
d3022648dc
fix(docs) minor fixes
2021-05-31 19:42:53 +02:00
embeddedt
0ad3dcbf9b
chore(docs) update version labeling
2021-05-30 08:40:29 -04:00
embeddedt
d1a42ea883
chore(docs) add "v" prefix
2021-05-30 08:21:24 -04:00
Themba Dube
e3ce3a8f5c
chore(docs) fix error
2021-05-29 16:49:59 -04:00
Themba Dube
11f1c5d13f
chore(docs) handle version names without dots
2021-05-29 16:36:28 -04:00
Gabor Kiss-Vamosi
4780beae01
fix(obj) fix invalidation of objects on state change
2021-05-28 14:10:12 +02:00
Gabor Kiss-Vamosi
98c3c8eb5c
fix some examples
2021-05-27 15:12:50 +02:00
Gabor Kiss-Vamosi
0cafde653d
feat(example) add style examples
2021-05-27 11:50:04 +02:00
Gabor Kiss-Vamosi
ec6c20b587
feat(examples) add event examples
2021-05-26 22:05:32 +02:00
Gabor Kiss-Vamosi
71189b46e9
feat(examples) add aniamtion examples
2021-05-26 22:05:32 +02:00
TimSchumann
ce936b8839
docs(CONTRIBUTING) edit for spelling, grammar, and clarity ( #2268 )
...
- Changed all text based instances of LVGL to uppercase (Only instances referring to LVGL the project, not instances referring to the ‘lvgl’ directory structure in the repository, or in URL links)
- Standardized bulleted/numbered list capitalization and punctuation
- Fixed several typos and spelling errors
- Changed minor grammatical errors and structure for clarity.
2021-05-26 13:02:13 -04:00
Themba Dube
4a1462aa3e
fix(docs) handle tuple
2021-05-26 11:58:46 -04:00
Themba Dube
bc6c20618e
Fix GitHub links
2021-05-26 11:53:03 -04:00
Gabor Kiss-Vamosi
2d09196d2d
fix(docs) fix path of example
2021-05-26 16:45:13 +02:00
Gabor Kiss-Vamosi
b969c21881
fix(example) add scroll examples + minor fixes
2021-05-26 16:34:25 +02:00
Gabor Kiss-Vamosi
a6fc90ccc5
Update CHANGELOG.md
2021-05-25 16:07:06 +02:00
Gabor Kiss-Vamosi
fdf33e1190
Update CHANGELOG.md
2021-05-25 15:53:01 +02:00
Gabor Kiss-Vamosi
5b9329fd5d
fix(chart) various scatter chart related fixes
2021-05-24 21:45:05 +02:00
Gabor Kiss-Vamosi
923dbca934
Update ROADMAP.md
2021-05-23 13:49:14 +02:00
Gabor Kiss-Vamosi
d73e42011d
feat make some structs private
2021-05-21 10:58:32 +02:00
Gabor Kiss-Vamosi
46253b1286
docs minor fixes
2021-05-20 22:25:47 +02:00
Gabor Kiss-Vamosi
9a1eaea25d
docs add meter
2021-05-20 21:12:27 +02:00
guoweilkd
1241fe144b
rename span interface ( #2259 )
...
Co-authored-by: guowei15 <guowei15@xiaomi.com>
2021-05-20 14:47:46 +02:00
Gabor Kiss-Vamosi
42145ec2a9
docs add details to LV_EVENT_HIT_TEST
2021-05-20 14:32:06 +02:00
guoweilkd
e9d82d8336
docs(chart) fix typos ( #2263 )
...
Co-authored-by: guowei15 <guowei15@xiaomi.com>
2021-05-20 14:03:07 +02:00
Gabor Kiss-Vamosi
94717684b0
docs minor fix
2021-05-20 13:23:26 +02:00
Gabor Kiss-Vamosi
07fd3d2c96
feat(chart) add rename lv_chart_set_cursor_point to lv_chart_set_cursor_pos and add lv_chart_set_cursor_point to stick the cursor to a point
2021-05-20 12:43:27 +02:00
Themba Dube
9928029a0f
chore(docs) force rebuild
...
Also fix a minor pluralization issue.
2021-05-19 21:55:29 +02:00
Gabor Kiss-Vamosi
e2a7f559ab
feat(bidi) make base dir a style property and rename lv_bidi_dir_t to lv_base_dir_t
2021-05-19 20:55:44 +02:00
Gabor Kiss-Vamosi
5f0fe3a22c
fix(roller) make lv_roller_set_visible_row_count consider border width
2021-05-19 15:51:30 +02:00
Themba Dube
e65a36fcf4
chore(docs) remove unused code
2021-05-19 09:05:05 -04:00
Themba Dube
b34b520885
chore(docs) use relative version path for examples
2021-05-19 08:54:05 -04:00
Gabor Kiss-Vamosi
a77fbc574d
docs update some widgets' docs to v8
2021-05-19 13:51:32 +02:00
guoweilkd
fb0979cbc1
docs(timer) fix typos ( #2261 )
...
Co-authored-by: guowei15 <guowei15@xiaomi.com>
2021-05-18 16:02:52 +02:00
Gabor Kiss-Vamosi
643b6f52f0
docs add docs for some extra widgets
2021-05-18 14:25:17 +02:00
Gabor Kiss-Vamosi
ca01593561
Merge branch 'master' of https://github.com/littlevgl/lvgl
2021-05-18 11:20:32 +02:00
Gabor Kiss-Vamosi
76fe4148b5
docs update CHANGELOG, CONTRIBUTING and ROADMAP
2021-05-18 11:07:01 +02:00
guoweilkd
6e8b769d2c
docs(scroll) fix small problem ( #2257 )
...
Co-authored-by: guowei15 <guowei15@xiaomi.com>
2021-05-17 22:35:10 -04:00
Gabor Kiss-Vamosi
c65dad1f93
docs fix links
2021-05-17 16:27:37 +02:00
Gabor Kiss-Vamosi
f97f87fdcd
docs link fixes
2021-05-17 16:17:20 +02:00
Gabor Kiss-Vamosi
2972433a45
minor fixes
2021-05-17 15:38:42 +02:00
Gabor Kiss-Vamosi
5ca2481aa2
dics add calendar, chart, colorpicker
2021-05-17 15:37:35 +02:00
Gabor Kiss-Vamosi
7d26d10c3b
docs add flex and grid layout
2021-05-17 15:37:06 +02:00
Gabor Kiss-Vamosi
26366ad279
docs(style) fix typos
2021-05-15 21:12:06 +02:00
Gabor Kiss-Vamosi
a9275f53f3
Merge branch 'master' of https://github.com/littlevgl/lvgl
2021-05-15 20:03:08 +02:00
Gabor Kiss-Vamosi
20f76a1e16
docs minor fixes
2021-05-15 20:02:56 +02:00
Themba Dube
a6086edfc0
chore(docs) upgrade to Sphinx 4 and use requirements.txt
2021-05-14 20:25:40 -04:00
Themba Dube
0ba2e25626
chore(docs) fix version selector
2021-05-14 20:15:25 -04:00
Gabor Kiss-Vamosi
d85703b274
docs include ROADMAP.md and CHANGELOG.md
2021-05-15 01:10:19 +02:00
Gabor Kiss-Vamosi
94a47dc6d9
refactor(event) simplify cover check realted event functions
2021-05-15 00:14:31 +02:00
Gabor Kiss-Vamosi
b7f875aba6
refactor(event) change lv_event_get_ext_draw_size_info to lv_event_set_ext_draw_size for simpler usage
2021-05-14 23:56:34 +02:00
Gabor Kiss-Vamosi
3c994fb968
add forgotten docs file
2021-05-14 15:53:04 +02:00
Gabor Kiss-Vamosi
abe04e98d3
docs add style props
2021-05-14 15:37:35 +02:00
Gabor Kiss-Vamosi
f9ca3900f5
Merge branch 'master' of https://github.com/littlevgl/lvgl
2021-05-13 21:23:20 +02:00
Gabor Kiss-Vamosi
fb654c481b
docs update drawing and porting (display, indev)
2021-05-13 21:23:11 +02:00
Gabor Kiss-Vamosi
addf05da8b
docs update drawing
2021-05-13 19:15:29 +02:00
guoweilkd
9fc556a90b
add span widget ( #2227 )
...
Co-authored-by: guowei15 <guowei15@xiaomi.com>
2021-05-13 17:42:33 +02:00
Gabor Kiss-Vamosi
e3425188f5
docs fix example paths
2021-05-13 16:13:47 +02:00
Gabor Kiss-Vamosi
47de5e1eda
docs fix link to examples
2021-05-13 16:04:49 +02:00
Gabor Kiss-Vamosi
1ed42a937f
docs finish the the core widgets
2021-05-13 15:39:26 +02:00
Themba Dube
67dd4e98c7
chore(docs) force rebuild
2021-05-12 15:12:50 -04:00
Gabor Kiss-Vamosi
f0dd603dbd
docs update some widgets to v8
2021-05-11 19:44:52 +02:00
Gabor Kiss-Vamosi
96ef55273d
fix(example) reconvert the images to add alpha channel
2021-05-11 17:43:14 +02:00
Gabor Kiss-Vamosi
779a4aab3c
docs(coords) update the box model
2021-05-11 16:04:54 +02:00
Gabor Kiss-Vamosi
b3df023ebb
Merge branch 'master' of https://github.com/littlevgl/lvgl
2021-05-10 09:58:46 +02:00
Gabor Kiss-Vamosi
bad4450795
docs(roller) update to v8
2021-05-10 09:52:54 +02:00
guoweilkd
241a0bead8
docs(coords) fix spelling errors ( #2244 )
...
Co-authored-by: guowei15 <guowei15@xiaomi.com>
2021-05-08 09:15:51 -04:00
Gabor Kiss-Vamosi
327da8a5cd
Merge branch 'master' of https://github.com/littlevgl/lvgl
2021-05-07 21:23:22 +02:00
Gabor Kiss-Vamosi
f5c70a06db
docs(examples) fix some examples
2021-05-07 21:23:09 +02:00
Themba Dube
86af86613b
chore(docs) improve PDF sidebar and pin dependencies
2021-05-07 13:02:17 -04:00
Themba Dube
5a5d469e23
chore(docs) fix latex build
2021-05-07 12:31:39 -04:00
Themba Dube
e44c19946c
chore(docs) add missed makeindex step
2021-05-07 11:33:37 -04:00
Themba Dube
d8baf19b3d
chore(docs) run makeindex before xelatex
2021-05-07 11:29:16 -04:00
Gabor Kiss-Vamosi
e3bcea759c
Update coords.md
2021-05-06 10:53:16 +02:00
Themba Dube
e6b0b87e33
docs(all) add live example for arc and PDF build
2021-05-04 20:43:12 -04:00
Themba Dube
528314533c
docs(display) remove built-in color list as they no longer exist in this manner
2021-05-04 20:28:30 -04:00
Gabor Kiss-Vamosi
87f8ac2ef9
docs(css) improve CSS of API section
2021-05-04 11:53:39 +02:00
Gabor Kiss-Vamosi
b0933ace92
docs add back the contributing page
2021-05-03 20:48:30 +02:00
Gabor Kiss-Vamosi
9b2b6deb97
fix(docs) update CSS
...
Add some space between the type and name in the api docs of the enums
2021-05-03 17:55:09 +02:00
Gabor Kiss-Vamosi
05252b7fe8
docs update some mroe widgets to v8 + fix links
2021-05-03 17:32:57 +02:00
Gabor Kiss-Vamosi
3c39c39c9d
docs separate widgets into core and extra groups
2021-05-03 11:13:43 +02:00
Gabor Kiss-Vamosi
91ef2cb53e
docs(canvas) update to v8
2021-05-02 22:01:56 +02:00
Gabor Kiss-Vamosi
b58bdb4f0d
docs minor updates
2021-05-01 07:34:30 +02:00
Gabor Kiss-Vamosi
cba67447f2
docs(btn, btnmatrix, calendar) upadte to v8
2021-05-01 07:34:30 +02:00
Themba Dube
57417a851e
docs(index) use version extracted from lvgl.h
2021-04-30 13:14:10 -04:00
Gabor Kiss-Vamosi
3a1ed7a321
docs(arc, bar) update to v8
2021-04-30 10:02:08 +02:00
Gabor Kiss-Vamosi
b08da09e62
docs(event, coords) add more info
2021-04-30 10:02:08 +02:00
Gabor Kiss-Vamosi
fa0c1d1423
docs(objects) update to v8
2021-04-27 15:36:53 +02:00
Gabor Kiss-Vamosi
acc6ca16f3
Update ROADMAP.md
2021-04-25 14:05:10 +02:00
Themba Dube
6df6cb0ec0
feat(docs) add first iteration of compile script
2021-04-23 17:45:34 -04:00
Gabor Kiss-Vamosi
a9bedcf335
minor fixes
2021-04-23 11:34:59 +02:00
Gabor Kiss-Vamosi
eaed66057b
refactor(style) rename LV_STYLE_PROP_ALL to LV_STYLE_PROP_ANY
2021-04-23 10:35:36 +02:00
Gabor Kiss-Vamosi
21489eddc8
docs(object) update to v8
2021-04-22 17:47:41 +02:00
Gabor Kiss-Vamosi
4417ee9d91
docs(scroll) add docs for scrolling
2021-04-21 12:30:52 +02:00
Gabor Kiss-Vamosi
4324cf72f3
refactor(style, obj) lv_obj_get_width/height_fit -> lv_objget_get_content_width/height, style_tranform_x/y -> style_translate_x/y
2021-04-20 21:08:16 +02:00
Gabor Kiss-Vamosi
5b3df13366
docs: add some skeleton files for the new features
2021-04-19 22:10:01 +02:00
Gabor Kiss-Vamosi
422c9e5bd6
feat(event) rework the prototype of lv_event_cb
...
It encapsulates all event related parameters into a single lv_event_t obejct.
2021-04-14 15:31:54 +02:00
Gabor Kiss-Vamosi
04f0ffc775
docs(event, timer) update to v8
2021-04-13 13:25:10 +02:00
Gabor Kiss-Vamosi
73f4264320
add the md files from the docs repo to start updating them to v8
2021-04-12 18:19:04 +02:00
Xiang Xiao
8dd3c76305
fix(build): remove lv_ prefix from path
2021-03-23 23:30:32 +08:00
Xiang Xiao
9254a7ea14
fix(comment): remove the space after /* and before */
2021-03-18 11:51:36 +08:00
Gabor Kiss-Vamosi
762c0a3274
Update ROADMAP.md
2021-01-20 11:56:54 +01:00
Gabor Kiss-Vamosi
f6fe3dcc8c
Update ROADMAP.md
2021-01-19 15:57:27 +01:00
Xiang Xiao
c9b97feea8
fix(formatting): various improvements ( #2028 )
...
* fix(formatting): Remove the duplicated space
* fix(formatting): Remove the duplicated 'the'
* fix(spell): run codespell -w for the code base
2021-01-17 09:03:31 -05:00
Xiang Xiao
81b13bf3b6
Remove the double empty lines from all source files ( #2009 )
...
* Run dos2unix for all source files
* Remove the trail space from all source files
* Remove the double empty lines from all source files
2021-01-11 14:28:00 +01:00
Gabor Kiss-Vamosi
83c55c2a64
Update ROADMAP.md
2021-01-04 18:15:37 +01:00
Gabor Kiss-Vamosi
c52482efa2
Update ROADMAP.md
2020-12-01 12:19:45 +01:00
Gabor Kiss-Vamosi
5b09c3879d
Update ROADMAP.md
2020-12-01 12:15:59 +01:00
Gabor Kiss-Vamosi
2f6eaa516c
Update ROADMAP.md
2020-11-26 15:54:39 +01:00
Gabor Kiss-Vamosi
baa1f848b1
Update ROADMAP.md
2020-11-19 17:21:52 +01:00
Gabor Kiss-Vamosi
e511fe53c9
Update ROADMAP.md
2020-11-18 13:52:01 +01:00
Gabor Kiss-Vamosi
4ca5d4e86d
Update ROADMAP.md
2020-10-16 13:12:46 +02:00