diff --git a/README.md b/README.md index 4c006bf..83779c3 100644 --- a/README.md +++ b/README.md @@ -101,6 +101,10 @@ Full documentation is available on https://Hieromon.github.io/AutoConnect, some ## Change log +### [1.1.5] Apr. 1, 2020 +- Supports AutoConnect menu configuration. +- Changed the bootUri behavior to be an automatic pop-up at the captive portal. (PR #181) + ### [1.1.4] Feb. 14, 2020 - Supports for overriding text of the menu items with user-defined labels. - Fixed the compiler warning with experimental WiFi mode of ESP8266. diff --git a/library.json b/library.json index 90b150c..281a516 100644 --- a/library.json +++ b/library.json @@ -25,6 +25,6 @@ "espressif8266", "espressif32" ], - "version": "1.1.4", + "version": "1.1.5", "license": "MIT" } diff --git a/library.properties b/library.properties index 2ac38c4..0403fc1 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=AutoConnect -version=1.1.4 +version=1.1.5 author=Hieromon Ikasamo maintainer=Hieromon Ikasamo sentence=ESP8266/ESP32 WLAN configuration at runtime with web interface. diff --git a/mkdocs/changelog.md b/mkdocs/changelog.md index 856e22c..7ea17b1 100644 --- a/mkdocs/changelog.md +++ b/mkdocs/changelog.md @@ -1,3 +1,7 @@ +#### [1.1.5] Apr. 1, 2020 +- Supports AutoConnect menu configuration. +- Changed the bootUri behavior to be an automatic pop-up at the captive portal. + #### [1.1.4] Feb. 14, 2020 - Supports for overriding text of the menu items with user-defined labels. - Fixed the compiler warning with experimental WiFi mode of ESP8266. diff --git a/src/AutoConnect.cpp b/src/AutoConnect.cpp index 4fb90fb..feb832c 100644 --- a/src/AutoConnect.cpp +++ b/src/AutoConnect.cpp @@ -2,7 +2,7 @@ * AutoConnect class implementation. * @file AutoConnect.cpp * @author hieromon@gmail.com - * @version 1.1.4 + * @version 1.1.5 * @date 2020-03-30 * @copyright MIT license. */ diff --git a/src/AutoConnect.h b/src/AutoConnect.h index 11b5668..42a898f 100644 --- a/src/AutoConnect.h +++ b/src/AutoConnect.h @@ -2,8 +2,8 @@ * Declaration of AutoConnect class and accompanying AutoConnectConfig class. * @file AutoConnect.h * @author hieromon@gmail.com - * @version 1.1.4 - * @date 2020-03-30 + * @version 1.1.5 + * @date 2020-04-01 * @copyright MIT license. */ diff --git a/src/AutoConnectPage.cpp b/src/AutoConnectPage.cpp index 7436646..682aa02 100644 --- a/src/AutoConnectPage.cpp +++ b/src/AutoConnectPage.cpp @@ -2,8 +2,8 @@ * AutoConnect portal site web page implementation. * @file AutoConnectPage.h * @author hieromon@gmail.com - * @version 1.1.4 - * @date 2020-02-13 + * @version 1.1.5 + * @date 2020-04-01 * @copyright MIT license. */