Skip to content
This repository has been archived by the owner on Feb 4, 2023. It is now read-only.

Commit

Permalink
v1.7.5 to update PIO
Browse files Browse the repository at this point in the history
### Releases v1.7.5

1. Update `platform.ini` and `library.json` to use original `khoih-prog` instead of `khoih.prog` after PIO fix
  • Loading branch information
khoih-prog authored Oct 11, 2021
1 parent 63775e4 commit d97b5f1
Show file tree
Hide file tree
Showing 15 changed files with 66 additions and 233 deletions.
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ If you don't find anything, please [open a new issue](https://github.com/khoih-p

Please ensure to specify the following:

* Arduino IDE version (e.g. 1.8.15) or Platform.io version
* `ESP8266` or `ESP32` Core Version (e.g. ESP8266 core v3.0.2 or ESP32 v1.0.6)
* Arduino IDE version (e.g. 1.8.16) or Platform.io version
* `ESP8266` or `ESP32` Core Version (e.g. ESP8266 core v3.0.2 or ESP32 v2.0.0)
* Contextual information (e.g. what you were trying to achieve)
* Simplest possible steps to reproduce
* Anything that might be relevant in your opinion, such as:
Expand All @@ -26,10 +26,10 @@ Please ensure to specify the following:
### Example

```
Arduino IDE version: 1.8.15
Arduino IDE version: 1.8.16
ESP8266 Core Version 3.0.2
OS: Ubuntu 20.04 LTS
Linux xy-Inspiron-3593 5.4.0-80-generic #90-Ubuntu SMP Fri Jul 9 22:49:44 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
Linux Inspiron 5.4.0-86-generic #97-Ubuntu SMP Fri Sep 17 19:19:40 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
Context:
I encountered an endless loop while trying to connect to Local WiFi.
Expand Down
241 changes: 30 additions & 211 deletions README.md

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
## Table of Contents

* [Changelog](#changelog)
* [Releases v1.7.5](#releases-v175)
* [Releases v1.7.4](#releases-v174)
* [Releases v1.7.3](#releases-v173)
* [Releases v1.7.2](#releases-v172)
Expand Down Expand Up @@ -45,6 +46,10 @@

## Changelog

### Releases v1.7.5

1. Update `platform.ini` and `library.json` to use original `khoih-prog` instead of `khoih.prog` after PIO fix

### Releases v1.7.4

1. Add WiFi scanning of hidden SSIDs. Check [Add support for Wifi hidden SSID scanning. #66](https://github.com/khoih-prog/ESP_WiFiManager/pull/66)
Expand Down
6 changes: 3 additions & 3 deletions library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ESP_WifiManager",
"version": "1.7.4",
"version": "1.7.5",
"keywords": "wifi, wi-fi, MultiWiFi, multi-wifi, WiFiManager, esp8266, esp32, esp32-s2, esp32-c3, Communication, iot, credentials, persistent, config-portal, DoubleReset, MultiReset, DoubleResetDetector, littlefs, spiffs, eeprom, dns-server",
"description": "Library to configure MultiWiFi/Credentials at runtime for ESP32 (including ESP32-S2 and ESP32-C3) and ESP8266 boards. With enhanced GUI and fallback web ConfigPortal. This Library is used for configuring ESP32 (including ESP32-S2 and ESP32-C3) and ESP8266 MultiWiFi Credentials at runtime. You can also specify static DNS servers, personalized HostName, DHCP HostName, static AP and STA IP, fixed or random AP channel. Now with MultiWiFi auto(Re)connect, configurable CORS Header and auto-Timezone features.",
"authors":
Expand All @@ -25,9 +25,9 @@
"dependencies":
[
{
"owner": "khoih.prog",
"owner": "khoih-prog",
"name": "ESP_DoubleResetDetector",
"version": ">=1.1.1",
"version": ">=1.1.2",
"platforms": ["espressif8266", "espressif32"]
},
{
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=ESP_WiFiManager
version=1.7.4
version=1.7.5
author=Khoi Hoang
maintainer=Khoi Hoang <[email protected]>
license=MIT
Expand Down
4 changes: 2 additions & 2 deletions platformio/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ lib_compat_mode = strict

lib_deps =
; PlatformIO 4.x
; ESP_DoubleResetDetector@>=1.1.1
; ESP_DoubleResetDetector@>=1.1.2
; LittleFS_esp32@>=1.0.6
; PlatformIO 5.x
khoih.prog/ESP_DoubleResetDetector@>=1.1.1
khoih-prog/ESP_DoubleResetDetector@>=1.1.2
; lorol/LittleFS_esp32@>=1.0.6

build_flags =
Expand Down
3 changes: 2 additions & 1 deletion src/ESP_WiFiManager-Impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/ESP_WiFiManager
Licensed under MIT license
Version: 1.7.4
Version: 1.7.5
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand Down Expand Up @@ -51,6 +51,7 @@
1.7.2 K Hoang 08/05/2021 Fix warnings with ESP8266 core v3.0.0
1.7.3 K Hoang 29/07/2021 Fix MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
1.7.4 K Hoang 13/08/2021 Add WiFi scanning of hidden SSIDs
1.7.5 K Hoang 10/10/2021 Update `platform.ini` and `library.json`
*****************************************************************************************************************************/

#pragma once
Expand Down
5 changes: 3 additions & 2 deletions src/ESP_WiFiManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/ESP_WiFiManager
Licensed under MIT license
Version: 1.7.4
Version: 1.7.5
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand Down Expand Up @@ -51,6 +51,7 @@
1.7.2 K Hoang 08/05/2021 Fix warnings with ESP8266 core v3.0.0
1.7.3 K Hoang 29/07/2021 Fix MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
1.7.4 K Hoang 13/08/2021 Add WiFi scanning of hidden SSIDs
1.7.5 K Hoang 10/10/2021 Update `platform.ini` and `library.json`
*****************************************************************************************************************************/

#pragma once
Expand All @@ -72,7 +73,7 @@
#define USING_ESP32_C3 true
#endif

#define ESP_WIFIMANAGER_VERSION "ESP_WiFiManager v1.7.4"
#define ESP_WIFIMANAGER_VERSION "ESP_WiFiManager v1.7.5"

#include "ESP_WiFiManager_Debug.h"

Expand Down
3 changes: 2 additions & 1 deletion src/ESP_WiFiManager_Debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/ESP_WiFiManager
Licensed under MIT license
Version: 1.7.4
Version: 1.7.5
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand Down Expand Up @@ -51,6 +51,7 @@
1.7.2 K Hoang 08/05/2021 Fix warnings with ESP8266 core v3.0.0
1.7.3 K Hoang 29/07/2021 Fix MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
1.7.4 K Hoang 13/08/2021 Add WiFi scanning of hidden SSIDs
1.7.5 K Hoang 10/10/2021 Update `platform.ini` and `library.json`
*****************************************************************************************************************************/

#pragma once
Expand Down
3 changes: 2 additions & 1 deletion src_cpp/ESP_WiFiManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/ESP_WiFiManager
Licensed under MIT license
Version: 1.7.4
Version: 1.7.5
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand Down Expand Up @@ -51,6 +51,7 @@
1.7.2 K Hoang 08/05/2021 Fix warnings with ESP8266 core v3.0.0
1.7.3 K Hoang 29/07/2021 Fix MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
1.7.4 K Hoang 13/08/2021 Add WiFi scanning of hidden SSIDs
1.7.5 K Hoang 10/10/2021 Update `platform.ini` and `library.json`
*****************************************************************************************************************************/

#include "ESP_WiFiManager.h"
Expand Down
5 changes: 3 additions & 2 deletions src_cpp/ESP_WiFiManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/ESP_WiFiManager
Licensed under MIT license
Version: 1.7.4
Version: 1.7.5
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand Down Expand Up @@ -51,6 +51,7 @@
1.7.2 K Hoang 08/05/2021 Fix warnings with ESP8266 core v3.0.0
1.7.3 K Hoang 29/07/2021 Fix MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
1.7.4 K Hoang 13/08/2021 Add WiFi scanning of hidden SSIDs
1.7.5 K Hoang 10/10/2021 Update `platform.ini` and `library.json`
*****************************************************************************************************************************/

#pragma once
Expand All @@ -72,7 +73,7 @@
#define USING_ESP32_C3 true
#endif

#define ESP_WIFIMANAGER_VERSION "ESP_WiFiManager v1.7.4"
#define ESP_WIFIMANAGER_VERSION "ESP_WiFiManager v1.7.5"

#include "ESP_WiFiManager_Debug.h"

Expand Down
3 changes: 2 additions & 1 deletion src_cpp/ESP_WiFiManager_Debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/ESP_WiFiManager
Licensed under MIT license
Version: 1.7.4
Version: 1.7.5
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand Down Expand Up @@ -51,6 +51,7 @@
1.7.2 K Hoang 08/05/2021 Fix warnings with ESP8266 core v3.0.0
1.7.3 K Hoang 29/07/2021 Fix MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
1.7.4 K Hoang 13/08/2021 Add WiFi scanning of hidden SSIDs
1.7.5 K Hoang 10/10/2021 Update `platform.ini` and `library.json`
*****************************************************************************************************************************/

#pragma once
Expand Down
3 changes: 2 additions & 1 deletion src_h/ESP_WiFiManager-Impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/ESP_WiFiManager
Licensed under MIT license
Version: 1.7.4
Version: 1.7.5
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand Down Expand Up @@ -51,6 +51,7 @@
1.7.2 K Hoang 08/05/2021 Fix warnings with ESP8266 core v3.0.0
1.7.3 K Hoang 29/07/2021 Fix MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
1.7.4 K Hoang 13/08/2021 Add WiFi scanning of hidden SSIDs
1.7.5 K Hoang 10/10/2021 Update `platform.ini` and `library.json`
*****************************************************************************************************************************/

#pragma once
Expand Down
5 changes: 3 additions & 2 deletions src_h/ESP_WiFiManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/ESP_WiFiManager
Licensed under MIT license
Version: 1.7.4
Version: 1.7.5
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand Down Expand Up @@ -51,6 +51,7 @@
1.7.2 K Hoang 08/05/2021 Fix warnings with ESP8266 core v3.0.0
1.7.3 K Hoang 29/07/2021 Fix MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
1.7.4 K Hoang 13/08/2021 Add WiFi scanning of hidden SSIDs
1.7.5 K Hoang 10/10/2021 Update `platform.ini` and `library.json`
*****************************************************************************************************************************/

#pragma once
Expand All @@ -72,7 +73,7 @@
#define USING_ESP32_C3 true
#endif

#define ESP_WIFIMANAGER_VERSION "ESP_WiFiManager v1.7.4"
#define ESP_WIFIMANAGER_VERSION "ESP_WiFiManager v1.7.5"

#include "ESP_WiFiManager_Debug.h"

Expand Down
3 changes: 2 additions & 1 deletion src_h/ESP_WiFiManager_Debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/ESP_WiFiManager
Licensed under MIT license
Version: 1.7.4
Version: 1.7.5
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand Down Expand Up @@ -51,6 +51,7 @@
1.7.2 K Hoang 08/05/2021 Fix warnings with ESP8266 core v3.0.0
1.7.3 K Hoang 29/07/2021 Fix MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
1.7.4 K Hoang 13/08/2021 Add WiFi scanning of hidden SSIDs
1.7.5 K Hoang 10/10/2021 Update `platform.ini` and `library.json`
*****************************************************************************************************************************/

#pragma once
Expand Down

0 comments on commit d97b5f1

Please sign in to comment.