Skip to content

Commit 2cc0848

Browse files
committed
change version numbering scheme
* use 14.5.0-dev instead of "0.14.5.0-b32.41.dev" * new release name "Small Step" * semantic versioning compatibility checked, see https://jubianchi.github.io/semver-check/#/version/14.5.0-dev
1 parent a5e9df6 commit 2cc0848

File tree

6 files changed

+18
-16
lines changed

6 files changed

+18
-16
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 2401290, WLEDMM_0.14.1-b32.40_esp32_4MB_M.bin"
51+
placeholder: "e.g. build 2401290, WLEDMM_14.5.0-beta_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.1-b32.41.dev",
3+
"version": "14.5.0-dev",
44
"description": "Tools for WLED project",
55
"main": "tools/cdata.js",
66
"directories": {

wled00/data/index.js

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -684,18 +684,20 @@ function populateInfo(i)
684684
urows += inforow(k,val);
685685
}
686686
}
687-
var vcn = "Kuuhaku";
688-
if (i.ver.startsWith("0.14.")) vcn = "Hoshi";
687+
var vcn = "Small Step"; // WLED-MM 14.5.0, release Dec 2024
688+
// if (i.ver.startsWith("0.14.")) vcn = "Hoshi";
689689
// if (i.ver.includes("-bl")) vcn = "Supāku";
690690
if (i.cn) vcn = i.cn;
691691

692692
//WLEDMM: add total heap and total PSRAM, and build number, add bin name
693-
if (i.ver.includes("0.14.0")) vcn = "Lupo"; // check for MM versioning scheme
694-
if (i.ver.includes("0.14.0-b15")) vcn = "Sitting Ducks"; // late easter egg
695-
if (i.ver.includes("0.14.0-b2")) vcn = "This is the way"; // recently watched The Mandalorian? I have spoken ;-)
696-
if (i.ver.includes("0.14.0-b15.22")) vcn = "Lupo";
697-
if (i.ver.includes("0.14.1-b3")) vcn = "Fried Chicken"; // final line of "One Vision" by Queen
693+
//if (i.ver.includes("0.14.0")) vcn = "Lupo"; // check for MM versioning scheme
694+
//if (i.ver.includes("0.14.0-b15")) vcn = "Sitting Ducks"; // late easter egg
695+
//if (i.ver.includes("0.14.0-b2")) vcn = "This is the way"; // recently watched The Mandalorian? I have spoken ;-)
696+
//if (i.ver.includes("0.14.0-b15.22")) vcn = "Lupo";
697+
//if (i.ver.includes("0.14.1-b")) vcn = "Fried Chicken"; // final line of "One Vision" by Queen
698698
if (i.ver.includes("0.14.3-b")) vcn = "Fried Chicken";
699+
if (i.ver.includes("14.5.")) vcn = "Small Step";
700+
699701
cn += `v${i.ver} &nbsp;<i>"${vcn}"</i><p>(WLEDMM ${i.rel}.bin)</p><p><em>build ${i.vid}</em></p><table>
700702
${urows}
701703
${urows===""?'':'<tr><td colspan=2><hr style="height:1px;border-width:0;color:SeaGreen;background-color:Seagreen"></td></tr>'}

wled00/improv.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,8 +210,9 @@ void sendImprovInfoResponse() {
210210

211211
//Use serverDescription if it has been changed from the default "WLED", else mDNS name
212212
bool useMdnsName = (strcmp(serverDescription, "WLED") == 0 && strlen(cmDNS) > 0);
213-
char vString[32];
214-
snprintf_P(vString, sizeof(vString)-1, PSTR("0.14.1-b32.41/%i"),VERSION);
213+
char vString[32] = { '\0' };
214+
//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
215216
const char *str[4] = {"WLED", vString, bString, useMdnsName ? cmDNS : serverDescription};
216217

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

wled00/wled.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@
33
/*
44
Main sketch, global variable declarations
55
@title WLED project sketch
6-
@version 0.14.1-b1x
7-
@author Christian Schwinne
6+
@version 14.5.0-dev
87
*/
98

109
// version code in format yymmddb (b = daily build)
11-
#define VERSION 2412030
10+
#define VERSION 2412110
1211

1312
// 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.
1413
#define _MoonModules_WLED_

0 commit comments

Comments
 (0)