File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 22
33### Development versions after 0.11.0 release
44
5+ #### Build 2012150
6+
7+ - Added Blends FX (PR #1491 )
8+ - Fixed an issue that made it impossible to deactivate timed presets
9+
510#### Build 2012140
611
712- Added Preset ID quick display option (PR #1462 )
Original file line number Diff line number Diff line change @@ -279,11 +279,13 @@ void deserializeConfig() {
279279 CJSON (timerMacro[it], timer[F (" macro" )]);
280280
281281 byte dowPrev = timerWeekday[it];
282- bool actPrev = timerWeekday[it] & 0x01 ;
282+ // note: act is currently only 0 or 1.
283+ // the reason we are not using bool is that the on-disk type in 0.11.0 was already int
284+ int actPrev = timerWeekday[it] & 0x01 ;
283285 CJSON (timerWeekday[it], timer[F (" dow" )]);
284286 if (timerWeekday[it] != dowPrev) { // present in JSON
285287 timerWeekday[it] <<= 1 ; // add active bit
286- bool act = timer[F (" en" )] | actPrev;
288+ int act = timer[F (" en" )] | actPrev;
287289 if (act) timerWeekday[it]++;
288290 }
289291
Original file line number Diff line number Diff line change 88 */
99
1010// version code in format yymmddb (b = daily build)
11- #define VERSION 2012140
11+ #define VERSION 2012150
1212
1313// uncomment this if you have a "my_config.h" file you'd like to use
1414// #define WLED_USE_MY_CONFIG
You can’t perform that action at this time.
0 commit comments