Skip to content

Commit

Permalink
Fix typo and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
DTTerastar committed Sep 6, 2022
1 parent 1073cb3 commit d378219
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "AsyncWiFiSettings",
"version": "1.0.4",
"version": "1.0.5",
"keywords": "esp32, wifi",
"description": "WiFi Manager for the ESP32 and ESP8266 Arduino environments",
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=AsyncWiFiSettings
version=1.0.4
version=1.0.5
author=DTTerastasr,Juerd Waalboer,Pwuts
maintainer=DTTerastasr
sentence=WiFi configuration manager for the ESP32 platforms.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "AsyncWiFiSettings",
"version": "1.0.4",
"version": "1.0.5",
"description": "<p align=center> <img alt=\"Screenshot of basic example\" src=\"screenshots/basic-example.png\" width=\"30%\"> <img alt=\"Screenshot of advanced example\" src=\"screenshots/advanced-example.png\" width=\"30%\"> <img alt=\"Screenshot of everything\" src=\"screenshots/full.png\" width=\"30%\"> </p>",
"main": "index.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion src/AsyncWiFiSettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ bool AsyncWiFiSettingsClass::connect(bool portal, int wait_seconds) {
}

if (status != WL_CONNECTED) {
Serial.printf(" failed (status=%d\n).", status);
Serial.printf(" failed (status=%d).\n", status);
if (onFailure) onFailure();
if (portal) this->portal();
return false;
Expand Down

0 comments on commit d378219

Please sign in to comment.