Skip to content

Commit a4a8e26

Browse files
committed
Release WLED 0.14.1
1 parent 0597eee commit a4a8e26

12 files changed

+4234
-4174
lines changed

CHANGELOG.md

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

3+
#### Build 2401141
4+
- Official release of WLED 0.14.1
5+
- Fix for #3566, #3665, #3672
6+
- Sorting of palettes in custom palette editor (#3674 by @WoodyLetsCode)
7+
38
#### Build 2401060
49
- Version bump: 0.14.1-b3
510
- Global JSON buffer guarding (#3648 by @willmmiles, resolves #3641, #3312, #3367, #3637, #3646, #3447)

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-b3",
3+
"version": "0.14.1",
44
"description": "Tools for WLED project",
55
"main": "tools/cdata.js",
66
"directories": {

wled00/html_cpal.h

+311-306
Large diffs are not rendered by default.

wled00/html_other.h

+784-784
Large diffs are not rendered by default.

wled00/html_pixart.h

+524-474
Large diffs are not rendered by default.

wled00/html_pxmagic.h

+315-315
Large diffs are not rendered by default.

wled00/html_settings.h

+169-169
Large diffs are not rendered by default.

wled00/html_simple.h

+1,131-1,131
Large diffs are not rendered by default.

wled00/html_ui.h

+990-990
Large diffs are not rendered by default.

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

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

wled00/wled.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
/*
44
Main sketch, global variable declarations
55
@title WLED project sketch
6-
@version 0.14.1-a1
6+
@version 0.14.1
77
@author Christian Schwinne
88
*/
99

1010
// version code in format yymmddb (b = daily build)
11-
#define VERSION 2401060
11+
#define VERSION 2401141
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)