mirror of https://github.com/e2002/yoradio.git
v0.9.342b
This commit is contained in:
parent
663ece16c6
commit
fd6c1eafd0
|
|
@ -230,6 +230,9 @@ Work is in progress...
|
||||||
|
|
||||||
---
|
---
|
||||||
## Version history
|
## Version history
|
||||||
|
#### v0.9.342b
|
||||||
|
- fixed compilation error for OLED displays
|
||||||
|
|
||||||
#### v0.9.340b
|
#### v0.9.340b
|
||||||
- fixed compilation error audioVS1053Ex.cpp:181:5: error: 'sdog' was not declared in this scope
|
- fixed compilation error audioVS1053Ex.cpp:181:5: error: 'sdog' was not declared in this scope
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
#ifndef options_h
|
#ifndef options_h
|
||||||
#define options_h
|
#define options_h
|
||||||
|
|
||||||
#define YOVERSION "0.9.340b"
|
#define YOVERSION "0.9.342b"
|
||||||
|
|
||||||
/*******************************************************
|
/*******************************************************
|
||||||
DO NOT EDIT THIS FILE.
|
DO NOT EDIT THIS FILE.
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@
|
||||||
config.theme.plcurrent = TFT_BG;
|
config.theme.plcurrent = TFT_BG;
|
||||||
config.theme.plcurrentbg = TFT_FG;
|
config.theme.plcurrentbg = TFT_FG;
|
||||||
config.theme.plcurrentfill = TFT_FG;
|
config.theme.plcurrentfill = TFT_FG;
|
||||||
for(byte i=0;i<5;i++) config.theme.playlist[i] = TFT_FG;
|
for(uint8_t i=0;i<5;i++) config.theme.playlist[i] = TFT_FG;
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue