Skip to content

Commit ef0f91d

Browse files
committed
Release of WLED v0.13.0
1 parent 9552784 commit ef0f91d

File tree

8 files changed

+17
-9
lines changed

8 files changed

+17
-9
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
## WLED changelog
22

3-
### Builds after release 0.12.0
3+
### WLED release 0.13.0
4+
5+
#### Build 2203142
6+
7+
- Release of WLED v0.13.0 "Toki"
8+
- Reduce APA102 hardware SPI frequency to 5Mhz
9+
- Remove `persistent` parameter in `savePreset()`
10+
11+
### Builds between releases 0.12.0 and 0.13.0
412

513
#### Build 2203140
614

package-lock.json

Lines changed: 1 addition & 1 deletion
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.13.0-b7",
3+
"version": "0.13.0",
44
"description": "Tools for WLED project",
55
"main": "tools/cdata.js",
66
"directories": {

platformio.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ platform = ${esp32.platform}
335335
platform_packages = ${esp32.platform_packages}
336336
upload_speed = 921600
337337
build_unflags = ${common.build_unflags}
338-
build_flags = ${common.build_flags_esp32} -D WLED_RELEASE_NAME=ESP32_Ethernet -D RLYPIN=-1 -D WLED_USE_ETHERNET -D BTNPIN=-1
338+
build_flags = ${common.build_flags_esp32} -D WLED_RELEASE_NAME=ESP32_Ethernet -D RLYPIN=-1 -D WLED_USE_ETHERNET -D BTNPIN=-1 -D WLED_DISABLE_BLYNK
339339
lib_deps = ${esp32.lib_deps}
340340
board_build.partitions = ${esp32.default_partitions}
341341

wled00/html_other.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function B(){window.history.back()}function U(){document.getElementById("uf").st
4242
.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}
4343
</style></head><body><h2>WLED Software Update</h2><form method="POST"
4444
action="/update" id="uf" enctype="multipart/form-data" onsubmit="U()">
45-
Installed version: 0.13.0-b7<br>Download the latest binary: <a
45+
Installed version: 0.13.0<br>Download the latest binary: <a
4646
href="https://github.com/Aircoookie/WLED/releases" target="_blank"><img
4747
src="https://img.shields.io/github/release/Aircoookie/WLED.svg?style=flat-square">
4848
</a><br><input type="file" class="bt" name="update" required><br><input

wled00/html_settings.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ onclick='uploadFile(d.Sf.data2,"/cfg.json")'><br></div><div style="color:#fa0">
452452
Incorrect configuration may require a factory reset or re-flashing of your ESP.
453453
</div>For security reasons, passwords are not backed up.<h3>About</h3><a
454454
href="https://github.com/Aircoookie/WLED/" target="_blank">WLED</a>
455-
version 0.13.0-b7<br><br><a
455+
version 0.13.0<br><br><a
456456
href="https://github.com/Aircoookie/WLED/wiki/Contributors-and-credits"
457457
target="_blank">Contributors, dependencies and special thanks</a><br>
458458
A huge thank you to everyone who helped me create WLED!<br><br>

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.13.0-b7/%i"),VERSION);
192+
uint8_t vlen = sprintf_P(out+lengthSum,PSTR("0.13.0/%i"),VERSION);
193193
out[16] = vlen; lengthSum += vlen;
194194
uint8_t hlen = 7;
195195
#ifdef ESP8266

wled00/wled.h

Lines changed: 2 additions & 2 deletions
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.13.0-b7
6+
@version 0.13.0
77
@author Christian Schwinne
88
*/
99

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