v0.9.682
This commit is contained in:
@@ -235,6 +235,9 @@ Work is in progress...
|
|||||||
|
|
||||||
---
|
---
|
||||||
## Version history
|
## Version history
|
||||||
|
#### v0.9.682
|
||||||
|
- fixed bug with redundant epoch time being added to the tag in SD mode https://t.me/yoradiochat/66688
|
||||||
|
|
||||||
#### v0.9.680
|
#### v0.9.680
|
||||||
- fixed clock display bug when exiting screensaver in playback mode
|
- fixed clock display bug when exiting screensaver in playback mode
|
||||||
- increased number of SD card initialization attempts when switching mode
|
- increased number of SD card initialization attempts when switching mode
|
||||||
|
|||||||
@@ -84,11 +84,9 @@ void audio_id3album(const char *info){
|
|||||||
if(strlen(config.station.title)==0){
|
if(strlen(config.station.title)==0){
|
||||||
config.setTitle(info);
|
config.setTitle(info);
|
||||||
}else{
|
}else{
|
||||||
size_t tbs = sizeof(config.tmpBuf);
|
char tmp[BUFLEN];
|
||||||
strlcat(config.tmpBuf, config.station.title, tbs);
|
snprintf(tmp, BUFLEN, "%s - %s", config.station.title, info);
|
||||||
strlcat(config.tmpBuf, " - ", tbs);
|
config.setTitle(tmp);
|
||||||
strlcat(config.tmpBuf, info, tbs);
|
|
||||||
config.setTitle(config.tmpBuf);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
#define options_h
|
#define options_h
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define YOVERSION "0.9.680"
|
#define YOVERSION "0.9.682"
|
||||||
|
|
||||||
/*******************************************************
|
/*******************************************************
|
||||||
DO NOT EDIT THIS FILE.
|
DO NOT EDIT THIS FILE.
|
||||||
|
|||||||
Reference in New Issue
Block a user