Version bump to 0.11.0 "Mirai"

Improved preset name sorting
Fixed Preset cycle not working beyond preset 16
This commit is contained in:
cschwinne
2020-11-23 00:58:58 +01:00
parent ae46eeabef
commit 223bd969fd
8 changed files with 1494 additions and 1485 deletions

View File

@@ -305,7 +305,7 @@ void handleNightlight()
if (presetCycCurr < presetCycleMin || presetCycCurr > presetCycleMax) presetCycCurr = presetCycleMin;
applyPreset(presetCycCurr);
presetCycCurr++;
if (presetCycCurr > 16) presetCycCurr = 1;
if (presetCycCurr > 250) presetCycCurr = 1;
colorUpdated(NOTIFIER_CALL_MODE_PRESET_CYCLE);
}
}