diff --git a/README.md b/README.md index 1759b25df..93f7d32c5 100755 --- a/README.md +++ b/README.md @@ -29,11 +29,11 @@ Design your GUI with a **drag & drop builder**, then apply the same code to a wi - *Platform-independent* GUI core currently supports: - Adafruit-GFX, TFT_eSPI, mcufriend, UTFT, SDL1.2, SDL2.0 - *Devices*: - - Raspberry Pi, Arduino, ATmega2560, ESP8266 / NodeMCU, ESP32, M5stack, Teensy 3, Feather M0 (Cortex-M0), nRF52 (Cortex-M4F), LINUX, Beaglebone Black, STM32, Due, etc. + - Raspberry Pi, Arduino, ATmega2560, ESP8266 / NodeMCU, ESP32, M5stack, Teensy 3 / T4, Feather M0 (Cortex-M0), nRF52 (Cortex-M4F), LINUX, Beaglebone Black, STM32, Due, etc. - *Typical displays*: - PiTFT, Adafruit TFT 3.5" / 2.8" / 2.4" / 2.2" / 1.44", FeatherWing TFT, OLED 0.96", mcufriend, BuyDisplay / EastRising 4.3" 5" 7", Waveshare, 4D Cape - *Display drivers include*: - - ILI9341, ST7735, SSD1306, HX8347D, HX8357, PCD8544, RA8875, ILI9341_t3, ILI9341_due + - ILI9341, ST7735, SSD1306, HX8347D, HX8357, PCD8544, RA8875, RA8876, ILI9341_t3, ILI9341_due - *Touchscreen control including*: - STMPE610, FT6206, FT5206, XPT2046, 4-wire, tslib, URTouch, Adafruit Seesaw - Foreign characters / UTF-8 encoding (in SDL mode), anti-aliased fonts (in TFT_eSPI mode) diff --git a/docs/GUIslice_ref.pdf b/docs/GUIslice_ref.pdf index f14244917..058c1d942 100755 Binary files a/docs/GUIslice_ref.pdf and b/docs/GUIslice_ref.pdf differ diff --git a/doxygen.conf b/doxygen.conf index fd9859fe5..d208514de 100644 --- a/doxygen.conf +++ b/doxygen.conf @@ -38,7 +38,7 @@ PROJECT_NAME = "GUIslice" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 0.13.0 +PROJECT_NUMBER = 0.14.0 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/library.json b/library.json index ff324706e..7942a49a2 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "GUIslice", - "version": "0.13.0", + "version": "0.14.0", "keywords": "arduino, GUI, tft, embedded, ILI9341, ESP32, ESP8266, teensy, NodeMCU, UTFT, SDL, STM32, M5Stack, feather, adafruit-gfx, raspberry pi, linux, mcufriend", "description": "GUIslice embedded touchscreen GUI library in C for Arduino & Raspberry Pi. Drag & drop GUI supports Adafruit-GFX, TFT_eSPI and UTFT graphics drivers on Arduino, ESP8266 / NodeMCU, ESP32, Teensy, Feather M0, nRF52, STM32", "repository": diff --git a/library.properties b/library.properties index e621b784d..49ecc9248 100755 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=GUIslice -version=0.13.0 +version=0.14.0 author=Calvin Hass maintainer=Calvin Hass sentence=GUIslice embedded touchscreen GUI library in C for Arduino & Raspberry Pi diff --git a/src/GUIslice.c b/src/GUIslice.c index 16941e639..45ae91f42 100755 --- a/src/GUIslice.c +++ b/src/GUIslice.c @@ -4,7 +4,7 @@ // - https://www.impulseadventure.com/elec/guislice-gui.html // - https://github.com/ImpulseAdventure/GUIslice // -// - Version 0.13.0 +// - Version 0.14.0 // ======================================================================= // // The MIT License diff --git a/src/GUIslice.h b/src/GUIslice.h index 0f463cc8d..1576b7474 100755 --- a/src/GUIslice.h +++ b/src/GUIslice.h @@ -7,7 +7,7 @@ // - https://www.impulseadventure.com/elec/guislice-gui.html // - https://github.com/ImpulseAdventure/GUIslice // -// - Version 0.13.0 +// - Version 0.14.0 // ======================================================================= // // The MIT License diff --git a/src/GUIslice_version.h b/src/GUIslice_version.h index 59f269ddb..f164ec581 100644 --- a/src/GUIslice_version.h +++ b/src/GUIslice_version.h @@ -36,7 +36,7 @@ // Define current release (X.Y.Z) & build number // ======================================================================= -#define GUISLICE_VER "0.13.1.5" +#define GUISLICE_VER "0.14.0" #endif // _GUISLICE_VERSION_H_