From 0de47adeb05438b59a884ea9fba6faa243ac47ea Mon Sep 17 00:00:00 2001 From: fvanroie Date: Fri, 6 May 2022 21:38:50 +0200 Subject: [PATCH] Updata changelog --- CHANGLELOG.md | 6 +++--- platformio.ini | 2 +- src/hasp_gui.cpp | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGLELOG.md b/CHANGLELOG.md index d6b26cd9..f5462e41 100644 --- a/CHANGLELOG.md +++ b/CHANGLELOG.md @@ -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! diff --git a/platformio.ini b/platformio.ini index 1a168c21..20ea4686 100644 --- a/platformio.ini +++ b/platformio.ini @@ -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 diff --git a/src/hasp_gui.cpp b/src/hasp_gui.cpp index 306c140b..9295bc5a 100644 --- a/src/hasp_gui.cpp +++ b/src/hasp_gui.cpp @@ -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 */