This commit is contained in:
e2002
2022-12-09 13:16:14 +03:00
parent b7ce2a98c7
commit 616fc1be01
3 changed files with 8 additions and 2 deletions

View File

@@ -301,6 +301,10 @@ Work is in progress...
--- ---
## Version history ## Version history
#### v0.8.173
- bootlog added
- fixed work of start/stop button in configurations with DSP_DUMMY
#### v0.8.138 #### v0.8.138
- fixed unclosed comment in exsamples/myoptions.h - fixed unclosed comment in exsamples/myoptions.h

View File

@@ -423,7 +423,9 @@ void controlsEvent(bool toRight, int8_t volDelta) {
display.putRequest(NEWMODE, PLAYER); display.putRequest(NEWMODE, PLAYER);
} }
if (display.mode() != STATIONS) { if (display.mode() != STATIONS) {
#if !defined(DUMMYDISPLAY) || defined(USE_NEXTION)
display.putRequest(NEWMODE, VOL); display.putRequest(NEWMODE, VOL);
#endif
if(volDelta!=0){ if(volDelta!=0){
int nv = config.store.volume+volDelta; int nv = config.store.volume+volDelta;
if(nv<0) nv=0; if(nv<0) nv=0;

View File

@@ -1,7 +1,7 @@
#ifndef options_h #ifndef options_h
#define options_h #define options_h
#define YOVERSION "0.8.171" #define YOVERSION "0.8.173"
/******************************************************* /*******************************************************
DO NOT EDIT THIS FILE. DO NOT EDIT THIS FILE.