Skip to content

Commit

Permalink
Version 3.0.5
Browse files Browse the repository at this point in the history
Ajustment on debugA macro, thanks @jetpax and @cmidgley to add this issue
  • Loading branch information
JoaoLopesF committed Mar 23, 2019
1 parent 5614e14 commit 7767cc4
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"type": "git",
"url": "https://github.com/JoaoLopesF/RemoteDebug.git"
},
"version": "3.0.4",
"version": "3.0.5",
"frameworks": "arduino",
"platforms": "*"
}
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=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.
Expand Down
3 changes: 2 additions & 1 deletion src/RemoteDebug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -89,7 +90,7 @@

///// Defines

#define VERSION "3.0.4"
#define VERSION "3.0.5"

///// Includes

Expand Down
2 changes: 1 addition & 1 deletion src/RemoteDebug.h
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit 7767cc4

Please sign in to comment.