Skip to content

Commit

Permalink
Änderungen / Korrekturen siehe changelog.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
rols1 committed Aug 13, 2023
1 parent b8a4ce3 commit 06da494
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion addon.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.ardundzdf" name="ARDundZDF" version="4.8.0+nexus" provider-name="rols1 (rols1@gmx.de)">
<addon id="plugin.video.ardundzdf" name="ARDundZDF" version="4.8.1+nexus" provider-name="rols1 (rols1@gmx.de)">
<requires>
<import addon="xbmc.python" version="3.0.1"/>
<import addon="script.module.kodi-six" />
Expand Down
4 changes: 2 additions & 2 deletions ardundzdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@

# VERSION -> addon.xml aktualisieren
# <nr>128</nr> # Numerierung für Einzelupdate
VERSION = '4.8.0'
VDATE = '06.08.2023'
VERSION = '4.8.1'
VDATE = '13.08.2023'


# (c) 2019 by Roland Scholz, rols1@gmx.de
Expand Down
11 changes: 11 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,17 @@ CHANGE HISTORY
max_col 97
--------------

13.08.2023 4.8.1
ZDF_Live: utf-Behandlung für Texte (MyDialog, fparams) - relevant für
Kodi Leia.
Kikaninchen_Videos: mediatyp=video entfernt (rekurs. Aufruf, verhindert
Sofortstarts in Kikaninchen_Videos).
ZDF-Erweiterung: Teletext (teletext.zdf.de), neue Funktionen ZDF_Teletext,
ZDF_Teletext_Table + ZDF_Teletext_setPage, Icons: icon-next, icon-previos,
teletext_zdf.
ARD-Erweiterung (Modul ARDnew): Teletext (ard-text.de/index.php), neue
Funktionen ARD_Teletext, ARD_Teletext_Table, Icon: teletext_ard..

30.07.2023 4.8.0
ZDF_Live: abweichendes Format der Videoquellen berücksichtigt (key:formitaeten
außerhalb key:cluster/epgCluster), Fett-Markierung aus Titel entfernt für
Expand Down
Binary file added resources/images/teletext_ard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion resources/lib/ARDnew.py
Original file line number Diff line number Diff line change
Expand Up @@ -1304,7 +1304,7 @@ def ARD_Teletext(path=""):
for item in Seiten:
title, pgnr = item.split("|")
title = "[B]%s[/B]: %s" % (pgnr, title)
href = "%s%s" % (base, nextpg)
href = "%s%s" % (base, pgnr)
fparams="&fparams={'path': '%s'}" % quote(href)
addDir(li=li, label=title, action="dirList", dirID="resources.lib.ARDnew.ARD_Teletext",
fanart=img, thumb=thumb, fparams=fparams)
Expand Down

0 comments on commit 06da494

Please sign in to comment.