WLED 0.15.0-b7 release

- fix for #4172
- fix for #4230
- /json/live enabled when WS disabled
This commit is contained in:
Blaž Kristan 2024-10-27 18:47:10 +01:00
parent 2703c9899a
commit 6e89346f00
6 changed files with 20 additions and 8 deletions

View File

@ -1,5 +1,11 @@
## WLED changelog ## WLED changelog
#### Build 2410270
- WLED 0.15.0-b7 release
- Add visual expand button on hover (#4172)
- `/json/live` (JSON live data/peek) only enabled when WebSockets are disabled
- Bugfixes: #4179, #4215, #4219, #4224, #4228, #4230
#### Build 2410140 #### Build 2410140
- WLED 0.15.0-b6 release - WLED 0.15.0-b6 release
- Added BRT timezone (#4188 by @LuisFadini) - Added BRT timezone (#4188 by @LuisFadini)

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "wled", "name": "wled",
"version": "0.15.0-b6", "version": "0.15.0-b7",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "wled", "name": "wled",
"version": "0.15.0-b6", "version": "0.15.0-b7",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"clean-css": "^5.3.3", "clean-css": "^5.3.3",

View File

@ -1,6 +1,6 @@
{ {
"name": "wled", "name": "wled",
"version": "0.15.0-b6", "version": "0.15.0-b7",
"description": "Tools for WLED project", "description": "Tools for WLED project",
"main": "tools/cdata.js", "main": "tools/cdata.js",
"directories": { "directories": {

View File

@ -1040,7 +1040,7 @@ textarea {
.segname .flr, .pname .flr { .segname .flr, .pname .flr {
transform: rotate(0deg); transform: rotate(0deg);
right: -6px; /*right: -6px;*/
} }
/* segment power wrapper */ /* segment power wrapper */
@ -1335,6 +1335,11 @@ TD .checkmark, TD .radiomark {
box-shadow: 0 0 10px 4px var(--c-1); box-shadow: 0 0 10px 4px var(--c-1);
} }
.lstI .flr:hover {
background: var(--c-6);
border-radius: 100%;
}
#pcont .selected:not([class*="expanded"]) { #pcont .selected:not([class*="expanded"]) {
bottom: 52px; bottom: 52px;
top: 42px; top: 42px;

View File

@ -3,12 +3,12 @@
/* /*
Main sketch, global variable declarations Main sketch, global variable declarations
@title WLED project sketch @title WLED project sketch
@version 0.15.0-b6 @version 0.15.0-b7
@author Christian Schwinne @author Christian Schwinne
*/ */
// version code in format yymmddb (b = daily build) // version code in format yymmddb (b = daily build)
#define VERSION 2410260 #define VERSION 2410270
//uncomment this if you have a "my_config.h" file you'd like to use //uncomment this if you have a "my_config.h" file you'd like to use
//#define WLED_USE_MY_CONFIG //#define WLED_USE_MY_CONFIG
@ -36,12 +36,13 @@
#undef WLED_ENABLE_ADALIGHT // disable has priority over enable #undef WLED_ENABLE_ADALIGHT // disable has priority over enable
#endif #endif
//#define WLED_ENABLE_DMX // uses 3.5kb //#define WLED_ENABLE_DMX // uses 3.5kb
//#define WLED_ENABLE_JSONLIVE // peek LED output via /json/live (WS binary peek is always enabled)
#ifndef WLED_DISABLE_LOXONE #ifndef WLED_DISABLE_LOXONE
#define WLED_ENABLE_LOXONE // uses 1.2kb #define WLED_ENABLE_LOXONE // uses 1.2kb
#endif #endif
#ifndef WLED_DISABLE_WEBSOCKETS #ifndef WLED_DISABLE_WEBSOCKETS
#define WLED_ENABLE_WEBSOCKETS #define WLED_ENABLE_WEBSOCKETS
#else
#define WLED_ENABLE_JSONLIVE // peek LED output via /json/live (WS binary peek is always enabled)
#endif #endif
//#define WLED_DISABLE_ESPNOW // Removes dependence on esp now //#define WLED_DISABLE_ESPNOW // Removes dependence on esp now

View File

@ -501,7 +501,7 @@ void getSettingsJS(byte subPage, Print& settingsScript)
#endif #endif
printSetFormValue(settingsScript,PSTR("BD"),serialBaud); printSetFormValue(settingsScript,PSTR("BD"),serialBaud);
#ifndef WLED_ENABLE_ADALIGHT #ifndef WLED_ENABLE_ADALIGHT
settingsScript.print(F("toggle('Serial);")); settingsScript.print(F("toggle('Serial');"));
#endif #endif
} }