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

Commit d97b5f1

Browse files
authored
v1.7.5 to update PIO
### Releases v1.7.5 1. Update `platform.ini` and `library.json` to use original `khoih-prog` instead of `khoih.prog` after PIO fix
1 parent 63775e4 commit d97b5f1

15 files changed

+66
-233
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ If you don't find anything, please [open a new issue](https://github.com/khoih-p
1414

1515
Please ensure to specify the following:
1616

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

2828
```
29-
Arduino IDE version: 1.8.15
29+
Arduino IDE version: 1.8.16
3030
ESP8266 Core Version 3.0.2
3131
OS: Ubuntu 20.04 LTS
32-
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
32+
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
3333
3434
Context:
3535
I encountered an endless loop while trying to connect to Local WiFi.

README.md

Lines changed: 30 additions & 211 deletions
Large diffs are not rendered by default.

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
## Table of Contents
1414

1515
* [Changelog](#changelog)
16+
* [Releases v1.7.5](#releases-v175)
1617
* [Releases v1.7.4](#releases-v174)
1718
* [Releases v1.7.3](#releases-v173)
1819
* [Releases v1.7.2](#releases-v172)
@@ -45,6 +46,10 @@
4546

4647
## Changelog
4748

49+
### Releases v1.7.5
50+
51+
1. Update `platform.ini` and `library.json` to use original `khoih-prog` instead of `khoih.prog` after PIO fix
52+
4853
### Releases v1.7.4
4954

5055
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)

library.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ESP_WifiManager",
3-
"version": "1.7.4",
3+
"version": "1.7.5",
44
"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",
55
"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.",
66
"authors":
@@ -25,9 +25,9 @@
2525
"dependencies":
2626
[
2727
{
28-
"owner": "khoih.prog",
28+
"owner": "khoih-prog",
2929
"name": "ESP_DoubleResetDetector",
30-
"version": ">=1.1.1",
30+
"version": ">=1.1.2",
3131
"platforms": ["espressif8266", "espressif32"]
3232
},
3333
{

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=ESP_WiFiManager
2-
version=1.7.4
2+
version=1.7.5
33
author=Khoi Hoang
44
maintainer=Khoi Hoang <[email protected]>
55
license=MIT

platformio/platformio.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ lib_compat_mode = strict
3232

3333
lib_deps =
3434
; PlatformIO 4.x
35-
; ESP_DoubleResetDetector@>=1.1.1
35+
; ESP_DoubleResetDetector@>=1.1.2
3636
; LittleFS_esp32@>=1.0.6
3737
; PlatformIO 5.x
38-
khoih.prog/ESP_DoubleResetDetector@>=1.1.1
38+
khoih-prog/ESP_DoubleResetDetector@>=1.1.2
3939
; lorol/LittleFS_esp32@>=1.0.6
4040

4141
build_flags =

src/ESP_WiFiManager-Impl.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
1616
Built by Khoi Hoang https://github.com/khoih-prog/ESP_WiFiManager
1717
Licensed under MIT license
18-
Version: 1.7.4
18+
Version: 1.7.5
1919
2020
Version Modified By Date Comments
2121
------- ----------- ---------- -----------
@@ -51,6 +51,7 @@
5151
1.7.2 K Hoang 08/05/2021 Fix warnings with ESP8266 core v3.0.0
5252
1.7.3 K Hoang 29/07/2021 Fix MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
5353
1.7.4 K Hoang 13/08/2021 Add WiFi scanning of hidden SSIDs
54+
1.7.5 K Hoang 10/10/2021 Update `platform.ini` and `library.json`
5455
*****************************************************************************************************************************/
5556

5657
#pragma once

src/ESP_WiFiManager.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
1616
Built by Khoi Hoang https://github.com/khoih-prog/ESP_WiFiManager
1717
Licensed under MIT license
18-
Version: 1.7.4
18+
Version: 1.7.5
1919
2020
Version Modified By Date Comments
2121
------- ----------- ---------- -----------
@@ -51,6 +51,7 @@
5151
1.7.2 K Hoang 08/05/2021 Fix warnings with ESP8266 core v3.0.0
5252
1.7.3 K Hoang 29/07/2021 Fix MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
5353
1.7.4 K Hoang 13/08/2021 Add WiFi scanning of hidden SSIDs
54+
1.7.5 K Hoang 10/10/2021 Update `platform.ini` and `library.json`
5455
*****************************************************************************************************************************/
5556

5657
#pragma once
@@ -72,7 +73,7 @@
7273
#define USING_ESP32_C3 true
7374
#endif
7475

75-
#define ESP_WIFIMANAGER_VERSION "ESP_WiFiManager v1.7.4"
76+
#define ESP_WIFIMANAGER_VERSION "ESP_WiFiManager v1.7.5"
7677

7778
#include "ESP_WiFiManager_Debug.h"
7879

src/ESP_WiFiManager_Debug.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
1616
Built by Khoi Hoang https://github.com/khoih-prog/ESP_WiFiManager
1717
Licensed under MIT license
18-
Version: 1.7.4
18+
Version: 1.7.5
1919
2020
Version Modified By Date Comments
2121
------- ----------- ---------- -----------
@@ -51,6 +51,7 @@
5151
1.7.2 K Hoang 08/05/2021 Fix warnings with ESP8266 core v3.0.0
5252
1.7.3 K Hoang 29/07/2021 Fix MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
5353
1.7.4 K Hoang 13/08/2021 Add WiFi scanning of hidden SSIDs
54+
1.7.5 K Hoang 10/10/2021 Update `platform.ini` and `library.json`
5455
*****************************************************************************************************************************/
5556

5657
#pragma once

src_cpp/ESP_WiFiManager.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
1616
Built by Khoi Hoang https://github.com/khoih-prog/ESP_WiFiManager
1717
Licensed under MIT license
18-
Version: 1.7.4
18+
Version: 1.7.5
1919
2020
Version Modified By Date Comments
2121
------- ----------- ---------- -----------
@@ -51,6 +51,7 @@
5151
1.7.2 K Hoang 08/05/2021 Fix warnings with ESP8266 core v3.0.0
5252
1.7.3 K Hoang 29/07/2021 Fix MultiWiFi connection issue with ESP32 core v2.0.0-rc1+
5353
1.7.4 K Hoang 13/08/2021 Add WiFi scanning of hidden SSIDs
54+
1.7.5 K Hoang 10/10/2021 Update `platform.ini` and `library.json`
5455
*****************************************************************************************************************************/
5556

5657
#include "ESP_WiFiManager.h"

0 commit comments

Comments
 (0)