This commit is contained in:
e2002
2023-03-05 12:57:34 +03:00
parent 834decd483
commit 85002490ed
3 changed files with 5 additions and 2 deletions

View File

@@ -222,6 +222,9 @@ Work is in progress...
--- ---
## Version history ## Version history
#### v0.9.001
- fixed compilation error netserver.cpp:63:28 for some configurations
#### v0.9.000 #### v0.9.000
- added WEB Board Uploader. ESP32 Filesystem Uploader is no longer needed, the initial setup can be done in the browser. (see [wiki](https://github.com/e2002/yoradio/wiki/WEB-Board-Uploader) for more info) - added WEB Board Uploader. ESP32 Filesystem Uploader is no longer needed, the initial setup can be done in the browser. (see [wiki](https://github.com/e2002/yoradio/wiki/WEB-Board-Uploader) for more info)
- fixed error getting weather for some locations - fixed error getting weather for some locations

View File

@@ -60,7 +60,7 @@ bool NetServer::begin() {
if(request->arg("ssid")!="" && request->arg("pass")!=""){ if(request->arg("ssid")!="" && request->arg("pass")!=""){
char buf[BUFLEN]; char buf[BUFLEN];
memset(buf, 0, BUFLEN); memset(buf, 0, BUFLEN);
snprintf(buf, BUFLEN, "%s\t%s", request->arg("ssid"), request->arg("pass")); snprintf(buf, BUFLEN, "%s\t%s", request->arg("ssid").c_str(), request->arg("pass").c_str());
request->redirect("/"); request->redirect("/");
config.saveWifiFromNextion(buf); config.saveWifiFromNextion(buf);
return; return;

View File

@@ -1,7 +1,7 @@
#ifndef options_h #ifndef options_h
#define options_h #define options_h
#define YOVERSION "0.9.000" #define YOVERSION "0.9.001"
/******************************************************* /*******************************************************
DO NOT EDIT THIS FILE. DO NOT EDIT THIS FILE.