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

Commit 783424d

Browse files
committed
version bump 0.14.0 (release)
1 parent 5dadf92 commit 783424d

5 files changed

Lines changed: 10 additions & 4 deletions

File tree

CHANGELOG.md

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

3+
#### Build 2310010, build 2310130
4+
- Release of WLED version 0.14.0 "Hoshi"
5+
- Bugfixes for #3400, #3403, #3405
6+
- minor HTML optimizations
7+
- audioreactive: bugfix for UDP sound sync (partly initialized packets)
8+
39
#### Build 2309240
410
- Release of WLED beta version 0.14.0-b6 "Hoshi"
511
- Effect bugfixes and improvements (Meteor, Meteor Smooth, Scrolling Text)

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