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", "espressif8266",
"espressif32" "espressif32"
], ],
"version": "1.1.0", "version": "1.1.1",
"license": "MIT" "license": "MIT"
} }

@ -1,5 +1,5 @@
name=AutoConnect name=AutoConnect
version=1.1.0 version=1.1.1
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.

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

@ -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.0 * @version 1.1.1
* @date 2019-10-11 * @date 2019-10-17
* @copyright MIT license. * @copyright MIT license.
*/ */
@ -284,7 +284,7 @@ class AutoConnect {
PageElement* _currentPageElement; PageElement* _currentPageElement;
/** Extended pages made up with AutoConnectAux */ /** Extended pages made up with AutoConnectAux */
AutoConnectAux* _aux = nullptr; AutoConnectAux* _aux = nullptr; /**< A top of registered AutoConnectAux */
String _auxUri; /**< Last accessed AutoConnectAux */ String _auxUri; /**< Last accessed AutoConnectAux */
String _prevUri; /**< Previous generated page uri */ String _prevUri; /**< Previous generated page uri */
/** Available updater, only reset by AutoConnectUpdate::attach is valid */ /** Available updater, only reset by AutoConnectUpdate::attach is valid */

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

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

Loading…
Cancel
Save