From 1160f43820cab598ec0b84c11076bdde5ac83a05 Mon Sep 17 00:00:00 2001 From: Aetherinox Date: Sun, 23 Mar 2025 22:57:09 -0700 Subject: [PATCH] feat: add documentation icon to header of web ui --- tvapp2/www/index.html | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/tvapp2/www/index.html b/tvapp2/www/index.html index d12297d2..f421bfbf 100644 --- a/tvapp2/www/index.html +++ b/tvapp2/www/index.html @@ -6,7 +6,6 @@ <%= appName %> - v<%= appVersion %> - @@ -16,6 +15,11 @@ TVApp2 for Docker + @@ -23,7 +27,7 @@
-
This page displays your most recent copies of the .m3u8 playlist and .xml EPG guide data. Right-click each file, select Copy Link and paste the URLs within an IPTV app such as Jellyfin. The .m3u8 and .m3u8.gz are identical guide lists, but the .xml.gz is compressed and will import into your IPTV application much faster.
+
This page displays your most recent copies of the <%= fileM3U %> playlist and <%= fileXML %> EPG guide data. Right-click each file, select Copy Link and paste the URLs within an IPTV app such as Jellyfin. The <%= fileXML %> and <%= fileTAR %> have identical guide data, however the <%= fileTAR %> is compressed and will import into your IPTV application much faster.
@@ -42,6 +46,9 @@ Size + + Date + Description @@ -60,6 +67,7 @@ + Playlist data file which contains a list of all channels, their associated group, and logo URL. @@ -74,6 +82,7 @@ + XML / EPG guide data which contains a list of all programs which are scheduled to play on a specific channel. @@ -88,6 +97,7 @@ + XML / EPG guide data compressed into tar.gz @@ -121,18 +131,21 @@ document.getElementById("m3u-link").textContent = urlM3U; document.getElementById("m3u-link").href = urlM3U; document.getElementById("m3u-size").textContent = "<%= sizeM3U %>"; + document.getElementById("m3u-date").textContent = "<%= dateM3U %>"; document.getElementById("xml-name").textContent = "<%= fileXML %>"; document.getElementById("xml-name").href = urlXML; document.getElementById("xml-link").textContent = urlXML; document.getElementById("xml-link").href = urlXML; document.getElementById("xml-size").textContent = "<%= sizeXML %>"; + document.getElementById("xml-date").textContent = "<%= dateXML %>"; document.getElementById("tar-name").textContent = "<%= fileTAR %>"; document.getElementById("tar-name").href = urlTAR; document.getElementById("tar-link").textContent = urlTAR; document.getElementById("tar-link").href = urlTAR; document.getElementById("tar-size").textContent = "<%= sizeTAR %>"; + document.getElementById("tar-date").textContent = "<%= dateTAR %>";