diff --git a/examples_for_PC/PlatformIO_SDL/README.md b/examples_for_PC/PlatformIO_SDL/README.md index 69c4dc73..0d8e6c4b 100644 --- a/examples_for_PC/PlatformIO_SDL/README.md +++ b/examples_for_PC/PlatformIO_SDL/README.md @@ -28,7 +28,7 @@ xcode-select --install `MSYS2` をここ https://www.msys2.org/ から入手してインストールする。 そのあと、Windowsの`システムのプロパティ`->`環境変数` を開き、 `PATH` に以下の3つのパスを追加する。 ``` -C:\msys64\mingw64\bin +C:\msys64\mingw32\bin C:\msys64\ucrt64\bin C:\msys64\usr\bin ``` @@ -70,7 +70,7 @@ https://github.com/libsdl-org/SDL/releases - include - lib -C:\msys64\mingw64\ を開き、上記の4つのフォルダと同名のフォルダが存在することを確認したら、C:\msys64\mingw64\ 内に上記フォルダの内容を追加する。(上書きコピー) +C:\msys64\mingw32\ を開き、上記の4つのフォルダと同名のフォルダが存在することを確認したら、C:\msys64\mingw32\ 内に上記フォルダの内容を追加する。(上書きコピー) --- diff --git a/library.json b/library.json index 476ffbeb..55ca19a7 100644 --- a/library.json +++ b/library.json @@ -11,7 +11,7 @@ "type": "git", "url": "https://github.com/lovyan03/LovyanGFX.git" }, - "version": "1.1.8", + "version": "1.1.9", "frameworks": ["arduino", "espidf", "*"], "platforms": ["espressif32", "espressif8266", "atmelsam", "native"], "headers": "LovyanGFX.hpp", diff --git a/library.properties b/library.properties index c56b1689..7c3bdea0 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=LovyanGFX -version=1.1.8 +version=1.1.9 author=lovyan03 maintainer=lovyan03 sentence=TFT LCD Graphics driver with touch for ESP32, ESP8266, SAMD21, SAMD51, RP2040 diff --git a/src/lgfx/v1/gitTagVersion.h b/src/lgfx/v1/gitTagVersion.h index f7172599..25adeaca 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 8 +#define LGFX_VERSION_PATCH 9 #define LOVYANGFX_VERSION F( LGFX_VERSION_MAJOR "." LGFX_VERSION_MINOR "." LGFX_VERSION_PATCH )