chore: update the version number to v9.2.1
This commit is contained in:
4
Kconfig
4
Kconfig
@@ -1,4 +1,4 @@
|
|||||||
# Kconfig file for LVGL v9.2.0
|
# Kconfig file for LVGL v9.2.1
|
||||||
|
|
||||||
menu "LVGL configuration"
|
menu "LVGL configuration"
|
||||||
|
|
||||||
@@ -1482,7 +1482,7 @@ menu "LVGL configuration"
|
|||||||
default 2 # LVGL_VERSION_MINOR
|
default 2 # LVGL_VERSION_MINOR
|
||||||
config LVGL_VERSION_PATCH
|
config LVGL_VERSION_PATCH
|
||||||
int
|
int
|
||||||
default 0 # LVGL_VERSION_PATCH
|
default 1 # LVGL_VERSION_PATCH
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
menu "Devices"
|
menu "Devices"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
set(LVGL_VERSION_MAJOR "9")
|
set(LVGL_VERSION_MAJOR "9")
|
||||||
set(LVGL_VERSION_MINOR "2")
|
set(LVGL_VERSION_MINOR "2")
|
||||||
set(LVGL_VERSION_PATCH "0")
|
set(LVGL_VERSION_PATCH "1")
|
||||||
set(LVGL_VERSION_INFO "")
|
set(LVGL_VERSION_INFO "")
|
||||||
|
|
||||||
set(LVGL_VERSION ${LVGL_VERSION_MAJOR}.${LVGL_VERSION_MINOR}.${LVGL_VERSION_PATCH}) # This is a CMake variable
|
set(LVGL_VERSION ${LVGL_VERSION_MAJOR}.${LVGL_VERSION_MINOR}.${LVGL_VERSION_PATCH}) # This is a CMake variable
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "lvgl",
|
"name": "lvgl",
|
||||||
"version": "9.2.0",
|
"version": "9.2.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,5 +1,5 @@
|
|||||||
name=lvgl
|
name=lvgl
|
||||||
version=9.2.0
|
version=9.2.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,6 +1,6 @@
|
|||||||
/**
|
/**
|
||||||
* @file lv_conf.h
|
* @file lv_conf.h
|
||||||
* Configuration file for v9.2.0
|
* Configuration file for v9.2.1
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
#define LVGL_VERSION_MAJOR 9
|
#define LVGL_VERSION_MAJOR 9
|
||||||
#define LVGL_VERSION_MINOR 2
|
#define LVGL_VERSION_MINOR 2
|
||||||
#define LVGL_VERSION_PATCH 0
|
#define LVGL_VERSION_PATCH 1
|
||||||
#define LVGL_VERSION_INFO ""
|
#define LVGL_VERSION_INFO ""
|
||||||
|
|
||||||
#endif /* LVGL_VERSION_H */
|
#endif /* LVGL_VERSION_H */
|
||||||
|
|||||||
@@ -124,7 +124,7 @@ class CmakeReplacer(MacroReplacer):
|
|||||||
class KconfigReplacer(RepoFileVersionReplacer):
|
class KconfigReplacer(RepoFileVersionReplacer):
|
||||||
"""Replace version info in Kconfig file"""
|
"""Replace version info in Kconfig file"""
|
||||||
|
|
||||||
def __init__(self, relative_path_segments: List[str]):
|
def __init__(self, relative_path_segments: list[str]):
|
||||||
super().__init__(relative_path_segments, 3)
|
super().__init__(relative_path_segments, 3)
|
||||||
|
|
||||||
def applyVersionToLine(self, line: str, version: Version):
|
def applyVersionToLine(self, line: str, version: Version):
|
||||||
|
|||||||
Reference in New Issue
Block a user