Skip to content

Commit 8fb5f0e

Browse files
committed
Changelog update v0.14.1-b3
1 parent cdc8640 commit 8fb5f0e

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
## WLED changelog
22

3+
#### Build 2401060
4+
- Version bump: 0.14.1-b3
5+
- Global JSON buffer guarding (#3648 by @willmmiles, resolves #3641, #3312, #3367, #3637, #3646, #3447)
6+
- Fix for #3632
7+
- Custom palette editor mobile UI enhancement (#3617 by @imeszaros)
8+
- changelog update
9+
310
#### Build 2312290
411
- Fix for #3622, #3613, #3609
512
- Various tweaks and fixes

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

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

wled00/improv.cpp

+1-1
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-b2/%i"), VERSION);
213+
sprintf_P(vString, PSTR("0.14.1-b3/%i"), VERSION);
214214
const char *str[4] = {"WLED", vString, bString, useMdnsName ? cmDNS : serverDescription};
215215

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

wled00/wled.h

+1-1
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 2401010
11+
#define VERSION 2401060
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)