v3.1
v3.1 notes
If you are updating esp32-wifi-manager from a previous clone, please note that you should run a fullclean (i.e. run the command esp.py fullclean or delete your build folder) before compiling your project. If you don't, the linker will throw some errors related to http_server which no longer exists -- see below.
New features
- HTTP server hook to add your own custom pages to the wifi manager http server.
- Access point now automatically shuts down once a connection is established (by default: 60s)
- Added a timer to retry connecting to a lost wifi (by default: 5s)
- Added a max retry count before the access point is triggered (by default: 3 retries)
Changes
- Before saving flash memory a comparison is now done with existing configuration to avoid overwriting the same information.
- http_server.c/h has been renamed to http_app. http_server is already part of the native esp_http_server and this avoids a resolution conflict when including http_app.h.