Updated a version number

pull/142/head
Hieromon Ikasamo 5 years ago
parent 006cc82bad
commit c986e2946c
  1. 2
      library.json
  2. 2
      library.properties
  3. 5
      src/AutoConnect.cpp
  4. 6
      src/AutoConnect.h
  5. 4
      src/AutoConnectAux.cpp
  6. 8
      src/AutoConnectAux.h

@ -25,6 +25,6 @@
"espressif8266",
"espressif32"
],
"version": "1.1.0",
"version": "1.1.1",
"license": "MIT"
}

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

@ -2,8 +2,8 @@
* AutoConnect class implementation.
* @file AutoConnect.cpp
* @author hieromon@gmail.com
* @version 1.1.0
* @date 2019-10-08
* @version 1.1.1
* @date 2019-10-17
* @copyright MIT license.
*/
@ -60,7 +60,6 @@ void AutoConnect::_initialize(void) {
#endif
_aux = nullptr;
_auxUri = String("");
}
/**

@ -2,8 +2,8 @@
* Declaration of AutoConnect class and accompanying AutoConnectConfig class.
* @file AutoConnect.h
* @author hieromon@gmail.com
* @version 1.1.0
* @date 2019-10-11
* @version 1.1.1
* @date 2019-10-17
* @copyright MIT license.
*/
@ -284,7 +284,7 @@ class AutoConnect {
PageElement* _currentPageElement;
/** Extended pages made up with AutoConnectAux */
AutoConnectAux* _aux = nullptr;
AutoConnectAux* _aux = nullptr; /**< A top of registered AutoConnectAux */
String _auxUri; /**< Last accessed AutoConnectAux */
String _prevUri; /**< Previous generated page uri */
/** Available updater, only reset by AutoConnectUpdate::attach is valid */

@ -2,8 +2,8 @@
* Implementation of AutoConnectAux class.
* @file AutoConnectAuxBasisImpl.h
* @author hieromon@gmail.com
* @version 0.9.10
* @date 2019-06-12
* @version 1.1.1
* @date 2019-10-17
* @copyright MIT license.
*/
#include <algorithm>

@ -2,8 +2,8 @@
* Declaration of AutoConnectAux basic class.
* @file AutoConnectAuxBasis.h
* @author hieromon@gmail.com
* @version 0.9.9
* @date 2019-05-23
* @version 1.1.1
* @date 2019-10-17
* @copyright MIT license.
*/
@ -148,8 +148,8 @@ class AutoConnectAux : public PageBuilder {
bool _menu; /**< Switch for menu displaying */
String _uriStr; /**< uri as String */
AutoConnectElementVT _addonElm; /**< A vector set of AutoConnectElements placed on this auxiliary page */
AutoConnectAux* _next = nullptr; /**< Auxiliary pages chain list */
AutoConnect* _ac = nullptr; /**< Hosted AutoConnect instance */
AutoConnectAux* _next = nullptr; /**< Auxiliary pages chain list */
AutoConnect* _ac = nullptr; /**< Hosted AutoConnect instance */
AuxHandlerFunctionT _handler; /**< User sketch callback function when AutoConnectAux page requested. */
AutoConnectExitOrder_t _order; /**< The order in which callback functions are called. */
PageBuilder::UploadFuncT _uploadHandler; /**< The AutoConnectFile corresponding to current upload */

Loading…
Cancel
Save