Skip to content

Commit

Permalink
Einzelupdate TagesschauXL.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rols1 committed Jul 2, 2024
1 parent 97a4c3a commit 4f0fc48
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions resources/lib/TagesschauXL.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
# TagesschauXL.py - Teil von Kodi-Addon-ARDundZDF
# Modul für für die Inhalte von tagesschau.de
################################################################################
# <nr>14</nr> # Numerierung für Einzelupdate
# Stand: 16.05.2024
# <nr>15</nr> # Numerierung für Einzelupdate
# Stand: 02.07.2024
#
# Anpassung Python3: Modul future
# Anpassung Python3: Modul kodi_six + manuelle Anpassungen
Expand Down Expand Up @@ -85,8 +85,9 @@
ICON_MAIN_TVLIVE= 'tv-livestreams.png'
ICON_MEHR = "icon-mehr.png"
ICON_SEARCH = 'ard-suche.png'
ICON_DELETE = "icon-delete.png"
ICON_DELETE = "icon-delete.png"

ICON_EINFACH = "tagesschau_einfach.png"
# Github-Icons zum Nachladen aus Platzgründen
GIT_CAL = "https://github.com/rols1/PluginPictures/blob/master/ARDundZDF/KIKA_tivi/icon-calendar.png?raw=true"
ICON_MAINXL = 'https://github.com/rols1/PluginPictures/blob/master/ARDundZDF/TagesschauXL/tagesschau.png?raw=true'
Expand Down Expand Up @@ -168,6 +169,7 @@ def Main_XL():
# --------------------------------- # -> ARDnew -> get_json_content
T_List = [u"tagesschau|%s|%s" % (ICON_LAST, "Y3JpZDovL2Rhc2Vyc3RlLmRlL3RhZ2Vzc2NoYXU"),
u"tagesschau Gebärdensprache|%s|%s" % (ICON_20GEST, "Y3JpZDovL2Rhc2Vyc3RlLmRlL3RhZ2Vzc2NoYXUgbWl0IEdlYsOkcmRlbnNwcmFjaGU"),
u"tagesschau in Einfacher Sprache|%s|%s" % (R(ICON_EINFACH), "Y3JpZDovL3RhZ2Vzc2NoYXUyNC90YWdlc3NjaGF1LWluLWVpbmZhY2hlci1zcHJhY2hl"),
u"tagesschau24|%s|%s" % (ICON_24, "Y3JpZDovL2Rhc2Vyc3RlLmRlL3RhZ2Vzc2NoYXUyNA"),
u"tagesschau in 100 SEKUNDEN|%s|%s" % (ICON_100sec, "Y3JpZDovL2Rhc2Vyc3RlLmRlL3RzMTAwcw"),
u"tagesthemen|%s|%s" % (ICON_TTHEMEN, "Y3JpZDovL2Rhc2Vyc3RlLmRlL3RhZ2VzdGhlbWVu"),
Expand All @@ -177,7 +179,7 @@ def Main_XL():
title, thumb, pid = t.split("|")
PLog(title); PLog(thumb); PLog(pid)
title = "[B]%s[/B]" % title
tag = u"neu ab 20.01.2024 (mit allen von der ARD angebotenen Stream-Qualitäten)"
tag = u"mit allen von der ARD angebotenen Stream-Qualitäten"
fparams="&fparams={'title': '%s', 'pid': '%s'}" % (quote(title), pid)
addDir(li=li, label=title, action="dirList", dirID="resources.lib.TagesschauXL.XL_Tagesschau",
fanart=ICON_MAINXL, thumb=thumb, tagline=tag, fparams=fparams, mediatype="")
Expand Down

0 comments on commit 4f0fc48

Please sign in to comment.