Skip to content

Commit aa09241

Browse files
committed
version 0.14.0-b27.31
1 parent bb6f84d commit aa09241

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 2 additions & 2 deletions
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. WLEDMM_0.14.0.2.1_esp32_4MB_max (build 2212061)"
51+
placeholder: "e.g. build 2308250, WLEDMM_0.14.0-b27.31_esp32_4MB_M.bin"
5252
validations:
5353
required: true
5454
- type: dropdown
@@ -57,12 +57,12 @@ body:
5757
label: Which microcontroller/board are you seeing the problem on?
5858
multiple: true
5959
options:
60-
- ESP8266
6160
- ESP32
6261
- ESP32-S3
6362
- ESP32-S2
6463
- ESP32-C3
6564
- Other
65+
- ESP8266
6666
validations:
6767
required: true
6868
- type: textarea

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-b26.30",
3+
"version": "0.14.0-b27.31",
44
"description": "Tools for WLED project",
55
"main": "tools/cdata.js",
66
"directories": {

wled00/data/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -676,8 +676,7 @@ function populateInfo(i)
676676
if (i.ver.includes("0.14.1")) vcn = "Sitting Ducks"; // easter egg
677677
if (i.ver.includes("0.14.0")) vcn = "Lupo"; // check for MM versioning scheme
678678
if (i.ver.includes("0.14.0-b15")) vcn = "Sitting Ducks"; // late easter egg
679-
if (i.ver.includes("0.14.0-b25")) vcn = "This is the way"; // recently watched The Mandalorian? I have spoken ;-)
680-
if (i.ver.includes("0.14.0-b26")) vcn = "This is the way";
679+
if (i.ver.includes("0.14.0-b2")) vcn = "This is the way"; // recently watched The Mandalorian? I have spoken ;-)
681680
if (i.ver.includes("0.14.0-b15.22")) vcn = "Lupo";
682681
cn += `v${i.ver} &nbsp;<i>"${vcn}"</i><p>(WLEDMM_${i.ver} ${i.rel}.bin)</p><p><em>build ${i.vid}</em></p><table>
683682
${urows}

wled00/improv.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ void sendImprovInfoResponse() {
189189
out[11] = 4; //Firmware len ("WLED")
190190
out[12] = 'W'; out[13] = 'L'; out[14] = 'E'; out[15] = 'D';
191191
uint8_t lengthSum = 17;
192-
uint8_t vlen = sprintf_P(out+lengthSum,PSTR("0.14.0-b26.30/%i"),VERSION);
192+
uint8_t vlen = sprintf_P(out+lengthSum,PSTR("0.14.0-b27.31/%i"),VERSION);
193193
out[16] = vlen; lengthSum += vlen;
194194
uint8_t hlen = 7;
195195
#ifdef ESP8266

0 commit comments

Comments
 (0)