Skip to content

Commit 9164998

Browse files
committed
release -b30.36 preparation
0.14.1 as we have all relevant bugfixes for upstream.
1 parent 3384953 commit 9164998

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ body:
4848
attributes:
4949
label: What version/release of MM WLED?
5050
description: You can find this in by going to Config -> Security & Updates -> Scroll to Bottom. Copy and paste the entire line after "Server message"
51-
placeholder: "e.g. build 2401030, WLEDMM_0.14.0-b29.35_esp32_4MB_M.bin"
51+
placeholder: "e.g. build 2401290, WLEDMM_0.14.1-b30.36_esp32_4MB_M.bin"
5252
validations:
5353
required: true
5454
- type: dropdown

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

wled00/data/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -675,11 +675,11 @@ function populateInfo(i)
675675
if (i.cn) vcn = i.cn;
676676

677677
//WLEDMM: add total heap and total PSRAM, and build number, add bin name
678-
if (i.ver.includes("0.14.1")) vcn = "Sitting Ducks"; // easter egg
679678
if (i.ver.includes("0.14.0")) vcn = "Lupo"; // check for MM versioning scheme
680679
if (i.ver.includes("0.14.0-b15")) vcn = "Sitting Ducks"; // late easter egg
681680
if (i.ver.includes("0.14.0-b2")) vcn = "This is the way"; // recently watched The Mandalorian? I have spoken ;-)
682681
if (i.ver.includes("0.14.0-b15.22")) vcn = "Lupo";
682+
if (i.ver.includes("0.14.1-b3")) vcn = "Fried chicken"; // final line of "One Vision" by Queen
683683
cn += `v${i.ver} &nbsp;<i>"${vcn}"</i><p>(WLEDMM_${i.ver} ${i.rel}.bin)</p><p><em>build ${i.vid}</em></p><table>
684684
${urows}
685685
${urows===""?'':'<tr><td colspan=2><hr style="height:1px;border-width:0;color:SeaGreen;background-color:Seagreen"></td></tr>'}

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[32];
213-
snprintf_P(vString, sizeof(vString)-1, PSTR("0.14.0-b29.35/%i"),VERSION);
213+
snprintf_P(vString, sizeof(vString)-1, PSTR("0.14.1-b30.36/%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 2401280
11+
#define VERSION 2401290
1212

1313
// 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.
1414
#define _MoonModules_WLED_

0 commit comments

Comments
 (0)