Skip to content

Commit bc40344

Browse files
committed
0.13.0-b5
1 parent 38d8dfe commit bc40344

File tree

10 files changed

+38
-13
lines changed

10 files changed

+38
-13
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
### Builds after release 0.12.0
44

5+
#### Build 2111160
6+
7+
- Version bump to 0.13.0-b5 "Toki"
8+
- Improv Serial support (PR #2334)
9+
- Button improvements (PR #2284)
10+
- Added two time zones (PR #2264, 2311)
11+
- JSON in/decrementing support for brightness and presets
12+
- Fixed no gamma correction for JSON individual LED control
13+
- Preset cycle bugfix
14+
- Removed ledCount
15+
- LED settings buffer bugfix
16+
- Network pin conflict bugfix
17+
- Changed default ESP32 partition layout to 4M, 1M FS
18+
519
#### Build 2110110
620

721
- Version bump to 0.13.0-b4 "Toki"

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-b4",
3+
"version": "0.13.0-b5",
44
"description": "Tools for WLED project",
55
"main": "tools/cdata.js",
66
"directories": {

platformio.ini

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,8 @@ build_flags = -g
207207
-DCONFIG_LITTLEFS_FOR_IDF_3_2
208208
-D CONFIG_ASYNC_TCP_USE_WDT=0
209209

210+
default_partitions = tools/WLED_ESP32_4MB_1MB_FS.csv
211+
210212
lib_deps =
211213
${env.lib_deps}
212214
makuna/NeoPixelBus @ 2.6.7
@@ -288,18 +290,20 @@ lib_deps = ${esp8266.lib_deps}
288290

289291
[env:esp32dev]
290292
board = esp32dev
291-
platform = espressif32@2.0
293+
platform = espressif32@3.3.2
292294
build_unflags = ${common.build_unflags}
293295
build_flags = ${common.build_flags_esp32} -D WLED_RELEASE_NAME=ESP32 #-D WLED_DISABLE_BROWNOUT_DET
294296
lib_deps = ${esp32.lib_deps}
297+
#board_build.partitions = ${esp32.default_partitions}
295298

296299
[env:esp32_eth]
297300
board = esp32-poe
298-
platform = espressif32@2.0
301+
platform = espressif32@3.3.2
299302
upload_speed = 921600
300303
build_unflags = ${common.build_unflags}
301304
build_flags = ${common.build_flags_esp32} -D WLED_RELEASE_NAME=ESP32_Ethernet -D RLYPIN=-1 -D WLED_USE_ETHERNET -D BTNPIN=-1
302305
lib_deps = ${esp32.lib_deps}
306+
#board_build.partitions = ${esp32.default_partitions}
303307

304308
[env:esp32s2_saola]
305309
board = esp32dev
@@ -406,13 +410,15 @@ build_flags = ${common.build_flags_esp32}
406410
lib_deps = ${esp32.lib_deps}
407411
OneWire@~2.3.5
408412
olikraus/U8g2 @ ^2.28.8
413+
board_build.partitions = ${esp32.default_partitions}
409414

410415
[env:m5atom]
411416
board = esp32dev
412417
build_unflags = ${common.build_unflags}
413418
build_flags = ${common.build_flags_esp32} -D LEDPIN=27 -D BTNPIN=39
414419
lib_deps = ${esp32.lib_deps}
415420
421+
board_build.partitions = ${esp32.default_partitions}
416422

417423
[env:sp501e]
418424
board = esp_wroom_02
@@ -498,3 +504,4 @@ monitor_filters = esp32_exception_decoder
498504
lib_deps =
499505
${esp32.lib_deps}
500506
TFT_eSPI @ ^2.3.70
507+
board_build.partitions = ${esp32.default_partitions}

wled00/const.h

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,9 +272,13 @@
272272
#endif
273273

274274
#ifdef WLED_USE_ETHERNET
275-
#define E131_MAX_UNIVERSE_COUNT 20
275+
#define E131_MAX_UNIVERSE_COUNT 20
276276
#else
277-
#define E131_MAX_UNIVERSE_COUNT 10
277+
#ifdef ESP8266
278+
#define E131_MAX_UNIVERSE_COUNT 9
279+
#else
280+
#define E131_MAX_UNIVERSE_COUNT 12
281+
#endif
278282
#endif
279283

280284
#define ABL_MILLIAMPS_DEFAULT 850 // auto lower brightness to stay close to milliampere limit

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-b4<br>Download the latest binary: <a
45+
Installed version: 0.13.0-b5<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
@@ -427,7 +427,7 @@ onclick='uploadFile(d.Sf.data2,"/cfg.json")'><br></div><div style="color:#fa0">
427427
Incorrect configuration may require a factory reset or re-flashing of your ESP.
428428
</div>For security reasons, passwords are not backed up.<h3>About</h3><a
429429
href="https://github.com/Aircoookie/WLED/" target="_blank">WLED</a>
430-
version 0.13.0-b4<br><br><a
430+
version 0.13.0-b5<br><br><a
431431
href="https://github.com/Aircoookie/WLED/wiki/Contributors-and-credits"
432432
target="_blank">Contributors, dependencies and special thanks</a><br>
433433
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-b4/%i"),VERSION);
192+
uint8_t vlen = sprintf_P(out+lengthSum,PSTR("0.13.0-b5/%i"),VERSION);
193193
out[16] = vlen; lengthSum += vlen;
194194
uint8_t hlen = 7;
195195
#ifdef ESP8266

wled00/json.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ void serializeInfo(JsonObject root)
501501
leds[F("fps")] = strip.getFps();
502502
leds[F("maxpwr")] = (strip.currentMilliamps)? strip.ablMilliampsMax : 0;
503503
leds[F("maxseg")] = strip.getMaxSegments();
504-
leds[F("seglock")] = false; //will be used in the future to prevent modifications to segment config
504+
//leds[F("seglock")] = false; //might be used in the future to prevent modifications to segment config
505505

506506
root[F("str")] = syncToggleReceive;
507507

@@ -563,7 +563,7 @@ void serializeInfo(JsonObject root)
563563
root[F("resetReason0")] = (int)rtc_get_reset_reason(0);
564564
root[F("resetReason1")] = (int)rtc_get_reset_reason(1);
565565
#endif
566-
root[F("lwip")] = 0;
566+
root[F("lwip")] = 0; //deprecated
567567
#else
568568
root[F("arch")] = "esp8266";
569569
root[F("core")] = ESP.getCoreVersion();

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-b4
6+
@version 0.13.0-b5
77
@author Christian Schwinne
88
*/
99

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