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

5783 Commits

Author SHA1 Message Date
github-actions[bot]
31622a811d
Merge bc25998c5b2acc347eade7d3dac29675d81476b8 into dev 2021-01-12 18:26:55 +00:00
Xiang Xiao
bc25998c5b
Minor fix found in mem module (#2014)
* fix(mem): Utilize ALIGN_MASK as much as possible

to avoid check LV_ARCH_64 again and again and
correct the comment about MEM_UNIT

* fix(mem): Simplify _lv_memset implementation by SET8/SET32/REPEAT8 macro

* fix(mem): Handle the out of memory gracefully in _lv_mem_buf_get

don't modify the state in the failure

* fix(mem): Remove the unnecessary memset, memcpy and assignment
2021-01-12 19:26:26 +01:00
github-actions[bot]
febe314b3b
Merge 9ca4ffd64db6fb00bc71bada2db232e6337c9b69 into dev 2021-01-12 16:02:18 +00:00
Xiang Xiao
9ca4ffd64d
fix(format) correct comments in lv_gc.h, lv_ll.h and lv_log.h (#2016) 2021-01-12 11:01:45 -05:00
github-actions[bot]
8e93df38a1
Merge d6ca15a74923f2e86ce1e4ee6ee83bb2bbc887b8 into dev 2021-01-12 15:14:18 +00:00
Xiang Xiao
d6ca15a749
Move LV_GC_INCLUDE to the common place(gc.h) (#2010)
* Move LV_GC_INCLUDE to the common place(gc.h)

to avoid the duplication in many source files

* fix(theme template): Always initialize _lv_theme_material_styles

just like what other theme do
2021-01-12 16:13:41 +01:00
github-actions[bot]
49124b4ef0
Merge 486053012dd970211315efbe9e7f56d77935725c into dev 2021-01-12 11:16:38 +00:00
Xiang Xiao
486053012d
Various fs module fix and improvement (#2019)
* fix(fs): Check driver ready in lv_fs_dir_open and lv_fs_free_space

* fix(fs): Avoid the memory leak in lv_fs_open and lv_fs_dir_open

* fix(fs): Fix typo error in lv_fs_trunc(tell_cb should be trunc_cb)

* fix(fs): Make lv_fs_dir_close same as lv_fs_close when dir_close_cb equals NULL

* fix(fs): Handle the struct cleanup correctly

* improve(fs): Don't allocate memory when file_size or rddir_size equal zero

pass the address of file_d or dir_d to open_cb or dir_open_cb instead, so
implementor can point file_d/dir_d to other location. In many cases(POSIX),
file system will allocate the context for us, this improvement could avoid
we allocate the 4/8 bytes intermediate space.
2021-01-12 12:16:02 +01:00
github-actions[bot]
47ad247988
Merge c083d19b52a3f6b9460cb919b15e4e6ad37de1f5 into dev 2021-01-12 11:07:33 +00:00
Xiang Xiao
c083d19b52
Minor fix found in async module (#2015)
* fix(async): Move lv_async_info_t from lv_async.h to lv_async.c

since the user don't need know the implementation detail

* fix(async): Don't set user_data again

since lv_task_create already save it for us
2021-01-12 12:07:00 +01:00
github-actions[bot]
f170e1d2ec
Merge 138fcfec7955c1f37a5bf2372a25bc08cbcb0dc5 into dev 2021-01-12 11:00:50 +00:00
Xiang Xiao
138fcfec79
fix(math): Correct the function argument type declaration (#2013)
1.all argument of _lv_bezier3 should be uint32_t since the input and output are unsigned
2.the return type of _lv_map should be int32_t since the type of output range is int32_t
3.remove the unnecessary cast
2021-01-12 12:00:20 +01:00
github-actions[bot]
595bb0b062
Merge c20d5d81f28b78b450610c223402681e7a435183 into dev 2021-01-11 13:38:56 +00:00
Xiang Xiao
c20d5d81f2
Minor fix found in Kconfig (#2005)
* Trim trailing whitespace from Kconfig

* Replace all tab to space in Kconfig

* Add more dependence between opions to Kconfig

* Add LV_USE_FONT_SUBPX for LV_FONT_SUBPX_BGR in Kconfig

* Fix typo error(LV_USE_DROPBOX->LV_USE_DROPDOWN) in Kconfig

* Remove LV_THEME_MATERIAL dependence from the child of LV_THEME_DEFAULT_FLAG

since LV_THEME_DEFAULT_FLAG already depends on LV_THEME_MATERIAL

* Rename LV_MEM_SIZE_BYTES to LV_MEM_SIZE_KILOBYTES

since this opion use KiB as the unit
2021-01-11 14:38:17 +01:00
Gabor Kiss-Vamosi
0f0c2790fb merge master 2021-01-11 14:35:26 +01: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
github-actions[bot]
18444e5ce3
Merge 52ba06a2284b058d6b418bede3115790d10fcf5a into dev 2021-01-11 12:11:25 +00:00
udoudou
52ba06a228
Update CHANGELOG.md (#2011)
Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
2021-01-11 13:10:54 +01:00
github-actions[bot]
6e862b0f83
Merge 923f989b391417e77f14aeb35311fe4a25749e8d into dev 2021-01-11 12:10:32 +00:00
udoudou
923f989b39
Fix(indev): Don't leave edit mode if there is only one object in the group (#1999)
* Release v7.7.0

* Fix(indev): Don't leave edit mode if there is only
 one object in the group

* Remove unnecessary judgment conditions

Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>

Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
2021-01-11 13:10:02 +01:00
github-actions[bot]
b66600d0c8
Merge a2e9f03edae44e26f2f02a12d29ea5b63af9dc62 into dev 2021-01-11 09:26:54 +00:00
Julian Mitchell
a2e9f03eda
Fix build when LV_USE_GPU_NXP_PXP is enabled (#1982)
* Fix build when LV_USE_GPU_NXP_PXP is enabled

* Allow fill_normal to use PXP
2021-01-11 10:26:24 +01:00
github-actions[bot]
57df8f4175
Merge 4cff14f82394667b270c7225750176c008b882a6 into dev 2021-01-11 09:23:20 +00:00
Gabor Kiss-Vamosi
4cff14f823 fix(gou_nxp_pxp): fix incorrent define name 2021-01-11 10:22:23 +01:00
github-actions[bot]
1a04b54f2b
Merge 0d52a60200ef17693fe96d8303085e813c51462a into dev 2021-01-09 20:25:57 +00:00
github-actions[bot]
6ae11b7a46
Merge c988b686053d2284a0368ab1d7c6e6906086e25d into dev 2021-01-09 20:25:39 +00:00
embeddedt
0d52a60200
Update CHANGELOG.md 2021-01-09 15:25:21 -05:00
embeddedt
c988b68605
fix(msgbox) use the animation time provided
Fixes #2008
2021-01-09 15:25:07 -05:00
github-actions[bot]
4249b9edc5
Merge 7d3a6c8de4303f69582a3939d36405a06b376ed0 into dev 2021-01-08 13:36:42 +00:00
Gabor Kiss-Vamosi
7d3a6c8de4
Update main.yml 2021-01-08 14:35:39 +01:00
github-actions[bot]
2aba361ebd
Merge 636ea46a446c3456c6987230a0a222713d37a322 into dev 2021-01-08 13:34:17 +00:00
Gabor Kiss-Vamosi
636ea46a44
Delete close-if-no-template.yml 2021-01-08 14:33:49 +01:00
github-actions[bot]
c094773b89
Merge 0e2c83813f9e01bea3d8bd86ae970f04774f51fb into dev 2021-01-08 13:33:31 +00:00
Gabor Kiss-Vamosi
0e2c83813f
Create main.yml 2021-01-08 14:32:55 +01:00
github-actions[bot]
0bd48925dc
Merge ccc847e975405d78221dfdccec6eae1f1a4e7be9 into dev 2021-01-08 13:25:21 +00:00
Gabor Kiss-Vamosi
ccc847e975
Create close-if-no-template.yml 2021-01-08 14:24:53 +01:00
github-actions[bot]
4b14785e40
Merge cabbaf093ccb8c59ff38814977e36a953011f6f7 into dev 2021-01-08 13:24:51 +00:00
Gabor Kiss-Vamosi
cabbaf093c
Delete auto-close-if-no-template.yml 2021-01-08 14:24:24 +01:00
github-actions[bot]
a82e6b89e8
Merge d31304a1cc503d0024896a686051cd95c8526f31 into dev 2021-01-08 13:23:20 +00:00
Gabor Kiss-Vamosi
d31304a1cc
Create auto-close-if-no-template.yml 2021-01-08 14:22:51 +01:00
github-actions[bot]
955ad6fe96
Merge 6de31e9ffcd50488e80ebf0377b49fb1e861c600 into dev 2021-01-08 13:11:51 +00:00
Gabor Kiss-Vamosi
6de31e9ffc
Update bug-report.md 2021-01-08 14:11:23 +01:00
github-actions[bot]
295d3b42bd
Merge e457c33dc29cde4c456222b32b76f9973e910844 into dev 2021-01-08 13:10:41 +00:00
Gabor Kiss-Vamosi
e457c33dc2
Update dev-discussion.md 2021-01-08 14:10:12 +01:00
github-actions[bot]
045163cc1d
Merge 9bb7ff30ec9c6eafe8cc7e3392772447d12276c9 into dev 2021-01-08 13:09:12 +00:00
Gabor Kiss-Vamosi
9bb7ff30ec
Update and rename all-other-issues.md to dev-discussion.md 2021-01-08 14:08:39 +01:00
github-actions[bot]
b9e415fef0
Merge f0fd2b757f490092ebffa0a261c04cae6a1bab04 into dev 2021-01-08 11:52:51 +00:00
Gabor Kiss-Vamosi
f0fd2b757f
Update bug-report.md 2021-01-08 12:52:23 +01:00
github-actions[bot]
68def59570
Merge 97f149320287c310b8afea08777550833eebb86d into dev 2021-01-08 11:52:13 +00:00
Gabor Kiss-Vamosi
97f1493202
Update bug-report.md 2021-01-08 12:51:44 +01:00