From 8df115ab4d8bc4f8837c385dcfd4e3788534cfbc Mon Sep 17 00:00:00 2001 From: Bodmer Date: Thu, 22 Feb 2018 22:33:49 +0000 Subject: [PATCH] Raise version --- TFT_eSPI.cpp | 10 +++++----- library.json | 2 +- library.properties | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/TFT_eSPI.cpp b/TFT_eSPI.cpp index 184dbfe..31ab2f5 100644 --- a/TFT_eSPI.cpp +++ b/TFT_eSPI.cpp @@ -1,9 +1,9 @@ /*************************************************** - Arduino TFT graphics library targetted at ESP8266 + Arduino TFT graphics library targeted at ESP8266 and ESP32 based boards. This is a standalone library that contains the - hardware driver, the graphics funtions and the + hardware driver, the graphics functions and the proportional fonts. The larger fonts are Run Length Encoded to reduce their @@ -19,7 +19,7 @@ #include - // SUPPORT_TRANSACTIONS is manadatory for ESP32 so the hal mutex is toggled + // SUPPORT_TRANSACTIONS is mandatory for ESP32 so the hal mutex is toggled #if defined (ESP32) && !defined (SUPPORT_TRANSACTIONS) #define SUPPORT_TRANSACTIONS #endif @@ -206,7 +206,7 @@ void TFT_eSPI::init(void) inTransaction = false; locked = true; - // SUPPORT_TRANSACTIONS is manadatory for ESP32 so the hal mutex is toggled + // SUPPORT_TRANSACTIONS is mandatory for ESP32 so the hal mutex is toggled // so the code here is for ESP8266 only #if !defined (SUPPORT_TRANSACTIONS) && defined (ESP8266) SPI.setBitOrder(MSBFIRST); @@ -2876,7 +2876,7 @@ else SPI.writeBytes((uint8_t*)data,len<<1); ** Description: draw a line between 2 arbitrary points ***************************************************************************************/ // Bresenham's algorithm - thx wikipedia - speed enhanced by Bodmer to use -// an eficient FastH/V Line draw routine for line segments of 2 pixels or more +// an efficient FastH/V Line draw routine for line segments of 2 pixels or more #if defined (RPI_ILI9486_DRIVER) || defined (ESP32) || defined (RPI_WRITE_STROBE) diff --git a/library.json b/library.json index 411480b..2041a92 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "TFT_eSPI", - "version": "0.18.16", + "version": "0.18.17", "keywords": "tft, display, ESP8266, NodeMCU, ESP32, M5Stack, ILI9341, ST7735, ILI9163, S6D02A1, ILI9486", "description": "A TFT SPI graphics library for ESP8266 and ESP32", "repository": diff --git a/library.properties b/library.properties index c28e7ec..e235cd1 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=TFT_eSPI -version=0.18.16 +version=0.18.17 author=Bodmer maintainer=Bodmer sentence=A fast TFT library for ESP8266 processors and the Arduino IDE