chore(cmsis-pack): prepare for release v8.3.9 (#4424)
This commit is contained in:
Binary file not shown.
@@ -36,7 +36,12 @@
|
|||||||
<repository type="git">https://github.com/lvgl/lvgl.git</repository>
|
<repository type="git">https://github.com/lvgl/lvgl.git</repository>
|
||||||
|
|
||||||
<releases>
|
<releases>
|
||||||
<release date="2023-07-04" version="8.3.8" url="https://raw.githubusercontent.com/lvgl/lvgl/master/env_support/cmsis-pack/LVGL.lvgl.8.3.8.pack">
|
<release date="2023-08-04" version="8.3.9" url="https://raw.githubusercontent.com/lvgl/lvgl/master/env_support/cmsis-pack/LVGL.lvgl.8.3.9.pack">
|
||||||
|
- LVGL 8.3.9
|
||||||
|
- Add snapshot, fragment, imgfont, gridnav, msg and monkey
|
||||||
|
- Other minor fixes
|
||||||
|
</release>
|
||||||
|
<release date="2023-07-04" version="8.3.8" url="https://github.com/lvgl/lvgl/raw/15433d69b9d8ae6aa74f49946874af81a0cc5921/env_support/cmsis-pack/LVGL.lvgl.8.3.8.pack">
|
||||||
- LVGL 8.3.8
|
- LVGL 8.3.8
|
||||||
- Add renesas-ra6m3 gpu adaptation
|
- Add renesas-ra6m3 gpu adaptation
|
||||||
- Improve performance and add more features for PXP and VGLite
|
- Improve performance and add more features for PXP and VGLite
|
||||||
@@ -294,7 +299,7 @@
|
|||||||
-->
|
-->
|
||||||
|
|
||||||
<components>
|
<components>
|
||||||
<bundle Cbundle="LVGL" Cclass="LVGL" Cversion="8.3.8">
|
<bundle Cbundle="LVGL" Cclass="LVGL" Cversion="8.3.9">
|
||||||
<description>LVGL (Light and Versatile Graphics Library) is a free and open-source graphics library providing everything you need to create an embedded GUI with easy-to-use graphical elements, beautiful visual effects and a low memory footprint.</description>
|
<description>LVGL (Light and Versatile Graphics Library) is a free and open-source graphics library providing everything you need to create an embedded GUI with easy-to-use graphical elements, beautiful visual effects and a low memory footprint.</description>
|
||||||
<doc></doc>
|
<doc></doc>
|
||||||
<component Cgroup="lvgl" Csub="Essential" >
|
<component Cgroup="lvgl" Csub="Essential" >
|
||||||
@@ -761,6 +766,97 @@
|
|||||||
|
|
||||||
</component>
|
</component>
|
||||||
|
|
||||||
|
<component Cgroup="lvgl" Csub="Snapshot" condition="LVGL-Essential">
|
||||||
|
<description>Add the Snapshot service</description>
|
||||||
|
<files>
|
||||||
|
<!-- src/extra/others/snapshot -->
|
||||||
|
<file category="sourceC" name="src/extra/others/snapshot/lv_snapshot.c" />
|
||||||
|
</files>
|
||||||
|
|
||||||
|
<RTE_Components_h>
|
||||||
|
|
||||||
|
/*! \brief enable snapshot support */
|
||||||
|
#define LV_USE_SNAPSHOT 1
|
||||||
|
</RTE_Components_h>
|
||||||
|
|
||||||
|
</component>
|
||||||
|
|
||||||
|
<component Cgroup="lvgl" Csub="Fragment" condition="LVGL-Essential">
|
||||||
|
<description>Add the Fragment service</description>
|
||||||
|
<files>
|
||||||
|
<!-- src/extra/others/fragment -->
|
||||||
|
<file category="sourceC" name="src/extra/others/fragment/lv_fragment.c" />
|
||||||
|
<file category="sourceC" name="src/extra/others/fragment/lv_fragment_manager.c" />
|
||||||
|
</files>
|
||||||
|
|
||||||
|
<RTE_Components_h>
|
||||||
|
|
||||||
|
/*! \brief enable fragment support */
|
||||||
|
#define LV_USE_FRAGMENT 1
|
||||||
|
</RTE_Components_h>
|
||||||
|
|
||||||
|
</component>
|
||||||
|
|
||||||
|
<component Cgroup="lvgl" Csub="Grid Navigation" condition="LVGL-Essential">
|
||||||
|
<description>Add the Grid Navigation service</description>
|
||||||
|
<files>
|
||||||
|
<!-- src/extra/others/gridnav -->
|
||||||
|
<file category="sourceC" name="src/extra/others/gridnav/lv_gridnav.c" />
|
||||||
|
</files>
|
||||||
|
|
||||||
|
<RTE_Components_h>
|
||||||
|
|
||||||
|
/*! \brief enable the Grid Navigation support*/
|
||||||
|
#define LV_USE_GRIDNAV 1
|
||||||
|
</RTE_Components_h>
|
||||||
|
|
||||||
|
</component>
|
||||||
|
|
||||||
|
<component Cgroup="lvgl" Csub="Image Font" condition="LVGL-Essential">
|
||||||
|
<description>Add the Image Font service</description>
|
||||||
|
<files>
|
||||||
|
<!-- src/extra/others/imgfont -->
|
||||||
|
<file category="sourceC" name="src/extra/others/imgfont/lv_imgfont.c" />
|
||||||
|
</files>
|
||||||
|
|
||||||
|
<RTE_Components_h>
|
||||||
|
|
||||||
|
/*! \brief enable the image font support*/
|
||||||
|
#define LV_USE_IMGFONT 1
|
||||||
|
</RTE_Components_h>
|
||||||
|
|
||||||
|
</component>
|
||||||
|
|
||||||
|
<component Cgroup="lvgl" Csub="Monkey" condition="LVGL-Essential">
|
||||||
|
<description>Add the Monkey service</description>
|
||||||
|
<files>
|
||||||
|
<!-- src/extra/others/monkey -->
|
||||||
|
<file category="sourceC" name="src/extra/others/monkey/lv_monkey.c" />
|
||||||
|
</files>
|
||||||
|
|
||||||
|
<RTE_Components_h>
|
||||||
|
|
||||||
|
/*! \brief enable the monkey service support*/
|
||||||
|
#define LV_USE_MONKEY 1
|
||||||
|
</RTE_Components_h>
|
||||||
|
|
||||||
|
</component>
|
||||||
|
|
||||||
|
<component Cgroup="lvgl" Csub="Message" condition="LVGL-Essential">
|
||||||
|
<description>Add the Message service</description>
|
||||||
|
<files>
|
||||||
|
<!-- src/extra/others/msg -->
|
||||||
|
<file category="sourceC" name="src/extra/others/msg/lv_msg.c" />
|
||||||
|
</files>
|
||||||
|
|
||||||
|
<RTE_Components_h>
|
||||||
|
|
||||||
|
/*! \brief enable the message service support*/
|
||||||
|
#define LV_USE_MSG 1
|
||||||
|
</RTE_Components_h>
|
||||||
|
|
||||||
|
</component>
|
||||||
|
|
||||||
<component Cgroup="lvgl" Csub="Benchmark" condition="LVGL-Essential">
|
<component Cgroup="lvgl" Csub="Benchmark" condition="LVGL-Essential">
|
||||||
<description>Add the official benchmark.</description>
|
<description>Add the official benchmark.</description>
|
||||||
<files>
|
<files>
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
<index schemaVersion="1.0.0" xs:noNamespaceSchemaLocation="PackIndex.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema-instance">
|
<index schemaVersion="1.0.0" xs:noNamespaceSchemaLocation="PackIndex.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
<vendor>LVGL</vendor>
|
<vendor>LVGL</vendor>
|
||||||
<url>https://raw.githubusercontent.com/lvgl/lvgl/master/env_support/cmsis-pack/</url>
|
<url>https://raw.githubusercontent.com/lvgl/lvgl/master/env_support/cmsis-pack/</url>
|
||||||
<timestamp>2023-07-04</timestamp>
|
<timestamp>2023-08-04</timestamp>
|
||||||
<pindex>
|
<pindex>
|
||||||
<pdsc url="https://raw.githubusercontent.com/lvgl/lvgl/release/v8.3/env_support/cmsis-pack/" vendor="LVGL" name="lvgl" version="8.3.8"/>
|
<pdsc url="https://raw.githubusercontent.com/lvgl/lvgl/release/v8.3/env_support/cmsis-pack/" vendor="LVGL" name="lvgl" version="8.3.9"/>
|
||||||
</pindex>
|
</pindex>
|
||||||
</index>
|
</index>
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
/**
|
/**
|
||||||
* @file lv_conf.h
|
* @file lv_conf.h
|
||||||
* Configuration file for v8.3.8
|
* Configuration file for v8.3.9
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* clang-format off */
|
/* clang-format off */
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "lvgl",
|
"name": "lvgl",
|
||||||
"version": "8.3.8",
|
"version": "8.3.9",
|
||||||
"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,5 +1,5 @@
|
|||||||
name=lvgl
|
name=lvgl
|
||||||
version=8.3.8
|
version=8.3.9
|
||||||
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,6 +1,6 @@
|
|||||||
/**
|
/**
|
||||||
* @file lv_conf.h
|
* @file lv_conf.h
|
||||||
* Configuration file for v8.3.8
|
* Configuration file for v8.3.9
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
2
lvgl.h
2
lvgl.h
@@ -15,7 +15,7 @@ extern "C" {
|
|||||||
***************************/
|
***************************/
|
||||||
#define LVGL_VERSION_MAJOR 8
|
#define LVGL_VERSION_MAJOR 8
|
||||||
#define LVGL_VERSION_MINOR 3
|
#define LVGL_VERSION_MINOR 3
|
||||||
#define LVGL_VERSION_PATCH 8
|
#define LVGL_VERSION_PATCH 9
|
||||||
#define LVGL_VERSION_INFO ""
|
#define LVGL_VERSION_INFO ""
|
||||||
|
|
||||||
/*********************
|
/*********************
|
||||||
|
|||||||
Reference in New Issue
Block a user