mirror of
https://github.com/wled/WLED.git
synced 2025-07-23 02:36:39 +00:00
Merge branch '0_15_0' of https://github.com/Aircoookie/WLED into 0_15_0
This commit is contained in:
commit
9328e6faca
13
CHANGELOG.md
13
CHANGELOG.md
@ -1,5 +1,18 @@
|
|||||||
## WLED changelog
|
## WLED changelog
|
||||||
|
|
||||||
|
#### Build 2411250
|
||||||
|
- WLED 0.15.0-rc1 release
|
||||||
|
- Add support for esp32S3_wroom2 (#4243 by @softhack007)
|
||||||
|
- Fix mixed LED SK6812 and ws2812b booloop (#4301 by @willmmiles)
|
||||||
|
- Improved FPS calculation (by DedeHai)
|
||||||
|
- Fix crashes when using HTTP API within MQTT (#4269 by @willmmiles)
|
||||||
|
- Fix array overflow in exploding_fireworks (#4120 by @willmmiles)
|
||||||
|
- Fix MQTT topic buffer length (#4293 by @WouterGritter)
|
||||||
|
- Fix SparkFunDMX fix for possible array bounds violation in DMX.write (by @softhack007)
|
||||||
|
- Allow TV Simulator on single LED segments (by @softhack007)
|
||||||
|
- Fix WLED_RELEASE_NAME (by @netmindz)
|
||||||
|
|
||||||
|
|
||||||
#### Build 2410270
|
#### Build 2410270
|
||||||
- WLED 0.15.0-b7 release
|
- WLED 0.15.0-b7 release
|
||||||
- Re-license the WLED project from MIT to EUPL (#4194 by @Aircoookie)
|
- Re-license the WLED project from MIT to EUPL (#4194 by @Aircoookie)
|
||||||
|
6
package-lock.json
generated
6
package-lock.json
generated
@ -1,18 +1,18 @@
|
|||||||
{
|
{
|
||||||
"name": "wled",
|
"name": "wled",
|
||||||
"version": "0.15.0-b7",
|
"version": "0.15.0-rc1",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "wled",
|
"name": "wled",
|
||||||
"version": "0.15.0-b7",
|
"version": "0.15.0-rc1",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"clean-css": "^5.3.3",
|
"clean-css": "^5.3.3",
|
||||||
"html-minifier-terser": "^7.2.0",
|
"html-minifier-terser": "^7.2.0",
|
||||||
"inliner": "^1.13.1",
|
"inliner": "^1.13.1",
|
||||||
"nodemon": "^3.0.2"
|
"nodemon": "^3.1.7"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@jridgewell/gen-mapping": {
|
"node_modules/@jridgewell/gen-mapping": {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "wled",
|
"name": "wled",
|
||||||
"version": "0.15.0-b7",
|
"version": "0.15.0-rc1",
|
||||||
"description": "Tools for WLED project",
|
"description": "Tools for WLED project",
|
||||||
"main": "tools/cdata.js",
|
"main": "tools/cdata.js",
|
||||||
"directories": {
|
"directories": {
|
||||||
|
@ -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-b7
|
@version 0.15.0-cr1
|
||||||
@author Christian Schwinne
|
@author Christian Schwinne
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// version code in format yymmddb (b = daily build)
|
// version code in format yymmddb (b = daily build)
|
||||||
#define VERSION 2410270
|
#define VERSION 2411250
|
||||||
|
|
||||||
//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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user