Skip to content

Commit

Permalink
Merge pull request #269 from atuline/dev
Browse files Browse the repository at this point in the history
Version bump 0.13.4-beta
  • Loading branch information
softhack007 authored Jun 25, 2023
2 parents 4e80400 + 2f4f37c commit e2190f4
Show file tree
Hide file tree
Showing 102 changed files with 4,605 additions and 8,529 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@
node_modules
.idea
.direnv
wled00/wled00.ino.cpp
4 changes: 1 addition & 3 deletions .gitpod.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
FROM gitpod/workspace-full

USER gitpod

RUN pip3 install -U platformio
USER gitpod
9 changes: 4 additions & 5 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
tasks:
- command: platformio run
- command: pip3 install -U platformio && platformio run

image:
file: .gitpod.Dockerfile

vscode:
extensions:
- [email protected]:u3GsZ5PK12Ddr79vh4TWgQ==
- [email protected]:e0IYyp0efFqVsrZwsIe8CA==
- [email protected]:fbZNfSpnd8XkAHGfAPS2rA==
- [email protected]:Tbu8dTz0i+/bgcKQTQ5b8g==
- Atishay-Jain.All-Autocomplete
- esbenp.prettier-vscode
- shardulm94.trailing-spaces
35 changes: 34 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,37 @@
## WLED changelog
## WLED-SR changelog
- 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)
- Remove DST from CST timezone
- Pakistan time-zone (PKT)
- various fixes and enhancements
- Removed Blynk support (servers shut down on 31st Dec 2022)

### WLED release 0.13.3

Expand Down
38 changes: 38 additions & 0 deletions boards/esp32_16MB-poe.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"build": {
"arduino": {
"ldscript": "esp32_out.ld"
},
"core": "esp32",
"extra_flags": "-DARDUINO_ESP32_POE",
"f_cpu": "240000000L",
"f_flash": "40000000L",
"flash_mode": "dio",
"mcu": "esp32",
"variant": "esp32-poe",
"partitions": "partitions_16M.csv"
},
"connectivity": [
"wifi",
"bluetooth",
"ethernet",
"can"
],
"debug": {
"openocd_board": "esp-wroom-32.cfg"
},
"frameworks": [
"arduino",
"espidf"
],
"name": "ESP32 16MB",
"upload": {
"flash_size": "16MB",
"maximum_ram_size": 327680,
"maximum_size": 16777216,
"require_upload_port": true,
"speed": 2000000
},
"url": "https://en.wikipedia.org/wiki/ESP32",
"vendor": "Multiple"
}
38 changes: 38 additions & 0 deletions boards/esp32_16MB.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"build": {
"arduino": {
"ldscript": "esp32_out.ld"
},
"core": "esp32",
"extra_flags": "-DARDUINO_ESP32_DEV",
"f_cpu": "240000000L",
"f_flash": "40000000L",
"flash_mode": "dio",
"mcu": "esp32",
"variant": "esp32",
"partitions": "partitions_16M.csv"
},
"connectivity": [
"wifi",
"bluetooth",
"ethernet",
"can"
],
"debug": {
"openocd_board": "esp-wroom-32.cfg"
},
"frameworks": [
"arduino",
"espidf"
],
"name": "ESP32 16MB",
"upload": {
"flash_size": "16MB",
"maximum_ram_size": 327680,
"maximum_size": 16777216,
"require_upload_port": true,
"speed": 2000000
},
"url": "https://en.wikipedia.org/wiki/ESP32",
"vendor": "Multiple"
}
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",
"version": "0.13.4-beta",
"description": "Tools for WLED project",
"main": "tools/cdata.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion pio-scripts/output_bins.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def bin_rename_copy(source, target, env):
if release_name:
_create_dirs(["release"])
version = _get_cpp_define_value(env, "WLED_VERSION")
release_file = "{}release{}soundReactive_WLED_{}_{}.bin".format(OUTPUT_DIR, os.path.sep, version, release_name)
release_file = "{}release{}WLEDSR_{}_{}.bin".format(OUTPUT_DIR, os.path.sep, version, release_name) #WLEDSR: add SR postfix to WLED
shutil.copy(str(target[0]), release_file)

# check if new target files exist and remove if necessary
Expand Down
Loading

0 comments on commit e2190f4

Please sign in to comment.