Skip to content

Commit

Permalink
changes see changelog.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
rols1 committed Feb 18, 2024
1 parent 82fd0d4 commit 53109f5
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ Funktionen:
- ~~ZDFmobile~~ - entfernt ab Juni 2023 (obsolet)
- 3Sat
- ~~funk~~ - entfernt ab Mai 2023 (Videos in ZDF-funk, Podcasts in der ARD-Audiothek verfügbar)
- Kinderprogramme (z.Z. KIKA und ZDFtivi)
- Kinderprogramme (KIKA, ZDFtivi, MausLive u.a.)
- TagesschauXL (https://www.tagesschau.de/ und https://www.ardmediathek.de/tagesschau24)
- phoenix (https://www.phoenix.de/ und https://www.ardmediathek.de/phoenix)
- Arte-Kategorien
Expand Down
4 changes: 2 additions & 2 deletions 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.9.6+nexus" provider-name="rols1 (rols1@gmx.de)">
<addon id="plugin.video.ardundzdf" name="ARDundZDF" version="4.9.7+nexus" provider-name="rols1 (rols1@gmx.de)">
<requires>
<import addon="xbmc.python" version="3.0.1"/>
<import addon="script.module.kodi-six" />
Expand All @@ -10,7 +10,7 @@
<extension point="xbmc.addon.metadata">
<summary lang="de">ARD- und ZDF-Mediathek</summary>
<description lang="de">einschließlich Live-TV mit Aufnahmefunktion, Merkliste, Live-Radio, Podcasts.
Module: ZDFmobile, 3Sat, funk, Kinderprogramme (z.Z. KIKA und ZDFtivi), TagesschauXL, phoenix, Arte-Kategorien, Audiothek.
Module: ZDFmobile, 3Sat, funk, Kinderprogramme (KIKA, ZDFtivi, MausLive u.a.), TagesschauXL, phoenix, Arte-Kategorien, Audiothek.
Screenshots und Wicki siehe Repo Kodi-Addon-ARDundZDF auf Github.
</description>
<platform>all</platform>
Expand Down
13 changes: 7 additions & 6 deletions ardundzdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@

# VERSION -> addon.xml aktualisieren
# <nr>178</nr> # Numerierung für Einzelupdate
VERSION = '4.9.6'
VDATE = '09.02.2024'
VERSION = '4.9.7'
VDATE = '18.02.2024'


# (c) 2019 by Roland Scholz, rols1@gmx.de
Expand Down Expand Up @@ -2180,7 +2180,7 @@ def Audio_get_items_single(item, ID=''):

attr = stringextract('"attribution":"', '"', item) # Sender, CR usw.
if attr:
attr = "Bild: %s" % attr
attr = "Bild: %s" % repl_json_chars(attr) # ' möglich

img = stringextract('"image":', ',', item)
img = stringextract('"url":"', '"', img)
Expand Down Expand Up @@ -3528,9 +3528,9 @@ def ARDSportLiga3(title, img, sender="", source=""):
if col2 == "": col2=col2_pre
col0_pre = col0; col1_pre = col1; col2_pre = col2; # Backup Spalten 1-3

nr = col0
nr = unescape(col0) # &nbsp möglich
date=""
date = "Spiel: %s, %s" % (col1, col2) # Datum, Zeit
date = "Spiel: %s, %s" % (col1, col2) # Datum, Zeit
meet = col3
sender = col4
title = meet
Expand Down Expand Up @@ -6097,10 +6097,11 @@ def ShowFavs(mode, selected=""): # Favoriten / Merkliste einblenden
my_items, my_ordner= ReadFavourites(mode) # Addon-Favs / Merkliste einlesen
PLog(len(my_items))
if len(my_items) == 0:
icon = R(ICON_INFO)
icon = R(ICON_DIR_WATCH)
msg1 = "Merkliste"
if mode == 'Favs':
msg1 = "Favoriten"
icon = R(ICON_DIR_FAVORITS)
msg2 = u"keine Inhalte gefunden"
xbmcgui.Dialog().notification(msg1,msg2,icon,2000)
return
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
--------------

18.01.2024 4.9.7
thread_getpic (util): Anpassung an akt. python-Pillow-Version (draw.textsize
entfernt), Tests OK in Windows11 (Kodi Omega) und Linux (Kodi Nexus, Leia).
TV-Livestreams 3. Bundesliga: Berücksichtigung von 1-3 Sendern (bisher 1-2),
Anpassungen in ARDSportLiga3 + ARDSportgetEventlist, HTML-Escapezeichen in
Spieltag-Nr. entfernt.
Audio_get_items_single (Audiothek): Hochkommata in Bildtext entfernt.
PlayVideo: Encodierung beim Abgleich der Video-Url mit Zuletzt-gesehen-Liste
ergänzt (relevant für python < 3.0).
ShowFavs: Icons für Notification für merkliste/Favoriten angepasst.

04.01.2024 4.9.6
Main_XL (TagesschauXL): Hinw. auf geringe Videoqualität 480x270 (Investigativ,
Faktenfinder).
Expand Down
2 changes: 1 addition & 1 deletion resources/lib/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# 17.11.2019 Migration Python3 Modul kodi_six + manuelle Anpassungen
#
# <nr>85</nr> # Numerierung für Einzelupdate
# Stand: 15.02.2024
# Stand: 17.02.2024

# Python3-Kompatibilität:
from __future__ import absolute_import
Expand Down

0 comments on commit 53109f5

Please sign in to comment.