From 4e1e9c44569445678e73779c164eeeff6ff74796 Mon Sep 17 00:00:00 2001 From: Hieromon Ikasamo Date: Sun, 18 Aug 2019 15:07:09 +0900 Subject: [PATCH] Fixed Fixed missing captive portal notifications (issue #85) --- README.md | 3 +++ mkdocs/apiconfig.md | 4 ++-- mkdocs/menu.md | 2 +- src/AutoConnectDefs.h | 10 ++++++---- 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 1e11b33..e88bf5c 100644 --- a/README.md +++ b/README.md @@ -96,6 +96,9 @@ Full documentation is available on https://Hieromon.github.io/AutoConnect, some ## Change log +### [0.9.12] Aug. 18, 2019 +- Fixed missing captive portal notifications on the newer mobile OS client. As a result of this fix, the SoftAP default IP address and gateway have been changed to **172.217.28.1**. (issue #85) + ### [0.9.11] July 13, 2019 - Supports new element as AutoConnectSytle that can insert the custom CSS into AutoConnectAux page. (PR#96) - Supports that `
` tags can now be added to each element. (PR #95) diff --git a/mkdocs/apiconfig.md b/mkdocs/apiconfig.md index 6db3a69..b7f8f63 100644 --- a/mkdocs/apiconfig.md +++ b/mkdocs/apiconfig.md @@ -37,7 +37,7 @@ SoftAP's SSID. Sets IP address for Soft AP in captive portal. When AutoConnect fails the initial WiFi.begin, it starts the captive portal with the IP address specified this.
**Type**
-
IPAddressThe default value is **192.168.244.1**
+
IPAddressThe default value is **172.217.28.1**
### autoReconnect @@ -147,7 +147,7 @@ Set secondary DNS server address when using static IP address. Sets gateway address for Soft AP in captive portal. When AutoConnect fails the initial WiFi.begin, it starts the captive portal with the IP address specified this.
**Type**
-
IPAddressThe default value is **192.168.244.1**
+
IPAddressThe default value is **172.217.28.1**
### hidden diff --git a/mkdocs/menu.md b/mkdocs/menu.md index 5851450..ed40d93 100644 --- a/mkdocs/menu.md +++ b/mkdocs/menu.md @@ -3,7 +3,7 @@ ## Where the from -The AutoConnect menu appears when you access the **AutoConnect root path**. It is assigned "**/_ac**" located on the *local IP address* of ESP8266/ESP32 module by default. This location can be changed in the sketch. The following screen will appear at access to `http://{localIP}/_ac` as the root path. This is the statistics of the current WiFi connection. You can access the menu from the here, to invoke it tap at right on top. (e.g. `http://192.168.244.1/_ac` for SoftAP mode.) +The AutoConnect menu appears when you access the **AutoConnect root path**. It is assigned "**/_ac**" located on the *local IP address* of ESP8266/ESP32 module by default. This location can be changed in the sketch. The following screen will appear at access to `http://{localIP}/_ac` as the root path. This is the statistics of the current WiFi connection. You can access the menu from the here, to invoke it tap at right on top. (e.g. `http://172.217.28.1/_ac` for SoftAP mode.) diff --git a/src/AutoConnectDefs.h b/src/AutoConnectDefs.h index ab78898..e0e91dc 100644 --- a/src/AutoConnectDefs.h +++ b/src/AutoConnectDefs.h @@ -2,8 +2,8 @@ * Predefined AutoConnect configuration parameters. * @file AutoConnectDefs.h * @author hieromon@gmail.com - * @version 0.9.11 - * @date 2019-07-08 + * @version 0.9.12 + * @date 2019-08-18 * @copyright MIT license. */ @@ -45,10 +45,12 @@ #endif // !AUTOCONNECT_PSK #ifndef AUTOCONNECT_AP_IP -#define AUTOCONNECT_AP_IP 0x01F4A8C0 //*< 192.168.244.1 */ +// #define AUTOCONNECT_AP_IP 0x01F4A8C0 //*< 192.168.244.1 */ +#define AUTOCONNECT_AP_IP 0x011CD9AC //*< 172.217.28.1 */ #endif // !AUTOCONNECT_AP_IP #ifndef AUTOCONNECT_AP_GW -#define AUTOCONNECT_AP_GW 0x01F4A8C0 //*< 192.168.244.1 */ +// #define AUTOCONNECT_AP_GW 0x01F4A8C0 //*< 192.168.244.1 */ +#define AUTOCONNECT_AP_GW 0x011CD9AC //*< 172.217.28.1 */ #endif // !AUTOCONNECT_AP_GW #ifndef AUTOCONNECT_AP_NM #define AUTOCONNECT_AP_NM 0x00FFFFFF //*< 255.255.255.0 */