prepare to release v7.6.1

This commit is contained in:
Gabor Kiss-Vamosi
2020-10-06 09:30:37 +02:00
parent 3d8a19a0ca
commit 8b6bb63795
6 changed files with 7 additions and 14 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "lvgl", "name": "lvgl",
"version": "7.6.0", "version": "7.6.1",
"keywords": "graphics, gui, embedded, tft, lvgl", "keywords": "graphics, gui, embedded, tft, lvgl",
"description": "Graphics library to create embedded GUI with easy-to-use graphical elements, beautiful visual effects and low memory footprint. It offers anti-aliasing, opacity, and animations using only one frame buffer.", "description": "Graphics library to create embedded GUI with easy-to-use graphical elements, beautiful visual effects and low memory footprint. It offers anti-aliasing, opacity, and animations using only one frame buffer.",
"repository": { "repository": {
+1 -1
View File
@@ -1,5 +1,5 @@
name=lvgl name=lvgl
version=7.6.0 version=7.6.1
author=kisvegabor author=kisvegabor
maintainer=kisvegabor,embeddedt,pete-pjb maintainer=kisvegabor,embeddedt,pete-pjb
sentence=Full-featured Graphics Library for Embedded Systems sentence=Full-featured Graphics Library for Embedded Systems
+1 -1
View File
@@ -1,6 +1,6 @@
/** /**
* @file lv_conf.h * @file lv_conf.h
* Configuration file for v7.6.0-dev * Configuration file for v7.6.1-dev
*/ */
/* /*
+1 -9
View File
@@ -10,14 +10,6 @@
#include <stdint.h> #include <stdint.h>
#if defined __has_include
# if __has_include("lv_conf.h")
# ifndef LV_CONF_INCLUDE_SIMPLE
# define LV_CONF_INCLUDE_SIMPLE
# endif
# endif
#endif
/*If lv_conf.h is not skipped include it*/ /*If lv_conf.h is not skipped include it*/
#if !defined(LV_CONF_SKIP) && !defined(CONFIG_LV_CONF_SKIP) #if !defined(LV_CONF_SKIP) && !defined(CONFIG_LV_CONF_SKIP)
# if defined(LV_CONF_PATH) /*If there is a path defined for lv_conf.h use it*/ # if defined(LV_CONF_PATH) /*If there is a path defined for lv_conf.h use it*/
@@ -1259,7 +1251,7 @@ e.g. "stm32f769xx.h" or "stm32f429xx.h" */
/* Support bidirectional texts. /* Support bidirectional texts.
* Allows mixing Left-to-Right and Right-to-Left texts. * Allows mixing Left-to-Right and Right-to-Left texts.
* The direction will be processed according to the Unicode Bidirectional Algorithm: * The direction will be processed according to the Unicode Bidirectioanl Algorithm:
* https://www.w3.org/International/articles/inline-bidi-markup/uba-basics*/ * https://www.w3.org/International/articles/inline-bidi-markup/uba-basics*/
#ifndef LV_USE_BIDI #ifndef LV_USE_BIDI
# ifdef CONFIG_LV_USE_BIDI # ifdef CONFIG_LV_USE_BIDI
+2 -1
View File
@@ -145,7 +145,8 @@ void lv_checkbox_set_checked(lv_obj_t * cb, bool checked)
if(checked) { if(checked) {
lv_obj_add_state(ext->bullet, LV_STATE_CHECKED); lv_obj_add_state(ext->bullet, LV_STATE_CHECKED);
lv_obj_add_state(ext->label, LV_STATE_CHECKED); lv_obj_add_state(ext->label, LV_STATE_CHECKED);
} else { }
else {
lv_obj_clear_state(ext->bullet, LV_STATE_CHECKED); lv_obj_clear_state(ext->bullet, LV_STATE_CHECKED);
lv_obj_clear_state(ext->label, LV_STATE_CHECKED); lv_obj_clear_state(ext->label, LV_STATE_CHECKED);
} }
+1 -1
View File
@@ -767,7 +767,7 @@ static lv_design_res_t lv_dropdown_design(lv_obj_t * ddlist, const lv_area_t * c
lv_draw_label(&txt_area, clip_area, &label_dsc, txt, NULL); lv_draw_label(&txt_area, clip_area, &label_dsc, txt, NULL);
} }
txt =rev ? opt_txt : ext->symbol; txt = rev ? opt_txt : ext->symbol;
if(txt) { if(txt) {
_lv_txt_get_size(&txt_size, txt, label_dsc.font, label_dsc.letter_space, label_dsc.line_space, LV_COORD_MAX, _lv_txt_get_size(&txt_size, txt, label_dsc.font, label_dsc.letter_space, label_dsc.line_space, LV_COORD_MAX,
label_dsc.flag); label_dsc.flag);