This repository has been archived by the owner on Feb 4, 2023. It is now read-only.
Releases: khoih-prog/ESPAsync_WiFiManager_Lite
Releases · khoih-prog/ESPAsync_WiFiManager_Lite
v1.10.5 using PROGMEM for strings, default LittleFS for ESP8266 in examples and improve `README.md` so that links can be used in other sites, such as `PIO`
v1.10.5 using PROGMEM for strings, default LittleFS for ESP8266 in examples and improve `README.md` so that links can be used in other sites, such as `PIO`
Latest
Release v1.10.5
- Using PROGMEM for strings in examples. Check Example fixes #32
- Using PROGMEM for HTML strings. Check implement PROGMEM strings, alignment with ESP_WiFiManager_Lite #31
- Default LittleFS for ESP8266 in examples
- Improve
README.md
so that links can be used in other sites, such asPIO
- Sync with
ESP_WiFiManager_Lite
v1.10.5
v1.10.3 to fix compiler error if EEPROM is used or using PIO
Release v1.10.3
- Fix compiler error if EEPROM is used. Check fix compiler error if EEPROM is used #29
- Fix compiler error in PIO. Check Unable to compile basic example for NodeMCU-32s #28
v1.10.2 to add Config Portal scaling support to mobile devices
Release v1.10.2
- Add Config Portal scaling support to mobile devices. Check Mobile scale #26
v1.10.1 to add public methods to load and save dynamic data
Release v1.10.1
- Add public methods to load and save dynamic data. Check added public methods to load and save dynamic data #24
- Bump up to
v1.10.1
to sync with ESP_WiFiManager_Lite
v1.9.1 to add `Captive Portal` using AsyncDNSServer
Release v1.9.1
- Add
Captive Portal
using AsyncDNSServer. Check Captive portal #22 - Cleanup reset code. Check cleanup reset code #23
- Periodical code clean-up
v1.9.0 to fix ESP32 chipID, to remove dependency on `LittleFS_esp32` library to prevent PIO error, etc.
Release v1.9.0
- Fix ESP32 chipID. Check Help for storing variables in memory (non-volatile) #87
- Add ESP32 getChipID() and getChipOUI() functions
- Remove dependency on
LittleFS_esp32
library to prevent PIO error when using new ESP32 core v1.0.6+ - Remove unavailable items from depends field of
library.properties
, such asESP Async WebServer
,ESP AsyncTCP
andAsyncTCP
. Check
v1.8.2 to optimize code by passing by `reference` instead of `value`, to permit optional `Board_Name` in Config Portal, and to add function `isConfigMode()` to signal system is in Config Portal mode
Release v1.8.2
- Optimize code by using passing by
reference
instead of byvalue
- Optional
Board_Name
in Menu. Check option to remove board name from web page #25 - Add function
isConfigMode()
to signal system is in Config Portal mode.
v1.8.1 to add LittleFS support to `ESP32-C3` and to use ESP32-core's LittleFS library instead of Lorol's LITTLEFS library for ESP32 core v2.0.0+
Release v1.8.1
- Add LittleFS support to
ESP32-C3
. - Use
ESP32-core's LittleFS
library instead ofLorol's LITTLEFS
library for ESP32 core v2.0.0+
v1.8.0 to add support to ESP32-S3 (ESP32S3_DEV, ESP32_S3_BOX, UM TINYS3, UM PROS3, UM FEATHERS3, etc.)
Release v1.8.0
- Add support to ESP32-S3 (
ESP32S3_DEV, ESP32_S3_BOX, UM TINYS3, UM PROS3, UM FEATHERS3
, etc.) using ESP32 core, esp32-s3-support branch, v2.0.2+
v1.7.0 to fix ESP8266 bug not easy to connect to Config Portal for ESP8266 core v3.0.0+, to fix the blocking issue in loop(), to add configurable `WIFI_RECON_INTERVAL`
Major Release v1.7.0
- Fix ESP8266 bug not easy to connect to Config Portal for ESP8266 core v3.0.0+
- Fix the blocking issue in loop(). Check retries block the main loop #18
- Configurable
WIFI_RECON_INTERVAL
. Check retries block the main loop #18 - Optimize library code by using
reference-passing
instead ofvalue-passing
- Clean up