Update libraries

This commit is contained in:
fvanroie 2022-04-12 04:53:56 +02:00
parent 7629cd5d4e
commit 289c23444c
5 changed files with 13 additions and 13 deletions

View File

@ -20,7 +20,7 @@
## v0.6.3 ## v0.6.3
### Commands ### Commands
- Updates `idle` parameters to accept `off`, `short` and `long` - Additional `idle` parameters now accept `off`, `short` and `long`
- Add `sensors` command to trigger the sensors state message - Add `sensors` command to trigger the sensors state message
- Run `/boot.cmd` when the plate is (re)booted and the script exists - Run `/boot.cmd` when the plate is (re)booted and the script exists
@ -34,7 +34,7 @@
- Updated to modern responsive design - Updated to modern responsive design
- Add `/api/*/` endpoints for `info/` and `config/*/` - Add `/api/*/` endpoints for `info/` and `config/*/`
- Allow for a customizible `vars.css`, `style.css`, `script.js` and `edit.htm` - Allow for a customizible `vars.css`, `style.css`, `script.js` and `edit.htm`
- Display info message when the configuration is changed and a reboot is needed - Display a message when the configuration is changed and a reboot is needed
- Add checkbox for backlight inversion to Display settings (thanks @wolffman122) - Add checkbox for backlight inversion to Display settings (thanks @wolffman122)
- Add checkbox to toggle ANSI codes (thanks @geiseri) - Add checkbox to toggle ANSI codes (thanks @geiseri)
@ -56,9 +56,9 @@
- Fix a bug in `dropdownlist` were `close` method performed `open` instead (thanks @htvekov) - Fix a bug in `dropdownlist` were `close` method performed `open` instead (thanks @htvekov)
- Fix `src` bug in `img` objects that could corrupt images sent over http (thanks @htvekov) - Fix `src` bug in `img` objects that could corrupt images sent over http (thanks @htvekov)
- Fix screen dimensions in `statusupdate` message, taking into account current orientation (thanks @kquinsland) - Fix screen dimensions in `statusupdate` message, taking into account current orientation (thanks @kquinsland)
- Fix syslog message format (thanks @geiseri)
- Fix for HTTP password that could be overwritten by 8 asterisks when it was not changed in the web UI - Fix for HTTP password that could be overwritten by 8 asterisks when it was not changed in the web UI
- Fixed MQTT hostname limit (again) - Fixed MQTT hostname limit *again*...
- Syslog message format fixes and improvements (thanks @geiseri)
### Custom component ### Custom component
- Expose `antiburn` for the CC (thanks @dgomes) - Expose `antiburn` for the CC (thanks @dgomes)
@ -70,7 +70,7 @@
- Add support for ESP32-S2 - Add support for ESP32-S2
- ⚠️ **Breaking:** Removed support for ESP8266! - ⚠️ **Breaking:** Removed support for ESP8266!
Updated libraries to ArduinoJson 6.19.3, ArduinoStreamUtils 1.6.2, TFT_eSPI 2.4.42, LovyanGFX 0.4.15 and Adafruit STMPE610 1.1.4 Updated libraries to ArduinoJson 6.19.4, ArduinoStreamUtils 1.6.2, AceButton 1.9.2, TFT_eSPI 2.4.42, LovyanGFX 0.4.15 and Adafruit STMPE610 1.1.4
## v0.6.2 ## v0.6.2

View File

@ -74,8 +74,8 @@ build_flags =
; -- Shared library dependencies in all environments ; -- Shared library dependencies in all environments
; Warning : don't put comments after github links => causes infinite download loop ; Warning : don't put comments after github links => causes infinite download loop
lib_deps = lib_deps =
bxparks/AceButton@^1.9.1 ; GPIO button library bxparks/AceButton@^1.9.2 ; GPIO button library
bblanchon/ArduinoJson@^6.19.3 ; Json(l) parser bblanchon/ArduinoJson@^6.19..4 ; Json(l) parser
bblanchon/StreamUtils@^1.6.2 ; for EEPromStream and BufferedTelnetClient bblanchon/StreamUtils@^1.6.2 ; for EEPromStream and BufferedTelnetClient
knolleary/PubSubClient@^2.8.0 ; MQTT client knolleary/PubSubClient@^2.8.0 ; MQTT client
;git+https://github.com/fvanroie/ConsoleInput.git ;git+https://github.com/fvanroie/ConsoleInput.git
@ -99,11 +99,11 @@ src_filter = +<*> -<.git/> -<examples/> -<test/> -<tests/> -<stm32f4/> -<lv_font
[lovyangfx] [lovyangfx]
lib_deps = lib_deps =
lovyan03/LovyanGFX @ ^0.4.15 lovyan03/LovyanGFX@^0.4.15
[tft_espi] [tft_espi]
lib_deps = lib_deps =
bodmer/TFT_eSPI @ 2.4.42 bodmer/TFT_eSPI@2.4.42
[goodix] [goodix]
lib_deps = lib_deps =
@ -119,4 +119,4 @@ lib_deps =
[stmpe610] [stmpe610]
lib_deps = lib_deps =
adafruit/Adafruit STMPE610 @ ^1.1.4 adafruit/Adafruit STMPE610@^1.1.4

View File

@ -67,7 +67,7 @@ lib_deps =
; lv_drivers@~7.9.1 ; lv_drivers@~7.9.1
;lv_drivers=https://github.com/littlevgl/lv_drivers/archive/7d71907c1d6b02797d066f50984b866e080ebeed.zip ;lv_drivers=https://github.com/littlevgl/lv_drivers/archive/7d71907c1d6b02797d066f50984b866e080ebeed.zip
https://github.com/eclipse/paho.mqtt.c.git https://github.com/eclipse/paho.mqtt.c.git
bblanchon/ArduinoJson@^6.19.3 ; Json(l) parser bblanchon/ArduinoJson@^6.19..4 ; Json(l) parser
https://github.com/fvanroie/lv_drivers https://github.com/fvanroie/lv_drivers
git+https://github.com/lvgl/lv_lib_png.git#release/v7 git+https://github.com/lvgl/lv_lib_png.git#release/v7

View File

@ -61,7 +61,7 @@ lib_deps =
;lv_drivers@~7.9.0 ;lv_drivers@~7.9.0
;lv_drivers=https://github.com/littlevgl/lv_drivers/archive/7d71907c1d6b02797d066f50984b866e080ebeed.zip ;lv_drivers=https://github.com/littlevgl/lv_drivers/archive/7d71907c1d6b02797d066f50984b866e080ebeed.zip
https://github.com/eclipse/paho.mqtt.c.git https://github.com/eclipse/paho.mqtt.c.git
bblanchon/ArduinoJson@^6.19.3 ; Json(l) parser bblanchon/ArduinoJson@^6.19..4 ; Json(l) parser
https://github.com/fvanroie/lv_drivers https://github.com/fvanroie/lv_drivers
lib_ignore = lib_ignore =

View File

@ -92,7 +92,7 @@ lib_deps =
;lv_drivers@~7.9.0 ;lv_drivers@~7.9.0
;lv_drivers=https://github.com/littlevgl/lv_drivers/archive/7d71907c1d6b02797d066f50984b866e080ebeed.zip ;lv_drivers=https://github.com/littlevgl/lv_drivers/archive/7d71907c1d6b02797d066f50984b866e080ebeed.zip
https://github.com/eclipse/paho.mqtt.c.git https://github.com/eclipse/paho.mqtt.c.git
bblanchon/ArduinoJson@^6.19.3 ; Json(l) parser bblanchon/ArduinoJson@^6.19..4 ; Json(l) parser
https://github.com/fvanroie/lv_drivers https://github.com/fvanroie/lv_drivers
lib_ignore = lib_ignore =