diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 0a8e61e8..ac2a1214 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -45,7 +45,7 @@ body: attributes: label: What version of WLED? description: You can find this in by going to Config -> Security & Updates -> Scroll to Bottom. Copy and paste the entire line after "Server message" - placeholder: "e.g. WLED 0.13.0-b7 (build 2202222)" + placeholder: "e.g. WLED 0.13.1 (build 2203150)" validations: required: true - type: dropdown diff --git a/CHANGELOG.md b/CHANGELOG.md index fb7e6b1e..5c25fc32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ ## WLED changelog +### WLED release 0.13.1 + +#### Build 2203150 + +- Version bump to v0.13.1 "Toki" +- Fix persistent preset bug, preventing save of new presets + ### WLED release 0.13.0 #### Build 2203142 diff --git a/package-lock.json b/package-lock.json index 8f2939a4..9b73790a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "wled", - "version": "0.13.0", + "version": "0.13.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index da6f5a3b..e60731b8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wled", - "version": "0.13.0", + "version": "0.13.1", "description": "Tools for WLED project", "main": "tools/cdata.js", "directories": { diff --git a/wled00/html_other.h b/wled00/html_other.h index 3888b127..712d2f2c 100644 --- a/wled00/html_other.h +++ b/wled00/html_other.h @@ -42,7 +42,7 @@ function B(){window.history.back()}function U(){document.getElementById("uf").st .bt{background:#333;color:#fff;font-family:Verdana,sans-serif;border:.3ch solid #333;display:inline-block;font-size:20px;margin:8px;margin-top:12px}input[type=file]{font-size:16px}body{font-family:Verdana,sans-serif;text-align:center;background:#222;color:#fff;line-height:200%}#msg{display:none}

WLED Software Update

-Installed version: 0.13.0
Download the latest binary: Download the latest binary:


Incorrect configuration may require a factory reset or re-flashing of your ESP.
For security reasons, passwords are not backed up.

About

WLED - version 0.13.0


Contributors, dependencies and special thanks
A huge thank you to everyone who helped me create WLED!

diff --git a/wled00/improv.cpp b/wled00/improv.cpp index dc458735..42e0f7d8 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.0/%i"),VERSION); + uint8_t vlen = sprintf_P(out+lengthSum,PSTR("0.13.1/%i"),VERSION); out[16] = vlen; lengthSum += vlen; uint8_t hlen = 7; #ifdef ESP8266 diff --git a/wled00/presets.cpp b/wled00/presets.cpp index 859701cd..1337fd6f 100644 --- a/wled00/presets.cpp +++ b/wled00/presets.cpp @@ -56,7 +56,7 @@ void savePreset(byte index, const char* pname, JsonObject saveobj) char tmp[12]; JsonObject sObj = saveobj; - bool persist = (index == 255); + bool persist = (index != 255); const char *filename = persist ? "/presets.json" : "/tmp.json"; if (!fileDoc) { diff --git a/wled00/wled.h b/wled00/wled.h index ba86ad37..a58c546e 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.0 + @version 0.13.1 @author Christian Schwinne */ // version code in format yymmddb (b = daily build) -#define VERSION 2203142 +#define VERSION 2203150 //uncomment this if you have a "my_config.h" file you'd like to use //#define WLED_USE_MY_CONFIG