This repository has been archived by the owner on Feb 4, 2023. It is now read-only.
Releases: khoih-prog/ESP_WiFiManager
Releases · khoih-prog/ESP_WiFiManager
Major Releases v1.1.0 to add MultiWiFi with auto(Re)connect feature
Major Releases v1.1.0
- Add MultiWiFi feature to auto(Re)connect to the best WiFi at runtime
- Fix bug.
- Completely enhanced examples to use new MultiWiFi feature.
Version v1.0.11 to add CORS feature and fix bug in softAP, autoConnect, resetSettings.
Releases 1.0.11
- Add optional CORS (Cross-Origin Resource Sharing) feature. Thanks to AlesSt. See more in Issue #27: CORS protection fires up with AJAX and Cross Origin Resource Sharing. To use, you must explicitly use
#define USING_CORS_FEATURE true
- Solve issue softAP with custom IP sometimes not working. Thanks to AlesSt. See Issue #26: softAP with custom IP not working and Wifi.softAPConfig() sometimes set the wrong IP address.
- Temporary fix for issue of not clearing WiFi SSID/PW from flash of ESP32. Thanks to AlesSt. See more in Issue #25: API call /r doesnt clear credentials and WiFi.disconnect(true) problem.
- Fix autoConnect() feature to permit autoConnect() to use STA static IP or DHCP IP. Remove from deprecated functi0n list.
- Enhance README.md with more instructions and illustrations.
Version v1.0.10 to add new features and enhance Config Portal GUI
Releases 1.0.10
- Don't need to reinput already working SSID in Config Port to update other parameters, such as StaticIP.
- Disable/Enable StaticIP configuration in Config Portal from sketch. Valid only if DHCP is used.
- Change HTTP_XYZ constants to WM_HTTP_XYZ to avoid conflicts with future releases of ESP32 and ESP8266 cores.
- Add feature to change WiFi AP channel (fixed or random) to avoid conflict in AP-overcrowded environments.
- Enhance Config Portal GUI and get the item out of the bucket list.
- Enhance README.md with more instructions and illustrations.
Version v1.0.9 to fix ESP32 STAstaticIP bug and add enhancements
Releases 1.0.9
- Fix ESP32 STAstaticIP bug.
- Enable changing from DHCP <-> static IP using Config Portal.
- Enable NTP configuration from sketch (USE_ESP_WIFIMANAGER_NTP, USE_CLOUDFLARE_NTP). See Issue #21: CloudFlare link in the default portal.
- Add, enhance examples (fix MDNS for ESP32 examples, add DRD feature).
Version v1.0.8 to fix bug and add LittleFS support for ESP8266
Releases 1.0.8
- Fix setSTAStaticIPConfig issue. See Static Station IP doesn't work
- Add LittleFS support for ESP8266 core 2.7.1+ in examples to replace deprecated SPIFFS.
- Restructure code.
Version v1.0.7 with faster initial connection time and bug fix
Releases 1.0.7
- Use
just-in-time
scanWiFiNetworks() to reduce connection time necessary for battery-operated DeepSleep application. - Fix bug relating SPIFFS in examples :
- ConfigOnSwitchFS
- ConfigPortalParamsOnSwitch (now support ArduinoJson 6.0.0+ as well as 5.13.5-)
- AutoConnectWithFSParameters
- Fix README.
Version v1.0.6
Releases 1.0.6
New in v1.0.6
- Add function getConfigPortalPW()
- Add 4 new complicated examples compatible with ArduinoJson 6.0.0+ :AutoConnect, AutoConnectWithFeedback, AutoConnectWithFeedbackLED and AutoConnectWithFSParameters
Releases 1.0.6-beta
New in v1.0.6-beta
- Add NTP data
- Add support to ArduinoJson 6.0.0+ as well as 5.13.5- to examples
Version v1.0.6-beta
New in v1.0.6-beta
- Add NTP data
- Add support to ArduinoJson 6.0.0+ as well as 5.13.5- to examples
Version v1.0.5 adding configurable static DNS servers' IPs
New in Version v1.0.5
Version v1.0.5 adding configurable static DNS servers' IPs besides static IP, Gateway and Subnet Mask
- Add option to specify static DNS servers, besides static IP, Gateway and Subnet Mask
- Modify and add examples. Enhance README.md
Version v1.0.4 with DHCP hostname and more examples
New in v1.0.4
- Add ESP_WiFiManager DHCP hostname feature
- Modify examples to use latest features. Add example
ESP_FSWebServer
- Enhance
README.md