diff --git a/CHANGELOG.md b/CHANGELOG.md index efbe90a5..e9f86e23 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,20 @@ ## WLED changelog -### Builds after release 0.13.1 +### WLED release 0.13.2 + +#### Build 2208140 + +- Version bump to v0.13.2 "Toki" +- Added option to receive live data on the main segment only (PR #2601) +- Enable ESP watchdog by default (PR #2657) +- Fixed race condition when saving bus config +- Better potentiometer filtering (PR #2693) +- More suitable DMX libraries (PR #2652) +- Fixed outgoing serial TPM2 message length (PR #2628) +- Fixed next universe overflow and Art-Net DMX start address (PR #2607) +- Fixed relative segment brightness (PR #2665) + +### Builds between releases 0.13.1 and 0.13.2 #### Build 2203191 diff --git a/package-lock.json b/package-lock.json index 0e231caa..ce4caa8e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "wled", - "version": "0.14.0-bl0", + "version": "0.14.0-b0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 139ef1a1..1e31f689 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wled", - "version": "0.14.0-bl0", + "version": "0.14.0-b0", "description": "Tools for WLED project", "main": "tools/cdata.js", "directories": { diff --git a/wled00/data/settings_leds.htm b/wled00/data/settings_leds.htm index f40410ef..3a6c3901 100644 --- a/wled00/data/settings_leds.htm +++ b/wled00/data/settings_leds.htm @@ -353,7 +353,7 @@ ${i+1}:

Reversed:
-

Skip first LEDs:
+

Skip first LEDs:

Off Refresh:

Auto-calculate white channel from RGB:
 
`; diff --git a/wled00/improv.cpp b/wled00/improv.cpp index 083bcdea..70125cd4 100644 --- a/wled00/improv.cpp +++ b/wled00/improv.cpp @@ -189,7 +189,7 @@ void sendImprovInfoResponse() { out[11] = 4; //Firmware len ("WLED") out[12] = 'W'; out[13] = 'L'; out[14] = 'E'; out[15] = 'D'; uint8_t lengthSum = 17; - uint8_t vlen = sprintf_P(out+lengthSum,PSTR("0.13.2-bl0/%i"),VERSION); + uint8_t vlen = sprintf_P(out+lengthSum,PSTR("0.14.0-b0/%i"),VERSION); out[16] = vlen; lengthSum += vlen; uint8_t hlen = 7; #ifdef ESP8266 diff --git a/wled00/wled.h b/wled00/wled.h index 379dde66..53b9e1e1 100644 --- a/wled00/wled.h +++ b/wled00/wled.h @@ -3,12 +3,12 @@ /* Main sketch, global variable declarations @title WLED project sketch - @version 0.13.2-bl0 + @version 0.14.0-b0 @author Christian Schwinne */ // version code in format yymmddb (b = daily build) -#define VERSION 2208172 +#define VERSION 2208180 //uncomment this if you have a "my_config.h" file you'd like to use //#define WLED_USE_MY_CONFIG