Skip to content

Commit af34da4

Browse files
authored
Merge pull request #4231 from Aircoookie/b7
WLED 0.15.0-b7 release
2 parents 2703c98 + 4588219 commit af34da4

File tree

6 files changed

+23
-8
lines changed

6 files changed

+23
-8
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
## WLED changelog
22

3+
#### Build 2410270
4+
- WLED 0.15.0-b7 release
5+
- Re-license the WLED project from MIT to EUPL (#4194 by @Aircoookie)
6+
- Fix alexa devices invisible/uncontrollable (#4214 by @Svennte)
7+
- Add visual expand button on hover (#4172)
8+
- Usermod: Audioreactive tuning and performance enhancements (by @softhack007)
9+
- `/json/live` (JSON live data/peek) only enabled when WebSockets are disabled
10+
- Various bugfixes and optimisations: #4179, #4215, #4219, #4222, #4223, #4224, #4228, #4230
11+
312
#### Build 2410140
413
- WLED 0.15.0-b6 release
514
- Added BRT timezone (#4188 by @LuisFadini)

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wled",
3-
"version": "0.15.0-b6",
3+
"version": "0.15.0-b7",
44
"description": "Tools for WLED project",
55
"main": "tools/cdata.js",
66
"directories": {

wled00/data/index.css

+6-1
Original file line numberDiff line numberDiff line change
@@ -1040,7 +1040,7 @@ textarea {
10401040

10411041
.segname .flr, .pname .flr {
10421042
transform: rotate(0deg);
1043-
right: -6px;
1043+
/*right: -6px;*/
10441044
}
10451045

10461046
/* segment power wrapper */
@@ -1335,6 +1335,11 @@ TD .checkmark, TD .radiomark {
13351335
box-shadow: 0 0 10px 4px var(--c-1);
13361336
}
13371337

1338+
.lstI .flr:hover {
1339+
background: var(--c-6);
1340+
border-radius: 100%;
1341+
}
1342+
13381343
#pcont .selected:not([class*="expanded"]) {
13391344
bottom: 52px;
13401345
top: 42px;

wled00/wled.h

+4-3
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.15.0-b6
6+
@version 0.15.0-b7
77
@author Christian Schwinne
88
*/
99

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

1313
//uncomment this if you have a "my_config.h" file you'd like to use
1414
//#define WLED_USE_MY_CONFIG
@@ -36,12 +36,13 @@
3636
#undef WLED_ENABLE_ADALIGHT // disable has priority over enable
3737
#endif
3838
//#define WLED_ENABLE_DMX // uses 3.5kb
39-
//#define WLED_ENABLE_JSONLIVE // peek LED output via /json/live (WS binary peek is always enabled)
4039
#ifndef WLED_DISABLE_LOXONE
4140
#define WLED_ENABLE_LOXONE // uses 1.2kb
4241
#endif
4342
#ifndef WLED_DISABLE_WEBSOCKETS
4443
#define WLED_ENABLE_WEBSOCKETS
44+
#else
45+
#define WLED_ENABLE_JSONLIVE // peek LED output via /json/live (WS binary peek is always enabled)
4546
#endif
4647

4748
//#define WLED_DISABLE_ESPNOW // Removes dependence on esp now

wled00/xml.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ void getSettingsJS(byte subPage, Print& settingsScript)
501501
#endif
502502
printSetFormValue(settingsScript,PSTR("BD"),serialBaud);
503503
#ifndef WLED_ENABLE_ADALIGHT
504-
settingsScript.print(F("toggle('Serial);"));
504+
settingsScript.print(F("toggle('Serial');"));
505505
#endif
506506
}
507507

0 commit comments

Comments
 (0)