Skip to content

Commit

Permalink
version bump 0.13.4-beta, changelog update
Browse files Browse the repository at this point in the history
  • Loading branch information
softhack007 committed Jun 25, 2023
1 parent 460bfaf commit 2f4f37c
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 10 deletions.
23 changes: 22 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,30 @@
## WLED-SR changelog
(tbw)
- upgrade custom effects to ARTI-FX (from MoonModules fork)
- Audio responsive palettes
- beat-sensitive effect variants (Palette, Popcorn, Fireworks, Starburst)
- various effect bugfixes and minor effect improvements
- 2d Lissajous improvements
- Allow up to 9 (instead of 8) LED pins
- better support for some "M5" devices (needs specific firmware build)
- Preview colors bugfix
- Segment offset bugfix
- upgrade to fastLED 3.6.0
- upgrade to NeoPixelBus 2.7.1
- woraround for spurious crash in serializePalettes
- audio input filtering improvements
- Low-Cut filter for all audio inputs (reduces noise)
- better handling of analog audio
- Audio core and FFT optimizations
- I2S MCLK pin is configurable, sound settings page cleanups
- Improvements for Line-In I2S boards

(list of bugfixed to be completed)


## WLED upstream changelog

### Upstream changes backported to WLED-SR
- bugfix for large presets files (>64Kb)
- updated NeoPixelBus to 2.7.1
- Fixed APA102 output on Ethernet enabled controllers
- Added ability to disable ADAlight (-D WLED_DISABLE_ADALIGHT)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wled",
"version": "0.13.3.9",
"version": "0.13.4-beta",
"description": "Tools for WLED project",
"main": "tools/cdata.js",
"directories": {
Expand Down
3 changes: 2 additions & 1 deletion platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,8 @@ lib_deps =
fastled/FastLED @ ~3.6.0
;;https://github.com/FastLED/FastLED.git#master @3.6.0+sha.23c67b7
IRremoteESP8266 @ ~2.8.2
https://github.com/Aircoookie/ESPAsyncWebServer.git @ ~2.0.7
;; https://github.com/Aircoookie/ESPAsyncWebServer.git @ ~2.0.7
https://github.com/lost-hope/ESPAsyncWebServer.git#master ;; WLEDSR to display .log and .wled files in /edit
#For use of the TTGO T-Display ESP32 Module with integrated TFT display uncomment the following line
#TFT_eSPI
#For use SSD1306 OLED display uncomment following
Expand Down
2 changes: 1 addition & 1 deletion wled00/html_other.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function B(){window.history.back()}function U(){document.getElementById("uf").st
%CSS%%SCSS%</head><body onload="GetV()">
<h2>Sound Reactive WLED Software Update</h2><form method="POST"
action="/update" id="uf" enctype="multipart/form-data" onsubmit="U()"><span
class="sip">0.13.3.9</span><br>Download the latest release: <a
class="sip">0.13.4-beta</span><br>Download the latest release: <a
href="https://github.com/atuline/WLED/releases" target="_blank"><img
src="https://img.shields.io/github/release/atuline/WLED.svg?style=flat-square">
</a><br><input type="file" name="update" required><br><button type="submit">
Expand Down
2 changes: 1 addition & 1 deletion wled00/html_settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ onclick='uploadFile(d.Sf.data2,"/cfg.json")'><br></div><div style="color:#fa0">
Incorrect configuration may require a factory reset or re-flashing of your ESP.
</div>For security reasons, passwords are not backed up.<h3>About</h3><a
href="https://github.com/atuline/WLED/" target="_blank">WLED</a>
SR version 0.13.3.9<br><br><a
SR version 0.13.4-beta<br><br><a
href="https://github.com/atuline/WLED/wiki/Contributors-and-credits"
target="_blank">Contributors, dependencies and special thanks</a><br>
A huge thank you to everyone who helped me create WLED!<br><br>
Expand Down
2 changes: 1 addition & 1 deletion wled00/improv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ void sendImprovInfoResponse() {
out[11] = 4; //Firmware len ("WLED")
out[12] = 'W'; out[13] = 'L'; out[14] = 'E'; out[15] = 'D';
uint8_t lengthSum = 17;
uint8_t vlen = sprintf_P(out+lengthSum,PSTR("0.13.3.9/%i"),VERSION);
uint8_t vlen = sprintf_P(out+lengthSum,PSTR("0.13.4/%i"),VERSION);
out[16] = vlen; lengthSum += vlen;
uint8_t hlen = 7;
#ifdef ESP8266
Expand Down
4 changes: 2 additions & 2 deletions wled00/wled.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
*/

// version code in format yymmddb (b = daily build)
#define VERSION 2306211 // WLEDSR specific version
#define SR_VERSION_NAME "0.13.3.9" // WLEDSR version name --> some files need manual updating: package.json, package-lock.json, improv.cpp
#define VERSION 2306251 // WLEDSR specific version
#define SR_VERSION_NAME "0.13.4-beta" // WLEDSR version name --> some files need manual updating: package.json, package-lock.json, improv.cpp

#define AC_VERSION 2208222 // AC WLED base version; last updated by PR #239 -> Merge AC-0.13.3 into dev
#define AC_VERSION_NAME "0.13.3" // AC WLED base version name; last change 22.August 2022
Expand Down

0 comments on commit 2f4f37c

Please sign in to comment.