You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 4, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+73-42Lines changed: 73 additions & 42 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,7 @@
13
13
14
14
*[Why do we need this ESPAsync_WiFiManager library](#why-do-we-need-this-async-espasync_wifimanager-library)
15
15
*[Changelog](#changelog)
16
+
*[Releases v1.4.2](#releases-v142)
16
17
*[Releases v1.4.1](#releases-v141)
17
18
*[Major Releases v1.4.0](#major-releases-v140)
18
19
*[Releases v1.3.0](#releases-v130)
@@ -158,6 +159,11 @@ To appreciate the power of the [ESPAsyncWebServer](https://github.com/me-no-dev/
158
159
159
160
## Changelog
160
161
162
+
### Releases v1.4.2
163
+
164
+
1. Fix examples' bug not using saved WiFi Credentials after losing all WiFi connections.
165
+
2. Fix compiler warnings.
166
+
161
167
### Releases v1.4.1
162
168
163
169
1. Fix bug.
@@ -236,7 +242,7 @@ Thanks to this [ESPAsync_WiFiManager library](https://github.com/khoih-prog/ESPA
236
242
4.[`ESPAsyncWebServer v1.2.3+`](https://github.com/me-no-dev/ESPAsyncWebServer) for all ESP32/ESP8266-based boards.
237
243
5.[`ESPAsyncTCP v1.2.2+`](https://github.com/me-no-dev/ESPAsyncTCP) for ESP8266-based boards.
238
244
6.[`AsyncTCP v1.1.1+`](https://github.com/me-no-dev/AsyncTCP) for ESP32-based boards
239
-
7.[`ESP_DoubleResetDetector v1.1.0+`](https://github.com/khoih-prog/ESP_DoubleResetDetector) if using DRD feature. To install, check [](https://www.ardu-badge.com/ESP_DoubleResetDetector). Use v1.1.0+ if using LittleFS for EP32.
245
+
7.[`ESP_DoubleResetDetector v1.1.1+`](https://github.com/khoih-prog/ESP_DoubleResetDetector) if using DRD feature. To install, check [](https://www.ardu-badge.com/ESP_DoubleResetDetector). Use v1.1.0+ if using LittleFS for EP32.
240
246
8.[`LittleFS_esp32 v1.0.5+`](https://github.com/lorol/LITTLEFS) for ESP32-based boards using LittleFS.
241
247
242
248
---
@@ -1738,7 +1744,7 @@ void loop()
1738
1744
// is configuration portal requested?
1739
1745
if ((digitalRead(TRIGGER_PIN) == LOW) || (digitalRead(TRIGGER_PIN2) == LOW))
@@ -3353,8 +3376,8 @@ This is terminal debug output when running [Async_ConfigOnDoubleReset](examples/
3353
3376
3354
3377
```cpp
3355
3378
Starting Async_ConfigOnDoubleReset with DoubleResetDetect using SPIFFS on ESP32_DEV
3356
-
ESPAsync_WiFiManager v1.4.1
3357
-
ESP_DoubleResetDetector Version v1.1.0
3379
+
ESPAsync_WiFiManager v1.4.2
3380
+
ESP_DoubleResetDetector v1.1.1
3358
3381
[WM] RFC925 Hostname = ConfigOnDoubleReset
3359
3382
[WM] setSTAStaticIPConfig for USE_CONFIGURABLE_DNS
3360
3383
[WM] Set CORS Header to : Your Access-Control-Allow-Origin
@@ -3412,8 +3435,8 @@ This is terminal debug output when running [Async_ConfigOnDoubleReset](examples/
3412
3435
3413
3436
```cpp
3414
3437
Starting Async_ConfigOnDoubleReset with DoubleResetDetect using LittleFS on ESP8266_NODEMCU
3415
-
ESPAsync_WiFiManager v1.4.1
3416
-
ESP_DoubleResetDetector Version v1.1.0
3438
+
ESPAsync_WiFiManager v1.4.2
3439
+
ESP_DoubleResetDetector v1.1.1
3417
3440
[WM] RFC925 Hostname = ConfigOnDoubleReset
3418
3441
[WM] setSTAStaticIPConfig for USE_CONFIGURABLE_DNS
3419
3442
[WM] Set CORS Header to : Your Access-Control-Allow-Origin
@@ -3472,8 +3495,8 @@ This is terminal debug output when running [Async_ESP_FSWebServer_DRD](examples/
3472
3495
3473
3496
```cpp
3474
3497
Starting Async_ESP_FSWebServer_DRD using LittleFS on ESP8266_NODEMCU
3475
-
ESPAsync_WiFiManager v1.4.1
3476
-
ESP_DoubleResetDetector Version v1.1.0
3498
+
ESPAsync_WiFiManager v1.4.2
3499
+
ESP_DoubleResetDetector v1.1.1
3477
3500
Opening / directory
3478
3501
FS File: CanadaFlag_1.png, size: 40.25KB
3479
3502
FS File: CanadaFlag_2.png, size: 8.12KB
@@ -3550,8 +3573,8 @@ This is terminal debug output when running [Async_ESP32_FSWebServer_DRD](example
3550
3573
3551
3574
```
3552
3575
Starting Async_ESP32_FSWebServer_DRD using LittleFS on ESP32_DEV
3553
-
ESPAsync_WiFiManager v1.4.1
3554
-
ESP_DoubleResetDetector Version v1.1.0
3576
+
ESPAsync_WiFiManager v1.4.2
3577
+
ESP_DoubleResetDetector v1.1.1
3555
3578
FS File: /CanadaFlag_1.png, size: 40.25KB
3556
3579
FS File: /CanadaFlag_2.png, size: 8.12KB
3557
3580
FS File: /CanadaFlag_3.jpg, size: 10.89KB
@@ -3690,6 +3713,11 @@ Submit issues to: [ESPAsync_WiFiManager issues](https://github.com/khoih-prog/ES
3690
3713
3691
3714
## Releases
3692
3715
3716
+
### Releases v1.4.2
3717
+
3718
+
1. Fix examples' bug not using saved WiFi Credentials after losing all WiFi connections.
3719
+
2. Fix compiler warnings.
3720
+
3693
3721
### Releases v1.4.1
3694
3722
3695
3723
1. Fix bug.
@@ -3763,6 +3791,7 @@ to use the better **asynchronous** [ESPAsyncWebServer](https://github.com/me-no-
3763
3791
6. Thanks to [Vague Rabbit](https://github.com/thewhiterabbit) for requesting, collarborating in creating the [**HOWTO Add Dynamic Parameters**](#howto-add-dynamic-parameters).
3764
3792
7. Thanks to [krupis](https://github.com/krupis) for reporting [ESP32 static IP not saved after restarting the device](https://github.com/khoih-prog/ESPAsync_WiFiManager/issues/19) bug which is fixed in v1.4.0.
3765
3793
8. Thanks to [Roshan](https://github.com/solroshan) to report the issue in [Error esp_littlefs.c 'utime_p'](https://github.com/khoih-prog/ESPAsync_WiFiManager/issues/28) to fix PIO error in using ESP32 LittleFS with old [`LittleFS_esp32 v1.0`](https://github.com/lorol/LITTLEFS)
3794
+
9. Thanks to [Manuel Capilla](https://github.com/molillo) for reporting [ESP8266 Clear SSID and Pass](https://github.com/khoih-prog/ESPAsync_WiFiManager/issues/33) bug which is fixed and leading to v1.4.2.
3766
3795
3767
3796
<table>
3768
3797
<tr>
@@ -3778,6 +3807,8 @@ to use the better **asynchronous** [ESPAsyncWebServer](https://github.com/me-no-
0 commit comments