From 616fc1be01d96debd7a83222be0ef90b3b9e8881 Mon Sep 17 00:00:00 2001 From: e2002 Date: Fri, 9 Dec 2022 13:16:14 +0300 Subject: [PATCH] v0.8.173 --- README.md | 4 ++++ yoRadio/src/core/controls.cpp | 4 +++- yoRadio/src/core/options.h | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2a319af..c5842a5 100644 --- a/README.md +++ b/README.md @@ -301,6 +301,10 @@ Work is in progress... --- ## Version history +#### v0.8.173 +- bootlog added +- fixed work of start/stop button in configurations with DSP_DUMMY + #### v0.8.138 - fixed unclosed comment in exsamples/myoptions.h diff --git a/yoRadio/src/core/controls.cpp b/yoRadio/src/core/controls.cpp index 6eef862..99a3778 100644 --- a/yoRadio/src/core/controls.cpp +++ b/yoRadio/src/core/controls.cpp @@ -423,7 +423,9 @@ void controlsEvent(bool toRight, int8_t volDelta) { display.putRequest(NEWMODE, PLAYER); } if (display.mode() != STATIONS) { - display.putRequest(NEWMODE, VOL); + #if !defined(DUMMYDISPLAY) || defined(USE_NEXTION) + display.putRequest(NEWMODE, VOL); + #endif if(volDelta!=0){ int nv = config.store.volume+volDelta; if(nv<0) nv=0; diff --git a/yoRadio/src/core/options.h b/yoRadio/src/core/options.h index bae4260..855d0ed 100644 --- a/yoRadio/src/core/options.h +++ b/yoRadio/src/core/options.h @@ -1,7 +1,7 @@ #ifndef options_h #define options_h -#define YOVERSION "0.8.171" +#define YOVERSION "0.8.173" /******************************************************* DO NOT EDIT THIS FILE.