Skip to content
This repository was archived by the owner on Feb 10, 2026. It is now read-only.

Commit 2dcb126

Browse files
committed
version bump 0.14.0-b6
beta release preparation.
1 parent 438525e commit 2dcb126

5 files changed

Lines changed: 13 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
## WLED changelog
22

3+
#### Build 2309240
4+
- Release of WLED beta version 0.14.0-b6 "Hoshi"
5+
- Effect bugfixes and improvements
6+
- audioreactive: bugfixes for ES8388 and ES7243 init; minor improvements for analog inputs
7+
38
#### Build 2309100
49
- Release of WLED beta version 0.14.0-b5 "Hoshi"
510
- New standard esp32 build with audioreactive
611
- Effect blending bugfixes, and minor optimizations
712

813
#### Build 2309050
9-
- Effect blending (#3311) (finally efect transitions!)
14+
- Effect blending (#3311) (finally effect transitions!)
1015
*WARNING*: May not work well with ESP8266, with plenty of segments or usermods (low RAM condition)!!!
1116
- Added receive and send sync groups to JSON API (#3317) (you can change sync groups using preset)
1217
- Internal temperature usermod (#3246)
@@ -35,7 +40,7 @@
3540
- Preset cycle bugfix (#3262)
3641
- Rotary encoder ALT fix for large LED count (#3276)
3742
- effect updates (2D Plasmaball), `blur()` speedup
38-
- On/Off toggle from nodes view (may show unknow device type on older versions) (#3291)
43+
- On/Off toggle from nodes view (may show unknown device type on older versions) (#3291)
3944
- various fixes and improvements (ABL, crashes when changing presets with different segments)
4045

4146
#### Build 2306270
@@ -48,7 +53,7 @@
4853

4954
#### Build 2306210
5055
- 0.14.0-b3 release
51-
- respect global I2C in all usermods (no local initilaisation of I2C bus)
56+
- respect global I2C in all usermods (no local initialization of I2C bus)
5257
- Multi relay usermod compile-time enabled option (-D MULTI_RELAY_ENABLED=true|false)
5358

5459
#### Build 2306180
@@ -74,7 +79,7 @@
7479

7580
#### Build 2306020
7681
- Support for segment sets (PR #3171)
77-
- Reduce sound simulation modes to 2 to facilitiate segment sets
82+
- Reduce sound simulation modes to 2 to facilitate segment sets
7883
- Trigger button immediately on press if all configured presets are the same (PR #3226)
7984
- Changes for allowing Alexa to change light color to White when auto-calculating from RGB (PR #3211)
8085

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.0-b5",
3+
"version": "0.14.0-b6",
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.0-b5/%i"), VERSION);
213+
sprintf_P(vString, PSTR("0.14.0-b6/%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 2309100
11+
#define VERSION 2309240
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)