Skip to content

Commit 616fc1b

Browse files
committed
v0.8.173
1 parent b7ce2a9 commit 616fc1b

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,10 @@ Work is in progress...
301301

302302
---
303303
## Version history
304+
#### v0.8.173
305+
- bootlog added
306+
- fixed work of start/stop button in configurations with DSP_DUMMY
307+
304308
#### v0.8.138
305309
- fixed unclosed comment in exsamples/myoptions.h
306310

yoRadio/src/core/controls.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,9 @@ void controlsEvent(bool toRight, int8_t volDelta) {
423423
display.putRequest(NEWMODE, PLAYER);
424424
}
425425
if (display.mode() != STATIONS) {
426-
display.putRequest(NEWMODE, VOL);
426+
#if !defined(DUMMYDISPLAY) || defined(USE_NEXTION)
427+
display.putRequest(NEWMODE, VOL);
428+
#endif
427429
if(volDelta!=0){
428430
int nv = config.store.volume+volDelta;
429431
if(nv<0) nv=0;

yoRadio/src/core/options.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef options_h
22
#define options_h
33

4-
#define YOVERSION "0.8.171"
4+
#define YOVERSION "0.8.173"
55

66
/*******************************************************
77
DO NOT EDIT THIS FILE.

0 commit comments

Comments
 (0)