Skip to content

Commit 7767cc4

Browse files
committed
Version 3.0.5
Ajustment on debugA macro, thanks @jetpax and @cmidgley to add this issue
1 parent 5614e14 commit 7767cc4

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ A clear and concise description of what you expected to happen.
2020
If applicable, add screenshots to help explain your problem.
2121

2222
**Arduino Information:**
23-
- OS: [e.g. Windows, MacOSX, Linux]
23+
- OS: [e.g. Windows, MacOS, Linux]
2424
- IDE [e.g. Arduino IDE, Eclipse, VSCode]
2525
- IDE Version [e.g. 1.8.6]
2626
- Board [e.g ESP32]

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -558,6 +558,10 @@ In advanced sample, I used WifiManager library, ArduinoOTA and mDNS, please see
558558
559559
## Releases
560560
561+
### 3.0.5 - 2019-03-23
562+
563+
- Ajustment on debugA macro, thanks @jetpax and @cmidgley to add this issue.
564+
561565
### 3.0.4 - 2019-03-19
562566
563567
- All public configurations (#defines) have moved to RemoteDebugCfg.h, to facilitate changes for anybody.

library.json

+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": "3.0.4",
10+
"version": "3.0.5",
1111
"frameworks": "arduino",
1212
"platforms": "*"
1313
}

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=RemoteDebug
2-
version=3.0.4
2+
version=3.0.5
33
author=Joao Lopes
44
maintainer=Joao Lopes
55
sentence=A library for Arduino to debug projects over WiFi, with web app or telnet client, with Print commands like Serial Monitor.

src/RemoteDebug.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
*
1111
* Versions:
1212
* ------ ---------- -----------------
13+
* 3.0.5 2019-03-32 Ajustment on debugA macro, thanks @jetpax and @cmidgley to add this issue
1314
* 3.0.4 2019-03-19 All public configurations (#defines) have moved to RemoteDebugCfg.h, to facilitate changes for anybody.
1415
* Changed examples with warnings on change any #define in project,
1516
* with workarounds, if it not work. (thanks to @22MarioZ for added this issue)
@@ -89,7 +90,7 @@
8990

9091
///// Defines
9192

92-
#define VERSION "3.0.4"
93+
#define VERSION "3.0.5"
9394

9495
///// Includes
9596

src/RemoteDebug.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@
195195
#define debugI(fmt, ...) rdebugIln(fmt, ##__VA_ARGS__)
196196
#define debugW(fmt, ...) rdebugWln(fmt, ##__VA_ARGS__)
197197
#define debugE(fmt, ...) rdebugEln(fmt, ##__VA_ARGS__)
198-
#define debugA(fmt, ...) rdebugVln(fmt, ##__VA_ARGS__)
198+
#define debugA(fmt, ...) rdebugAln(fmt, ##__VA_ARGS__)
199199

200200
#define debugHandle() Debug.handle()
201201

0 commit comments

Comments
 (0)