From 75c19776fe764dadb8b41f38fbbb44bd1dc41211 Mon Sep 17 00:00:00 2001 From: lovyan03 <42724151+lovyan03@users.noreply.github.com> Date: Mon, 4 Mar 2024 14:33:14 +0900 Subject: [PATCH] raising version 0.1.13 --- examples/PlatformIO_SDL/platformio.ini | 4 ++++ library.json | 2 +- library.properties | 2 +- src/lgfx/v1/gitTagVersion.h | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/examples/PlatformIO_SDL/platformio.ini b/examples/PlatformIO_SDL/platformio.ini index 45e6d29..f68672e 100644 --- a/examples/PlatformIO_SDL/platformio.ini +++ b/examples/PlatformIO_SDL/platformio.ini @@ -20,6 +20,8 @@ build_type = debug build_flags = -O0 -xc++ -std=c++14 -lSDL2 -I"/usr/local/include/SDL2" ; for intel mac homebrew SDL2 -L"/usr/local/lib" ; for intel mac homebrew SDL2 + -DM5GFX_SHOW_FRAME ; Display frame image. + -DM5GFX_BACK_COLOR=0x222222u ; Color outside the frame image [env:native_arm] platform = native @@ -28,6 +30,8 @@ build_flags = -O0 -xc++ -std=c++14 -lSDL2 -arch arm64 ; for arm mac -I"${sysenv.HOMEBREW_PREFIX}/include/SDL2" ; for arm mac homebrew SDL2 -L"${sysenv.HOMEBREW_PREFIX}/lib" ; for arm mac homebrew SDL2 + -DM5GFX_SHOW_FRAME ; Display frame image. + -DM5GFX_BACK_COLOR=0x222222u ; Color outside the frame image [env:native_StickCPlus] extends = native diff --git a/library.json b/library.json index ee9e871..6e30086 100644 --- a/library.json +++ b/library.json @@ -10,7 +10,7 @@ "type": "git", "url": "https://github.com/m5stack/M5GFX.git" }, - "version": "0.1.12", + "version": "0.1.13", "frameworks": ["arduino", "espidf", "*"], "platforms": ["espressif32", "native"], "headers": "M5GFX.h" diff --git a/library.properties b/library.properties index 8654211..ff8bed7 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=M5GFX -version=0.1.12 +version=0.1.13 author=M5Stack maintainer=M5Stack sentence=Library for M5Stack All Display diff --git a/src/lgfx/v1/gitTagVersion.h b/src/lgfx/v1/gitTagVersion.h index 0ec4d29..9c11cd7 100644 --- a/src/lgfx/v1/gitTagVersion.h +++ b/src/lgfx/v1/gitTagVersion.h @@ -1,4 +1,4 @@ #define LGFX_VERSION_MAJOR 1 #define LGFX_VERSION_MINOR 1 -#define LGFX_VERSION_PATCH 12 +#define LGFX_VERSION_PATCH 13 #define LOVYANGFX_VERSION F( LGFX_VERSION_MAJOR "." LGFX_VERSION_MINOR "." LGFX_VERSION_PATCH )