Skip to content

Commit 4093df1

Browse files
blazonceksofthack007
authored andcommitted
WLED 0.14.3 release
- Fix for transition 0 (wled#3854, wled#3832, wled#3720) - copyright year update - updated AsyncWebServer to v2.2.0
1 parent c946b52 commit 4093df1

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## [WLED upstream](https://github.com/Aircoookie/WLED/tree/0_14_1) changelog
22

3+
#### Build 2403290
4+
- WLED 0.14.3 release
5+
- Fix for transition 0 (#3854, #3832, #3720)
6+
37
#### Build 2403170
48
- WLED 0.14.2 release
59

platformio.ini

+3-3
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ arduino_core_2_7_4 = [email protected]
113113
arduino_core_3_0_0 = [email protected]
114114
arduino_core_3_2_0 = [email protected]
115115
arduino_core_4_1_0 = [email protected]
116-
arduino_core_3_1_2 = [email protected].0
116+
arduino_core_3_1_2 = [email protected].1
117117

118118
# Development platforms
119119
arduino_core_develop = https://github.com/platformio/platform-espressif8266#develop
@@ -123,8 +123,7 @@ arduino_core_git = https://github.com/platformio/platform-espressif8266#feature/
123123
platform_wled_default = ${common.arduino_core_3_1_2}
124124
# We use 2.7.4.7 for all, includes PWM flicker fix and Wstring optimization
125125
#platform_packages = tasmota/framework-arduinoespressif8266 @ 3.20704.7
126-
platform_packages = platformio/framework-arduinoespressif8266
127-
platformio/toolchain-xtensa @ ~2.100300.220621 #2.40802.200502
126+
platform_packages = platformio/toolchain-xtensa @ ~2.100300.220621 #2.40802.200502
128127
platformio/tool-esptool #@ ~1.413.0
129128
platformio/tool-esptoolpy #@ ~1.30000.0
130129

@@ -241,6 +240,7 @@ lib_deps =
241240
;;makuna/NeoPixelBus @ 2.7.5 ;; WLEDMM will be added in board specific sections
242241
;;https://github.com/Aircoookie/ESPAsyncWebServer.git @ ~2.0.7
243242
https://github.com/lost-hope/ESPAsyncWebServer.git#master ;; WLEDMM to display .log and .wled files in /edit
243+
;; https://github.com/Aircoookie/ESPAsyncWebServer.git @ ^2.2.1
244244
#For use of the TTGO T-Display ESP32 Module with integrated TFT display uncomment the following line
245245
#TFT_eSPI
246246
#For compatible OLED display uncomment following

wled00/led.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,8 @@ void stateUpdated(byte callMode) {
140140
jsonTransitionOnce = false;
141141
strip.setTransition(transitionDelayTemp);
142142
if (transitionDelayTemp == 0) {
143+
jsonTransitionOnce = false;
144+
transitionActive = false;
143145
applyFinalBri();
144146
strip.trigger();
145147
return;

0 commit comments

Comments
 (0)