This commit is contained in:
e2002
2025-08-26 11:09:16 +03:00
parent e63d6f7cdd
commit a5f91155b5
3 changed files with 7 additions and 6 deletions

View File

@@ -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

View File

@@ -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);
} }
} }
} }

View File

@@ -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.