mirror of
https://github.com/HASwitchPlate/openHASP.git
synced 2025-07-28 05:36:37 +00:00
Updata changelog
This commit is contained in:
parent
8b2139d017
commit
0de47adeb0
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
-->
|
-->
|
||||||
|
|
||||||
## v0.6.3-dev
|
## v0.6.3-rc1
|
||||||
|
|
||||||
### Commands
|
### Commands
|
||||||
- Additional `idle` parameters now accept `off`, `short` and `long`
|
- 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 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
|
- 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*...
|
||||||
|
- Fixed a bug that prevented Wifi from connecting to different BSSID (thanks @Braehead)
|
||||||
- Syslog message format fixes and improvements (thanks @geiseri)
|
- Syslog message format fixes and improvements (thanks @geiseri)
|
||||||
|
|
||||||
### Custom component
|
### Custom component
|
||||||
@ -69,8 +70,7 @@
|
|||||||
- Expose the device URL in discovery message and CC
|
- Expose the device URL in discovery message and CC
|
||||||
|
|
||||||
### Architecture
|
### Architecture
|
||||||
- Moved to Tasmota Arduino 2.0.3 with native LittleFS library (thanks @Jason2866)
|
- 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)
|
||||||
- Moved to ESP-IDF 4.4.1 with fixes for FragAttacks CVEs (thanks @nagyrobi)
|
|
||||||
- Add support for ESP32-S2 devices
|
- Add support for ESP32-S2 devices
|
||||||
- ⚠️ **Breaking:** Removed support for ESP8266!
|
- ⚠️ **Breaking:** Removed support for ESP8266!
|
||||||
|
|
||||||
|
@ -67,7 +67,7 @@ build_flags =
|
|||||||
-D HASP_VER_MAJ=0
|
-D HASP_VER_MAJ=0
|
||||||
-D HASP_VER_MIN=6
|
-D HASP_VER_MIN=6
|
||||||
;-D HASP_VER_REV=3
|
;-D HASP_VER_REV=3
|
||||||
-D HASP_VER_REV=3-dev
|
-D HASP_VER_REV=3-rc1
|
||||||
${override.build_flags}
|
${override.build_flags}
|
||||||
|
|
||||||
; -- Shared library dependencies in all environments
|
; -- Shared library dependencies in all environments
|
||||||
|
@ -127,7 +127,7 @@ static inline void gui_init_lvgl()
|
|||||||
// #endif
|
// #endif
|
||||||
|
|
||||||
/* Dynamic VDB allocation */
|
/* 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 lv_color_t* guiVdbBuffer1 = (lv_color_t*)malloc(sizeof(lv_color_t) * guiVDBsize);
|
||||||
|
|
||||||
/* Static VDB allocation */
|
/* Static VDB allocation */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user