From 8407213b5a2d9ddff69430b294b8700acb39a680 Mon Sep 17 00:00:00 2001 From: tueddy Date: Mon, 4 Dec 2023 18:04:56 +0100 Subject: [PATCH] fix stuttering sound with some WAV & MP3 files, thanks to @wolle ! --- changelog.md | 2 ++ platformio.ini | 2 +- src/revision.h | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 0458beba..95434122 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,8 @@ ## DEV-branch +* 04.12.2023: fix stuttering sound with some WAV & MP3 files, thanks to @wolle ! +* 04.12.2023: change trackprogress communication from websocket to http to improve stability * 04.12.2023: Remove some convertAsciiToUtf8() #272 * 30.11.2023: Fix a nullptr access after trying to replay an invalid filename (#271), thanks to Olaf! * 29.11.2023: Updated audio library to play more MP3s, faster track change & delivery of the cover image diff --git a/platformio.ini b/platformio.ini index df5cd131..bb901dd9 100644 --- a/platformio.ini +++ b/platformio.ini @@ -31,7 +31,7 @@ extra_scripts = pre:updateSdkConfig.py pre:processHtml.py lib_deps = - https://github.com/schreibfaul1/ESP32-audioI2S.git#4311587 + https://github.com/schreibfaul1/ESP32-audioI2S.git#2a0ab81 https://github.com/madhephaestus/ESP32Encoder.git#9979722 https://github.com/knolleary/pubsubclient.git#2d228f2 https://github.com/peterus/ESP-FTP-Server-Lib#554959f diff --git a/src/revision.h b/src/revision.h index bd169f12..d5624403 100644 --- a/src/revision.h +++ b/src/revision.h @@ -1,4 +1,4 @@ #pragma once #include "gitrevision.h" -constexpr const char softwareRevision[] = "Software-revision: 20231130-1-DEV"; +constexpr const char softwareRevision[] = "Software-revision: 20231204-1-DEV";