Skip to content

Commit ca1157e

Browse files
committed
Version 1.5.7
- Fixed bug for MAX_TIME_INACTIVE, thanks to @achuchev to add this issue
1 parent 7231c56 commit ca1157e

6 files changed

+9
-4
lines changed

LICENSE.txt

100644100755
File mode changed.

README.md

100644100755
+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# RemoteDebug Library for ESP8266 or ESP32
22

3-
<a href="#releases"> ![build badge](https://img.shields.io/badge/version-v1.5.6-blue.svg)</a> [![Codacy Badge](https://api.codacy.com/project/badge/Grade/3eadfd19246f4808907cf53599a6b9f0)](https://www.codacy.com/app/JoaoLopesF/RemoteDebug?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=JoaoLopesF/RemoteDebug&amp;utm_campaign=Badge_Grade) <a href="https://github.com/JoaoLopesF/RemoteDebug/blob/master/LICENSE.txt">![GitHub](https://img.shields.io/github/license/mashape/apistatus.svg)</a>
3+
<a href="#releases"> ![build badge](https://img.shields.io/badge/version-v1.5.7-blue.svg)</a> [![Codacy Badge](https://api.codacy.com/project/badge/Grade/3eadfd19246f4808907cf53599a6b9f0)](https://www.codacy.com/app/JoaoLopesF/RemoteDebug?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=JoaoLopesF/RemoteDebug&amp;utm_campaign=Badge_Grade) <a href="https://github.com/JoaoLopesF/RemoteDebug/blob/master/LICENSE.txt">![GitHub](https://img.shields.io/github/license/mashape/apistatus.svg)</a>
44

55
## A library to remotely debug over a telnet connection
66

@@ -297,6 +297,10 @@ In advanced sample, I used WifiManager library, ArduinoOTA and mDNS, please see
297297

298298
## Releases
299299

300+
### 1.5.7 - 2018-11-03
301+
302+
- Fixed bug for MAX_TIME_INACTIVE, thanks to @achuchev to add this issue
303+
300304
### 1.5.6 - 2018-10-19
301305

302306
- Adjustments based on pull request from @jeroenst (to allow serial output with telnet password and setPassword method)

RemoteDebug.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
* - 1.5.4 Serial output not depending of telnet password (thanks @jeroenst for suggestion)
3737
* - 1.5.5 Serial output is now not allowed if telnet password is enabled
3838
* - 1.5.6 Adjustments based on pull request from @jeroenst (to allow serial output with telnet password and setPassword method) - 2018-10-19
39+
* - 1.5.7 Fixed bug for MAX_TIME_INACTIVE - 2018-11-03
3940
*
4041
*/
4142

@@ -376,7 +377,7 @@ void RemoteDebug::handle() {
376377

377378
uint32_t maxTime = MAX_TIME_INACTIVE; // Normal
378379

379-
if (_password != "") { // Request password - 18/08/08
380+
if (_password != "" && !_passwordOk) { // Request password - 18/08/08
380381
maxTime = 60000; // One minute to password
381382
}
382383

library.json

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"type": "git",
88
"url": "https://github.com/JoaoLopesF/RemoteDebug.git"
99
},
10-
"version": "1.5.6",
10+
"version": "1.5.7",
1111
"frameworks": "arduino",
1212
"platforms": "*"
1313
}

library.properties

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=RemoteDebug
2-
version=1.5.6
2+
version=1.5.7
33
author=Joao Lopes
44
maintainer=Joao Lopes
55
sentence=Remote debug over telnet for Arduino ESP8266 and ESP32

telnet.h

100644100755
File mode changed.

0 commit comments

Comments
 (0)