Skip to content

Commit

Permalink
chore(cmsis-pack): prepare for release v8.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GorgonMeducer committed Mar 19, 2024
1 parent b4bdc9e commit 4495f42
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 15 deletions.
2 changes: 1 addition & 1 deletion Kconfig
Original file line number Diff line number Diff line change
@@ -1,4 1,4 @@
# Kconfig file for LVGL v8.0
# Kconfig file for LVGL v8.4

menu "LVGL configuration"

Expand Down
Binary file not shown.
10 changes: 7 additions & 3 deletions env_support/cmsis-pack/LVGL.lvgl.pdsc
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 36,11 @@
<repository type="git">https://github.com/lvgl/lvgl.git</repository>

<releases>
<release date="2023-12-05" version="8.3.11" url="https://raw.githubusercontent.com/lvgl/lvgl/master/env_support/cmsis-pack/LVGL.lvgl.8.3.11.pack">
<release date="2024-03-19" version="8.4.0" url="https://github.com/lvgl/lvgl/raw/v8.4.0/env_support/cmsis-pack/LVGL.lvgl.8.4.0.pack">
- LVGL 8.4.0
- Some minor fixes
</release>
<release date="2023-12-05" version="8.3.11" url="https://github.com/lvgl/lvgl/raw/v8.3.11/env_support/cmsis-pack/LVGL.lvgl.8.3.11.pack">
- LVGL 8.3.11
- Add LittleFS Library to LVGL8
- Backport Tiny TTF to LVGL8
Expand Down Expand Up @@ -310,7 314,7 @@
-->

<components>
<bundle Cbundle="LVGL" Cclass="LVGL" Cversion="8.3.11">
<bundle Cbundle="LVGL" Cclass="LVGL" Cversion="8.4.0">
<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>
<component Cgroup="lvgl" Csub="Essential" >
Expand Down Expand Up @@ -443,7 447,7 @@
<file category="sourceC" name="src/widgets/lv_textarea.c" />

<!-- general -->
<file category="preIncludeGlobal" name="lv_conf_cmsis.h" attr="config" version="1.0.4" />
<file category="preIncludeGlobal" name="lv_conf_cmsis.h" attr="config" version="1.0.5" />
<file category="sourceC" name="lv_cmsis_pack.c" attr="config" version="1.0.0" />
<file category="header" name="lvgl.h" />
<file category="doc" name="README.md"/>
Expand Down
4 changes: 2 additions & 2 deletions env_support/cmsis-pack/LVGL.pidx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 2,8 @@
<index schemaVersion="1.0.0" xs:noNamespaceSchemaLocation="PackIndex.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema-instance">
<vendor>LVGL</vendor>
<url>https://raw.githubusercontent.com/lvgl/lvgl/master/env_support/cmsis-pack/</url>
<timestamp>2023-12-09</timestamp>
<timestamp>2024-3-19</timestamp>
<pindex>
<pdsc url="https://raw.githubusercontent.com/lvgl/lvgl/release/v8.3/env_support/cmsis-pack/" vendor="LVGL" name="lvgl" version="8.3.11"/>
<pdsc url="https://raw.githubusercontent.com/lvgl/lvgl/release/v8.3/env_support/cmsis-pack/" vendor="LVGL" name="lvgl" version="8.4.0"/>
</pindex>
</index>
4 changes: 3 additions & 1 deletion env_support/cmsis-pack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 35,9 @@ remove the misleading guide above this code segment.
#define LV_CONF_H

#include <stdint.h>
#include "RTE_Components.h"
#if defined(_RTE_)
#include "RTE_Components.h"
#endif
...
```

Expand Down
7 changes: 5 additions & 2 deletions env_support/cmsis-pack/lv_conf_cmsis.h
Original file line number Diff line number Diff line change
@@ -1,6 1,6 @@
/**
* @file lv_conf.h
* Configuration file for v8.3.11
* Configuration file for v8.4.0
*/

/* clang-format off */
Expand All @@ -10,7 10,10 @@
#define LV_CONF_H

#include <stdint.h>
#include "RTE_Components.h"

#if defined(_RTE_)
#include "RTE_Components.h"
#endif

/*====================
COLOR SETTINGS
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 1,6 @@
{
"name": "lvgl",
"version": "8.3.11",
"version": "8.4.0",
"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.",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 1,5 @@
name=lvgl
version=8.3.11
version=8.4.0
author=kisvegabor
maintainer=kisvegabor,embeddedt,pete-pjb
sentence=Full-featured Graphics Library for Embedded Systems
Expand Down
2 changes: 1 addition & 1 deletion lv_conf_template.h
Original file line number Diff line number Diff line change
@@ -1,6 1,6 @@
/**
* @file lv_conf.h
* Configuration file for v8.3.11
* Configuration file for v8.4.0
*/

/*
Expand Down
4 changes: 2 additions & 2 deletions lvgl.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 14,8 @@ extern "C" {
* CURRENT VERSION OF LVGL
***************************/
#define LVGL_VERSION_MAJOR 8
#define LVGL_VERSION_MINOR 3
#define LVGL_VERSION_PATCH 11
#define LVGL_VERSION_MINOR 4
#define LVGL_VERSION_PATCH 0
#define LVGL_VERSION_INFO ""

/*********************
Expand Down
2 changes: 1 addition & 1 deletion lvgl.pc.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 5,6 @@ libdir=${prefix}/lib
Name: lvgl
Description: Light and Versatile Graphics Library
URL: https://lvgl.io/
Version: 8.3.11
Version: 8.4.0
Cflags: -I${includedir}
Libs: -L${libdir} -llvgl

0 comments on commit 4495f42

Please sign in to comment.