Compare commits
No commits in common. "master" and "v1.0.15" have entirely different histories.
@ -200,9 +200,7 @@ public class SRFPlayChannel : IChannel, IHasCacheKey
|
||||
continue;
|
||||
}
|
||||
|
||||
// Generate placeholder image for topic
|
||||
var placeholderUrl = CreatePlaceholderImageUrl(topic.Title ?? topic.Id!, _mediaSourceFactory.GetServerBaseUrl());
|
||||
items.Add(CreateFolder($"category_{topic.Id}", topic.Title ?? topic.Id!, topic.Lead, placeholderUrl));
|
||||
items.Add(CreateFolder($"category_{topic.Id}", topic.Title ?? topic.Id!, topic.Lead));
|
||||
}
|
||||
|
||||
_logger.LogInformation("Added {Count} category folders", topics.Count);
|
||||
@ -216,7 +214,7 @@ public class SRFPlayChannel : IChannel, IHasCacheKey
|
||||
return items;
|
||||
}
|
||||
|
||||
private static ChannelItemInfo CreateFolder(string id, string name, string? overview = null, string? imageUrl = null)
|
||||
private static ChannelItemInfo CreateFolder(string id, string name, string? overview = null)
|
||||
{
|
||||
return new ChannelItemInfo
|
||||
{
|
||||
@ -224,7 +222,7 @@ public class SRFPlayChannel : IChannel, IHasCacheKey
|
||||
Name = name,
|
||||
Type = ChannelItemType.Folder,
|
||||
FolderType = ChannelFolderType.Container,
|
||||
ImageUrl = imageUrl,
|
||||
ImageUrl = null,
|
||||
Overview = overview
|
||||
};
|
||||
}
|
||||
|
||||
@ -8,22 +8,6 @@
|
||||
"category": "Live TV",
|
||||
"imageUrl": "https://gitea.tourolle.paris/dtourolle/jellyfin-srfPlay/raw/branch/master/assests/main%20logo.png",
|
||||
"versions": [
|
||||
{
|
||||
"version": "1.0.16",
|
||||
"changelog": "Release 1.0.16",
|
||||
"targetAbi": "10.9.0.0",
|
||||
"sourceUrl": "https://gitea.tourolle.paris/dtourolle/jellyfin-srfPlay/releases/download/v1.0.16/srfplay_1.0.16.0.zip",
|
||||
"checksum": "0b3a142dd6cea1f00855bcb11bcd847c",
|
||||
"timestamp": "2026-01-17T20:31:09Z"
|
||||
},
|
||||
{
|
||||
"version": "1.0.15",
|
||||
"changelog": "Release 1.0.15",
|
||||
"targetAbi": "10.9.0.0",
|
||||
"sourceUrl": "https://gitea.tourolle.paris/dtourolle/jellyfin-srfPlay/releases/download/v1.0.15/srfplay_1.0.15.0.zip",
|
||||
"checksum": "3140ef53a7460d7ce52daf48bbb37e4d",
|
||||
"timestamp": "2026-01-17T09:54:39Z"
|
||||
},
|
||||
{
|
||||
"version": "1.0.14",
|
||||
"changelog": "Release 1.0.14",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user