Skip to content

Commit 7ae5459

Browse files
committed
0.14.2-b1
1 parent 0a8a884 commit 7ae5459

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
## WLED changelog
22

3+
#### Build 2402120
4+
- Beta WLED 0.14.2-b1
5+
- Possible fix for #3589 & partial fix for #3605
6+
- Prevent JSON buffer clear after failed lock attempt
7+
- Multiple analog button fix for #3549
8+
- UM Audioreactive: add two compiler options (#3732 by @wled-install)
9+
- Fix for #3693
10+
311
#### Build 2401141
412
- Official release of WLED 0.14.1
513
- Fix for #3566, #3665, #3672

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wled",
3-
"version": "0.14.1",
3+
"version": "0.14.2-b1",
44
"description": "Tools for WLED project",
55
"main": "tools/cdata.js",
66
"directories": {

wled00/improv.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ void sendImprovInfoResponse() {
210210
//Use serverDescription if it has been changed from the default "WLED", else mDNS name
211211
bool useMdnsName = (strcmp(serverDescription, "WLED") == 0 && strlen(cmDNS) > 0);
212212
char vString[20];
213-
sprintf_P(vString, PSTR("0.14.1/%i"), VERSION);
213+
sprintf_P(vString, PSTR("0.14.2-b1/%i"), VERSION);
214214
const char *str[4] = {"WLED", vString, bString, useMdnsName ? cmDNS : serverDescription};
215215

216216
sendImprovRPCResult(ImprovRPCType::Request_Info, 4, str);

wled00/wled.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*/
99

1010
// version code in format yymmddb (b = daily build)
11-
#define VERSION 2401141
11+
#define VERSION 2402120
1212

1313
//uncomment this if you have a "my_config.h" file you'd like to use
1414
//#define WLED_USE_MY_CONFIG

0 commit comments

Comments
 (0)