Skip to content
This repository has been archived by the owner on Feb 4, 2023. It is now read-only.

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`

30 Jan 01:22
e562b2d
Compare
Choose a tag to compare

Release v1.10.5

  1. Using PROGMEM for strings in examples. Check Example fixes #32
  2. Using PROGMEM for HTML strings. Check implement PROGMEM strings, alignment with ESP_WiFiManager_Lite #31
  3. Default LittleFS for ESP8266 in examples
  4. Improve README.md so that links can be used in other sites, such as PIO
  5. Sync with ESP_WiFiManager_Lite v1.10.5

v1.10.3 to fix compiler error if EEPROM is used or using PIO

19 Jan 20:07
76abc25
Compare
Choose a tag to compare

v1.10.2 to add Config Portal scaling support to mobile devices

15 Jan 18:30
e925a1d
Compare
Choose a tag to compare

Release v1.10.2

  1. 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

13 Jan 01:56
9081614
Compare
Choose a tag to compare

Release v1.10.1

  1. Add public methods to load and save dynamic data. Check added public methods to load and save dynamic data #24
  2. Bump up to v1.10.1 to sync with ESP_WiFiManager_Lite

v1.9.1 to add `Captive Portal` using AsyncDNSServer

28 Dec 19:11
964ba50
Compare
Choose a tag to compare

Release v1.9.1

  1. Add Captive Portal using AsyncDNSServer. Check Captive portal #22
  2. Cleanup reset code. Check cleanup reset code #23
  3. Periodical code clean-up

v1.9.0 to fix ESP32 chipID, to remove dependency on `LittleFS_esp32` library to prevent PIO error, etc.

09 Sep 16:21
930775b
Compare
Choose a tag to compare

Release v1.9.0

  1. Fix ESP32 chipID. Check Help for storing variables in memory (non-volatile) #87
  2. Add ESP32 getChipID() and getChipOUI() functions
  3. Remove dependency on LittleFS_esp32 library to prevent PIO error when using new ESP32 core v1.0.6+
  4. Remove unavailable items from depends field of library.properties, such as ESP Async WebServer,ESP AsyncTCP and AsyncTCP. 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

22 Feb 01:09
1a9b2a9
Compare
Choose a tag to compare

Release v1.8.2

  1. Optimize code by using passing by reference instead of by value
  2. Optional Board_Name in Menu. Check option to remove board name from web page #25
  3. 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+

12 Feb 02:08
cd01a3e
Compare
Choose a tag to compare

Release v1.8.1

  1. Add LittleFS support to ESP32-C3.
  2. Use ESP32-core's LittleFS library instead of Lorol'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.)

11 Feb 03:31
66c8967
Compare
Choose a tag to compare

Release v1.8.0

  1. 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`

09 Jan 19:42
c82cc69
Compare
Choose a tag to compare

Major Release v1.7.0

  1. Fix ESP8266 bug not easy to connect to Config Portal for ESP8266 core v3.0.0+
  2. Fix the blocking issue in loop(). Check retries block the main loop #18
  3. Configurable WIFI_RECON_INTERVAL. Check retries block the main loop #18
  4. Optimize library code by using reference-passing instead of value-passing
  5. Clean up