Skip to content

Commit 223bd96

Browse files
committed
Version bump to 0.11.0 "Mirai"
Improved preset name sorting Fixed Preset cycle not working beyond preset 16
1 parent ae46eea commit 223bd96

File tree

8 files changed

+1494
-1485
lines changed

8 files changed

+1494
-1485
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-
### Development versions after the 0.10.2 release
3+
### WLED version 0.11.0
4+
5+
#### Build 2011230
6+
7+
- Version bump to 0.11.0 "Mirai"
8+
- Improved preset name sorting
9+
- Fixed Preset cycle not working beyond preset 16
10+
11+
### Development versions between 0.10.2 and 0.11.0 releases
412

513
#### Build 2011220
614

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

wled00/data/index.htm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1050,8 +1050,8 @@
10501050
<input type="checkbox" id="cyToggle" onchange="toggleCY()">
10511051
<span class="checkmark psv"></span>
10521052
</label><br>
1053-
First preset: <input id="cycs" class="noslide" type="number" min="1" max="14" value="1"><br>
1054-
Last preset: <input id="cyce" class="noslide" type="number" min="2" max="15" value="3"><br>
1053+
First preset: <input id="cycs" class="noslide" type="number" min="1" max="249" value="1"><br>
1054+
Last preset: <input id="cyce" class="noslide" type="number" min="2" max="250" value="3"><br>
10551055
Time per preset: <input id="cyct" class="noslide" type="number" min="0.2" max="6553.5" step="0.1" value="1.2">s<br>
10561056
Transition: <input id="cyctt" class="noslide" type="number" min="0" max="65.5" step="0.1" value="0.7">s
10571057
</div>
@@ -1755,7 +1755,7 @@
17551755
}
17561756
function cmpP(a, b) {
17571757
if (!a[1].n) return (a[0] > b[0]);
1758-
return a[1].n.localeCompare(b[1].n);
1758+
return a[1].n.localeCompare(b[1].n,undefined, {numeric: true});
17591759
}
17601760

17611761
var jsonTimeout;

wled00/html_other.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const char PAGE_update[] PROGMEM = R"=====(<!DOCTYPE html><html><head><meta cont
3939
<title>WLED Update</title><script>function B(){window.history.back()}</script>
4040
<style>
4141
.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%}
42-
</style></head><body><h2>WLED Software Update</h2>Installed version: 0.11.0p<br>
42+
</style></head><body><h2>WLED Software Update</h2>Installed version: 0.11.0<br>
4343
Download the latest binary: <a
4444
href="https://github.com/Aircoookie/WLED/releases" target="_blank"><img
4545
src="https://img.shields.io/github/release/Aircoookie/WLED.svg?style=flat-square">

wled00/html_settings.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ HTTP traffic is unencrypted. An attacker in the same network can intercept form
357357
<h3>Software Update</h3><button type="button" onclick="U()">Manual OTA Update
358358
</button><br>Enable ArduinoOTA: <input type="checkbox" name="AO"><br><h3>About
359359
</h3><a href="https://github.com/Aircoookie/WLED/" target="_blank">WLED</a>
360-
version 0.11.0p<br><br><a
360+
version 0.11.0<br><br><a
361361
href="https://github.com/Aircoookie/WLED/wiki/Contributors-&-About"
362362
target="_blank">Contributors, dependencies and special thanks</a><br>
363363
A huge thank you to everyone who helped me create WLED!<br><br>

wled00/html_ui.h

Lines changed: 1475 additions & 1474 deletions
Large diffs are not rendered by default.

wled00/led.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ void handleNightlight()
305305
if (presetCycCurr < presetCycleMin || presetCycCurr > presetCycleMax) presetCycCurr = presetCycleMin;
306306
applyPreset(presetCycCurr);
307307
presetCycCurr++;
308-
if (presetCycCurr > 16) presetCycCurr = 1;
308+
if (presetCycCurr > 250) presetCycCurr = 1;
309309
colorUpdated(NOTIFIER_CALL_MODE_PRESET_CYCLE);
310310
}
311311
}

wled00/wled.h

Lines changed: 3 additions & 3 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.11.0p
6+
@version 0.11.0
77
@author Christian Schwinne
88
*/
99

1010
// version code in format yymmddb (b = daily build)
11-
#define VERSION 2011220
11+
#define VERSION 2011230
1212

1313
//uncomment this if you have a "my_config.h" file you'd like to use
1414
//#define WLED_USE_MY_CONFIG
@@ -173,7 +173,7 @@
173173
#endif
174174

175175
// Global Variable definitions
176-
WLED_GLOBAL char versionString[] _INIT("0.11.0p");
176+
WLED_GLOBAL char versionString[] _INIT("0.11.0");
177177
#define WLED_CODENAME "Mirai"
178178

179179
// AP and OTA default passwords (for maximum security change them!)

0 commit comments

Comments
 (0)