This repository has been archived by the owner on Feb 4, 2023. It is now read-only.
Releases: khoih-prog/ESPAsync_WiFiManager
Releases · khoih-prog/ESPAsync_WiFiManager
Major Release v1.8.0 to add optional auto-Timezone feature and update examples to show how to use the new TZ feature
Major Releases v1.8.0
- Add auto-Timezone feature with variable
_timezoneName
(e.g.America/New_York
) and function to retrieve TZ (e.g.EST5EDT,M3.2.0,M11.1.0
) to use directly to configure ESP32/ESP8266 timezone. Check How to retrieve timezone? #51 - Store those
_timezoneName
andTZ
in LittleFS or SPIFFS config file. - Using these new timezone feature is optional.
- Add checksum in config file to validate data read from LittleFS or SPIFFS config file.
- Update examples to show how to use the new TZ feature.
Release v1.7.1 to fix captive-portal and Multi-WiFi bugs
Releases v1.7.1
- Fix captive-portal bug if Config Portal AP address is not default 192.168.4.1. Check In AP, DNS server always redirects to 192.168.4.1 no mater what APStaticIP is set to. #58
- Fix Multi-WiFi bug.
Version v1.7.0 to add support to ESP32-C3 (SPIFFS and EEPROM) and to ESP32-S2 (LittleFS and SPIFFS)
Releases v1.7.0
- Add LittleFS and SPIFFS support to new ESP32-S2 boards (Arduino ESP32C3_DEV). Check HOWTO Install esp32 core for ESP32-S2 (Saola, AI-Thinker ESP-12K) and ESP32-C3 boards into Arduino IDE.
- Add EEPROM and SPIFFS support to new ESP32-C3 boards (Arduino ESP32C3_DEV). Check HOWTO Install esp32 core for ESP32-S2 (Saola, AI-Thinker ESP-12K) and ESP32-C3 boards into Arduino IDE.
Releases v1.6.3 to fix dnsServer not closed to free up DNS port 53.
Releases v1.6.3
- Fix dnsServer not closed to free up DNS port 53. Check Allow captive portal to run more than once by closing dnsServer cleanly. #49
- Add
dnsServer can't start
error message.
Release v1.6.2 to fix examples' misleading messages.
Releases v1.6.2
- Fix examples' misleading messages. Check Minor: examples/Async_ESP32_FSWebServer/ wrongly uses FileFS.begin(true) #47
Version v1.6.1 to adapt to esp32 core v1.0.6
Releases v1.6.1
- Modify multiWiFi-related timings to work better with latest esp32 core v1.0.6
Version v1.6.0 to fix WiFi Scanning bug.
Releases v1.6.0
- Fix WiFi Scanning bug introduced in v1.5.0 when working with new esp32 core v1.0.5
Major Releases v1.5.0 to add support to ESP32-S2, be more efficient and multitask friendly
Major Releases v1.5.0
- Add support to ESP32-S2 (ESP32-S2 Saola, AI-Thinker ESP-12K, ESP32S2 Dev Module, UM FeatherS2, UM ProS2, microS2, etc.)
- Add Instructions to install ESP32-S2 core
- Rewrite library code to be more efficient and multitask friendly
Version v1.4.3 to fix examples' bug not saving Static IP in certain cases.
Releases v1.4.3
- Fix examples' bug not saving Static IP in certain cases.
- Add feature to warn if using examples with old library versions
Version 1.4.2 to fix bug not using saved WiFi Credentials after losing all WiFi connections.
Releases v1.4.2
- Fix examples' bug not using saved WiFi Credentials after losing all WiFi connections.
- Fix compiler warnings.