Bump version

pull/197/head
Hieromon Ikasamo 4 years ago
parent 0469b606f6
commit abd1261c30
  1. 4
      README.md
  2. 2
      library.json
  3. 2
      library.properties
  4. 4
      mkdocs/changelog.md
  5. 2
      src/AutoConnect.cpp
  6. 4
      src/AutoConnect.h
  7. 4
      src/AutoConnectPage.cpp

@ -101,6 +101,10 @@ Full documentation is available on https://Hieromon.github.io/AutoConnect, some
## Change log ## 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 ### [1.1.4] Feb. 14, 2020
- Supports for overriding text of the menu items with user-defined labels. - Supports for overriding text of the menu items with user-defined labels.
- Fixed the compiler warning with experimental WiFi mode of ESP8266. - Fixed the compiler warning with experimental WiFi mode of ESP8266.

@ -25,6 +25,6 @@
"espressif8266", "espressif8266",
"espressif32" "espressif32"
], ],
"version": "1.1.4", "version": "1.1.5",
"license": "MIT" "license": "MIT"
} }

@ -1,5 +1,5 @@
name=AutoConnect name=AutoConnect
version=1.1.4 version=1.1.5
author=Hieromon Ikasamo <hieromon@gmail.com> author=Hieromon Ikasamo <hieromon@gmail.com>
maintainer=Hieromon Ikasamo <hieromon@gmail.com> maintainer=Hieromon Ikasamo <hieromon@gmail.com>
sentence=ESP8266/ESP32 WLAN configuration at runtime with web interface. sentence=ESP8266/ESP32 WLAN configuration at runtime with web interface.

@ -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 #### [1.1.4] Feb. 14, 2020
- Supports for overriding text of the menu items with user-defined labels. - Supports for overriding text of the menu items with user-defined labels.
- Fixed the compiler warning with experimental WiFi mode of ESP8266. - Fixed the compiler warning with experimental WiFi mode of ESP8266.

@ -2,7 +2,7 @@
* AutoConnect class implementation. * AutoConnect class implementation.
* @file AutoConnect.cpp * @file AutoConnect.cpp
* @author hieromon@gmail.com * @author hieromon@gmail.com
* @version 1.1.4 * @version 1.1.5
* @date 2020-03-30 * @date 2020-03-30
* @copyright MIT license. * @copyright MIT license.
*/ */

@ -2,8 +2,8 @@
* Declaration of AutoConnect class and accompanying AutoConnectConfig class. * Declaration of AutoConnect class and accompanying AutoConnectConfig class.
* @file AutoConnect.h * @file AutoConnect.h
* @author hieromon@gmail.com * @author hieromon@gmail.com
* @version 1.1.4 * @version 1.1.5
* @date 2020-03-30 * @date 2020-04-01
* @copyright MIT license. * @copyright MIT license.
*/ */

@ -2,8 +2,8 @@
* AutoConnect portal site web page implementation. * AutoConnect portal site web page implementation.
* @file AutoConnectPage.h * @file AutoConnectPage.h
* @author hieromon@gmail.com * @author hieromon@gmail.com
* @version 1.1.4 * @version 1.1.5
* @date 2020-02-13 * @date 2020-04-01
* @copyright MIT license. * @copyright MIT license.
*/ */

Loading…
Cancel
Save