Skip to content

Commit a7a27d9

Browse files
committed
14.5.0-beta, build 2412180
1 parent ae65a83 commit a7a27d9

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
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": "14.5.0-dev",
3+
"version": "14.5.0-beta",
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
@@ -212,7 +212,7 @@ void sendImprovInfoResponse() {
212212
bool useMdnsName = (strcmp(serverDescription, "WLED") == 0 && strlen(cmDNS) > 0);
213213
char vString[32] = { '\0' };
214214
//snprintf_P(vString, sizeof(vString)-1, PSTR("0.14.1-b34.42/%i"),VERSION); // upstream baseline
215-
snprintf_P(vString, sizeof(vString)-1, PSTR("14.5.0-dev/%i"),VERSION); // WLEDMM version
215+
snprintf_P(vString, sizeof(vString)-1, PSTR("14.5.0-beta/%i"),VERSION); // WLEDMM version
216216
const char *str[4] = {"WLED", vString, bString, useMdnsName ? cmDNS : serverDescription};
217217

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

wled00/wled.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
/*
44
Main sketch, global variable declarations
55
@title WLED project sketch
6-
@version 14.5.0-dev
6+
@version 14.5.0-beta
77
*/
88

99
// version code in format yymmddb (b = daily build)
10-
#define VERSION 2412110
10+
#define VERSION 2412180
1111

1212
// WLEDMM - you can check for this define in usermods, to only enabled WLEDMM specific code in the "right" fork. Its not defined in AC WLED.
1313
#define _MoonModules_WLED_

0 commit comments

Comments
 (0)