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

Latest commit

 

History

History
142 lines (93 loc) · 7 KB

changelog.md

File metadata and controls

142 lines (93 loc) · 7 KB

ESP_WiFiManager_Lite (Light Weight Credentials / WiFiManager for ESP32/ESP8266)

arduino-library-badge GitHub release GitHub contributions welcome GitHub issues

Donate to my libraries using BuyMeACoffee



Table of Contents



Changelog

Release v1.10.5

  1. Using PROGMEM for strings in examples. Check Example fixes #37
  2. Improve README.md so that links can be used in other sites, such as PIO

Release v1.10.4

  1. Using PROGMEM for HTML strings. Check move HTML char* into PROGMEM #35

Release v1.10.3

  1. Fix compiler error if EEPROM is used. Check fix compiler error if EEPROM is used #33

Release v1.10.2

  1. Add Config Portal scaling support to mobile devices. Check Mobile scale #30

Release v1.10.1

  1. Add public methods to load and save dynamic data. Check added public methods to load and save dynamic data #28

Release v1.10.0

  1. Add Captive-Portal feature. Check Captive portal #24
  2. Add option to not USE_LED_BUILTIN for Config-Portal. Check added switch to turn use of builtin LED off #20
  3. Code clean-up

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+

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.

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+

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+

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. Clean up

Release v1.6.0

  1. Auto detect ESP32 core and use either built-in LittleFS or LITTLEFS library.
  2. Fix bug returning IP 255.255.255.255 in core v2.0.0+ when using hostname

Release v1.5.1

  1. Update platform.ini and library.json to use original khoih-prog instead of khoih.prog after PIO fix

Major Release v1.5.0

  1. Enable scan of WiFi networks for selection in Configuration Portal. Check PR for v1.3.0 - Enable scan of WiFi networks #10. Now you can select optional SCAN_WIFI_NETWORKS, MANUAL_SSID_INPUT_ALLOWED to be able to manually input SSID, not only from a scanned SSID lists and MAX_SSID_IN_LIST (from 2-15)
  2. Minor enhancement to not display garbage when data is invalid

Release v1.4.0

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

Release v1.3.0

  1. Fix invalid "blank" Config Data treated as Valid.
  2. Permit optionally inputting one set of WiFi SSID/PWD by using REQUIRE_ONE_SET_SSID_PW == true
  3. Enforce WiFi PWD minimum length of 8 chars
  4. Fix bug where EEPROM_SIZE truncated by DRD/MRD to 512, resulting lost and corrupted data.
  5. Fix crashing bug in serverSendHeaders()

Release v1.2.0

  1. Configurable Customs HTML Headers, including Customs Style, Customs Head Elements, CORS Header.
  2. Fix Config Portal Bug.
  3. Update examples

Release v1.1.0

  1. Add support to ESP32-S2 (ESP32-S2 Saola and AI-Thinker ESP-12K)
  2. Add Instructions to install ESP32-S2 core

Release v1.0.0

  1. Initial release to support ESP32 and ESP8266.