From 7767cc4ab0497f523251dd1db47d8484e9f3237f Mon Sep 17 00:00:00 2001 From: JOAO LOPES Date: Sat, 23 Mar 2019 14:05:48 -0300 Subject: [PATCH] Version 3.0.5 Ajustment on debugA macro, thanks @jetpax and @cmidgley to add this issue --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- README.md | 4 ++++ library.json | 2 +- library.properties | 2 +- src/RemoteDebug.cpp | 3 ++- src/RemoteDebug.h | 2 +- 6 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index cb607ce..daf40f6 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -20,7 +20,7 @@ A clear and concise description of what you expected to happen. If applicable, add screenshots to help explain your problem. **Arduino Information:** - - OS: [e.g. Windows, MacOSX, Linux] + - OS: [e.g. Windows, MacOS, Linux] - IDE [e.g. Arduino IDE, Eclipse, VSCode] - IDE Version [e.g. 1.8.6] - Board [e.g ESP32] diff --git a/README.md b/README.md index 0f48000..d524463 100755 --- a/README.md +++ b/README.md @@ -558,6 +558,10 @@ In advanced sample, I used WifiManager library, ArduinoOTA and mDNS, please see ## Releases +### 3.0.5 - 2019-03-23 + + - Ajustment on debugA macro, thanks @jetpax and @cmidgley to add this issue. + ### 3.0.4 - 2019-03-19 - All public configurations (#defines) have moved to RemoteDebugCfg.h, to facilitate changes for anybody. diff --git a/library.json b/library.json index c1a0d7a..f332cd3 100755 --- a/library.json +++ b/library.json @@ -7,7 +7,7 @@ "type": "git", "url": "https://github.com/JoaoLopesF/RemoteDebug.git" }, - "version": "3.0.4", + "version": "3.0.5", "frameworks": "arduino", "platforms": "*" } diff --git a/library.properties b/library.properties index 144ee8b..6cad46c 100755 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=RemoteDebug -version=3.0.4 +version=3.0.5 author=Joao Lopes maintainer=Joao Lopes sentence=A library for Arduino to debug projects over WiFi, with web app or telnet client, with Print commands like Serial Monitor. diff --git a/src/RemoteDebug.cpp b/src/RemoteDebug.cpp index 6f84d0c..22c220a 100644 --- a/src/RemoteDebug.cpp +++ b/src/RemoteDebug.cpp @@ -10,6 +10,7 @@ * * Versions: * ------ ---------- ----------------- + * 3.0.5 2019-03-32 Ajustment on debugA macro, thanks @jetpax and @cmidgley to add this issue * 3.0.4 2019-03-19 All public configurations (#defines) have moved to RemoteDebugCfg.h, to facilitate changes for anybody. * Changed examples with warnings on change any #define in project, * with workarounds, if it not work. (thanks to @22MarioZ for added this issue) @@ -89,7 +90,7 @@ ///// Defines -#define VERSION "3.0.4" +#define VERSION "3.0.5" ///// Includes diff --git a/src/RemoteDebug.h b/src/RemoteDebug.h index cf3c42d..902cd4d 100644 --- a/src/RemoteDebug.h +++ b/src/RemoteDebug.h @@ -195,7 +195,7 @@ #define debugI(fmt, ...) rdebugIln(fmt, ##__VA_ARGS__) #define debugW(fmt, ...) rdebugWln(fmt, ##__VA_ARGS__) #define debugE(fmt, ...) rdebugEln(fmt, ##__VA_ARGS__) -#define debugA(fmt, ...) rdebugVln(fmt, ##__VA_ARGS__) +#define debugA(fmt, ...) rdebugAln(fmt, ##__VA_ARGS__) #define debugHandle() Debug.handle()