Skip to content

Commit

Permalink
Release WLED 0.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
blazoncek committed Jan 14, 2024
1 parent 0597eee commit a4a8e26
Show file tree
Hide file tree
Showing 12 changed files with 4,234 additions and 4,174 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## WLED changelog

#### Build 2401141
- Official release of WLED 0.14.1
- Fix for #3566, #3665, #3672
- Sorting of palettes in custom palette editor (#3674 by @WoodyLetsCode)

#### Build 2401060
- Version bump: 0.14.1-b3
- Global JSON buffer guarding (#3648 by @willmmiles, resolves #3641, #3312, #3367, #3637, #3646, #3447)
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wled",
"version": "0.14.1-b3",
"version": "0.14.1",
"description": "Tools for WLED project",
"main": "tools/cdata.js",
"directories": {
Expand Down
617 changes: 311 additions & 306 deletions wled00/html_cpal.h

Large diffs are not rendered by default.

1,568 changes: 784 additions & 784 deletions wled00/html_other.h

Large diffs are not rendered by default.

998 changes: 524 additions & 474 deletions wled00/html_pixart.h

Large diffs are not rendered by default.

630 changes: 315 additions & 315 deletions wled00/html_pxmagic.h

Large diffs are not rendered by default.

338 changes: 169 additions & 169 deletions wled00/html_settings.h

Large diffs are not rendered by default.

2,262 changes: 1,131 additions & 1,131 deletions wled00/html_simple.h

Large diffs are not rendered by default.

1,980 changes: 990 additions & 990 deletions wled00/html_ui.h

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion wled00/improv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ void sendImprovInfoResponse() {
//Use serverDescription if it has been changed from the default "WLED", else mDNS name
bool useMdnsName = (strcmp(serverDescription, "WLED") == 0 && strlen(cmDNS) > 0);
char vString[20];
sprintf_P(vString, PSTR("0.14.1-b3/%i"), VERSION);
sprintf_P(vString, PSTR("0.14.1/%i"), VERSION);
const char *str[4] = {"WLED", vString, bString, useMdnsName ? cmDNS : serverDescription};

sendImprovRPCResult(ImprovRPCType::Request_Info, 4, str);
Expand Down
4 changes: 2 additions & 2 deletions wled00/wled.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
/*
Main sketch, global variable declarations
@title WLED project sketch
@version 0.14.1-a1
@version 0.14.1
@author Christian Schwinne
*/

// version code in format yymmddb (b = daily build)
#define VERSION 2401060
#define VERSION 2401141

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

0 comments on commit a4a8e26

Please sign in to comment.