From a7dfcd09d12333db4a8450a4bfdf0e759699bfe6 Mon Sep 17 00:00:00 2001 From: Arno Hautala Date: Thu, 23 Sep 2021 15:41:57 -0400 Subject: [PATCH 1/2] add show links to episode page --- client/episodes_new.html | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/client/episodes_new.html b/client/episodes_new.html index 387974b..5ff4c62 100644 --- a/client/episodes_new.html +++ b/client/episodes_new.html @@ -138,7 +138,12 @@ style="color: green" class="fas fa-check-circle" > - ${item.Title} + ${item.Title}
@@ -434,6 +439,9 @@ var app = new Vue({ downloadFromServer(item){ return "/podcastitems/"+item.ID+"/file" }, + goToShow(item){ + return "/podcasts/"+item.Podcast.ID+"/view" + }, changePlayedStatus(item){ changePlayedStatus(item.ID,!item.IsPlayed,()=>item.IsPlayed=!item.IsPlayed) }, From e8a36ae4a68b535eeae39e745ee6e5b8a876ab17 Mon Sep 17 00:00:00 2001 From: Arno Hautala Date: Thu, 7 Oct 2021 13:32:22 -0400 Subject: [PATCH 2/2] podcast show link from the now playing area --- client/player.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/player.html b/client/player.html index 27f8329..33f1182 100644 --- a/client/player.html +++ b/client/player.html @@ -736,7 +736,7 @@ div#large-visualization{
- +

@@ -879,6 +879,7 @@ div#large-visualization{ id:x.ID, name:x.Title, url:"/podcastitems/"+x.ID+"/file", + show_link:""+x.Podcast.Title+"", cover_art_url:image, artist:x.Podcast.Title, summary:x.Summary,