Updata changelog

This commit is contained in:
fvanroie 2022-05-06 21:38:50 +02:00
parent 8b2139d017
commit 0de47adeb0
3 changed files with 5 additions and 5 deletions

View File

@ -17,7 +17,7 @@
-->
## v0.6.3-dev
## v0.6.3-rc1
### Commands
- Additional `idle` parameters now accept `off`, `short` and `long`
@ -62,6 +62,7 @@
- Fix screen dimensions in `statusupdate` message, taking into account current orientation (thanks @kquinsland)
- 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 a bug that prevented Wifi from connecting to different BSSID (thanks @Braehead)
- Syslog message format fixes and improvements (thanks @geiseri)
### Custom component
@ -69,8 +70,7 @@
- Expose the device URL in discovery message and CC
### Architecture
- Moved to Tasmota Arduino 2.0.3 with native LittleFS library (thanks @Jason2866)
- Moved to ESP-IDF 4.4.1 with fixes for FragAttacks CVEs (thanks @nagyrobi)
- Moved to Tasmota Arduino 2.0.3 with native LittleFS library (thanks @Jason2866) and ESP-IDF 4.4.1 fixes for FragAttacks CVEs (thanks @nagyrobi)
- Add support for ESP32-S2 devices
- ⚠️ **Breaking:** Removed support for ESP8266!

View File

@ -67,7 +67,7 @@ build_flags =
-D HASP_VER_MAJ=0
-D HASP_VER_MIN=6
;-D HASP_VER_REV=3
-D HASP_VER_REV=3-dev
-D HASP_VER_REV=3-rc1
${override.build_flags}
; -- Shared library dependencies in all environments

View File

@ -127,7 +127,7 @@ static inline void gui_init_lvgl()
// #endif
/* Dynamic VDB allocation */
const size_t guiVDBsize = LV_VDB_SIZE / 2;
const size_t guiVDBsize = LV_VDB_SIZE / sizeof(lv_color_t);
static lv_color_t* guiVdbBuffer1 = (lv_color_t*)malloc(sizeof(lv_color_t) * guiVDBsize);
/* Static VDB allocation */