Skip to content

Commit a0e81da

Browse files
authored
WLED 0.15.0-b6 release (#4180)
* modified Improv chip & version handling * Update build and changelog
1 parent 85a7c3c commit a0e81da

File tree

5 files changed

+36
-21
lines changed

5 files changed

+36
-21
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,26 @@
11
## WLED changelog
22

3+
#### Build 2410140
4+
- WLED 0.15.0-b6 release
5+
- Added BRT timezone (#4188 by @LuisFadini)
6+
- Fixed the positioning of the "Download the latest binary" button (#4184 by @maxi4329)
7+
- Add WLED_AUTOSEGMENTS compile flag (#4183 by @PaoloTK)
8+
- New 512kB FS parition map for 4MB devices
9+
- Internal API change: Static PinManager & UsermodManager
10+
- Change in Improv chip ID and version generation
11+
- Various optimisations, bugfixes and enhancements (#4005, #4174 & #4175 by @Xevel, #4180, #4168, #4154, #4189 by @dosipod)
12+
13+
#### Build 2409170
14+
- UI: Introduce common.js in settings pages (size optimisation)
15+
- Add the ability to toggle the reception of palette synchronizations (#4137 by @felddy)
16+
- Usermod/FX: Temperature usermod added Temperature effect (example usermod effect by @blazoncek)
17+
- Fix AsyncWebServer version pin
18+
319
#### Build 2409140
420
- Configure different kinds of busses at compile (#4107 by @PaoloTK)
521
- BREAKING: removes LEDPIN and DEFAULT_LED_TYPE compile overrides
622
- Fetch LED types from Bus classes (dynamic UI) (#4129 by @netmindz, @blazoncek, @dedehai)
23+
- Temperature usermod: update OneWire to 2.3.8 (#4131 by @iammattcoleman)
724

825
#### Build 2409100
926
- WLED 0.15.0-b5 release

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wled",
3-
"version": "0.15.0-b5",
3+
"version": "0.15.0-b6",
44
"description": "Tools for WLED project",
55
"main": "tools/cdata.js",
66
"directories": {

wled00/improv.cpp

+14-16
Original file line numberDiff line numberDiff line change
@@ -194,24 +194,22 @@ void sendImprovIPRPCResult(ImprovRPCType type) {
194194
}
195195

196196
void sendImprovInfoResponse() {
197-
const char* bString =
198-
#ifdef ESP8266
199-
"esp8266"
200-
#elif CONFIG_IDF_TARGET_ESP32C3
201-
"esp32-c3"
202-
#elif CONFIG_IDF_TARGET_ESP32S2
203-
"esp32-s2"
204-
#elif CONFIG_IDF_TARGET_ESP32S3
205-
"esp32-s3";
206-
#else // ESP32
207-
"esp32";
208-
#endif
209-
;
210-
197+
char bString[32];
198+
#ifdef ESP8266
199+
strcpy(bString, "esp8266");
200+
#else // ESP32
201+
strncpy(bString, ESP.getChipModel(), 31);
202+
#if CONFIG_IDF_TARGET_ESP32
203+
bString[5] = '\0'; // disregard chip revision for classic ESP32
204+
#else
205+
bString[31] = '\0'; // just in case
206+
#endif
207+
strlwr(bString);
208+
#endif
211209
//Use serverDescription if it has been changed from the default "WLED", else mDNS name
212210
bool useMdnsName = (strcmp(serverDescription, "WLED") == 0 && strlen(cmDNS) > 0);
213-
char vString[20];
214-
sprintf_P(vString, PSTR("0.15.0-b5/%i"), VERSION);
211+
char vString[32];
212+
sprintf_P(vString, PSTR("%s/%i"), versionString, VERSION);
215213
const char *str[4] = {"WLED", vString, bString, useMdnsName ? cmDNS : serverDescription};
216214

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

wled00/wled.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
/*
44
Main sketch, global variable declarations
55
@title WLED project sketch
6-
@version 0.15.0-b5
6+
@version 0.15.0-b6
77
@author Christian Schwinne
88
*/
99

1010
// version code in format yymmddb (b = daily build)
11-
#define VERSION 2409170
11+
#define VERSION 2410140
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)