v0.9.682
This commit is contained in:
@@ -235,6 +235,9 @@ Work is in progress...
|
||||
|
||||
---
|
||||
## 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
|
||||
- fixed clock display bug when exiting screensaver in playback 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){
|
||||
config.setTitle(info);
|
||||
}else{
|
||||
size_t tbs = sizeof(config.tmpBuf);
|
||||
strlcat(config.tmpBuf, config.station.title, tbs);
|
||||
strlcat(config.tmpBuf, " - ", tbs);
|
||||
strlcat(config.tmpBuf, info, tbs);
|
||||
config.setTitle(config.tmpBuf);
|
||||
char tmp[BUFLEN];
|
||||
snprintf(tmp, BUFLEN, "%s - %s", config.station.title, info);
|
||||
config.setTitle(tmp);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
#define options_h
|
||||
#pragma once
|
||||
|
||||
#define YOVERSION "0.9.680"
|
||||
#define YOVERSION "0.9.682"
|
||||
|
||||
/*******************************************************
|
||||
DO NOT EDIT THIS FILE.
|
||||
|
||||
Reference in New Issue
Block a user