Skip to content

Commit 9328e6f

Browse files
committed
Merge branch '0_15_0' of https://github.com/Aircoookie/WLED into 0_15_0
2 parents 3e22f9c + bbacc2d commit 9328e6f

File tree

4 files changed

+19
-6
lines changed

4 files changed

+19
-6
lines changed

CHANGELOG.md

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

3+
#### Build 2411250
4+
- WLED 0.15.0-rc1 release
5+
- Add support for esp32S3_wroom2 (#4243 by @softhack007)
6+
- Fix mixed LED SK6812 and ws2812b booloop (#4301 by @willmmiles)
7+
- Improved FPS calculation (by DedeHai)
8+
- Fix crashes when using HTTP API within MQTT (#4269 by @willmmiles)
9+
- Fix array overflow in exploding_fireworks (#4120 by @willmmiles)
10+
- Fix MQTT topic buffer length (#4293 by @WouterGritter)
11+
- Fix SparkFunDMX fix for possible array bounds violation in DMX.write (by @softhack007)
12+
- Allow TV Simulator on single LED segments (by @softhack007)
13+
- Fix WLED_RELEASE_NAME (by @netmindz)
14+
15+
316
#### Build 2410270
417
- WLED 0.15.0-b7 release
518
- Re-license the WLED project from MIT to EUPL (#4194 by @Aircoookie)

package-lock.json

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

wled00/wled.h

+2-2
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-b7
6+
@version 0.15.0-cr1
77
@author Christian Schwinne
88
*/
99

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

1313
//uncomment this if you have a "my_config.h" file you'd like to use
1414
//#define WLED_USE_MY_CONFIG

0 commit comments

Comments
 (0)