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 Nov 5, 2023
1 parent e0b172d commit 11fa9e2
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 5 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.8+nexus" provider-name="rols1 (rols1@gmx.de)">
<addon id="plugin.video.ardundzdf" name="ARDundZDF" version="4.8.9+nexus" provider-name="rols1 (rols1@gmx.de)">
<requires>
<import addon="xbmc.python" version="3.0.1"/>
<import addon="script.module.kodi-six" />
Expand Down
6 changes: 3 additions & 3 deletions ardundzdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@

# VERSION -> addon.xml aktualisieren
# <nr>159</nr> # Numerierung für Einzelupdate
VERSION = '4.8.8'
VDATE = '04.11.2023'
VERSION = '4.8.9'
VDATE = '05.11.2023'


# (c) 2019 by Roland Scholz, rols1@gmx.de
Expand Down Expand Up @@ -10403,7 +10403,7 @@ def Parseplaylist(li, url_m3u8, thumb, geoblock, descr, sub_path='', stitle='',
skip=True # i.d.R. ARD-Streams (nicht alle)
break
PLog('skip: ' + str(skip))
if skip == False and live: # Mehrkanalstreams: 1 Button
if skip == False and live: # Mehrkanalstreams: nur 1 Button
stitle = "HLS-Stream"
PLog("jump_PlayButtonM3u8")
PlayButtonM3u8(li, url_m3u8, thumb, stitle, tagline=track_add, descr=descr) # -> live=true
Expand Down
22 changes: 22 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,28 @@ CHANGE HISTORY
max_col 97
--------------

05.11.2023 4.8.9
get_ARD_LiveEPG (util): Auswertung currentStartDate statt startDate (falls
vorhanden).
EPG-Modul: neues Konzept mit Ablage des 2-dim-EPG-Array im Dict (weitere
Infos s. Kopfdoku in EPG), neue Funktion get_data_web, Anpassungen in
EPG_ShowSingle, SenderLiveListe, EPG_ShowSingle, EPG_ShowAll, 1-sec-Delay
auf 1/2 sec verkürzt.
thread_getepg (EPG): Löschen der Cache-Dateien unabhängig vom Alter.
ShowFavs: try/except-Block für neue Sortierroutine (Addonscrash bei
leerer Liste).
livesenderTV.xml: hrefsender-Titel aktualisiert für "Rundfunk Berlin
Brandenburg" und "Rundfunk Berlin"
get_epg (Modul 3sat): Umstellung auf Nutzung EPG-Cache (Live-Daten nicht
mehr auf DreiSat_BASE).
EPG (Modul EPG): entf. Hochkommata in Beschreibung (router-kompatibel).
InfoAndFilter: Infotext "Nach Abgleich werden .." entfernt (obsolet)
get_foruminfo (Modul tools): Hochkommata in Infotext entfernt.
DownloadsList: Sortierung nach Datum, Infotext mit Aufnahmedatum ergänzt.
SenderLiveListe: Verhinderung EPG-Aufruf bei fehlender EPG_ID.
TV-Livestreams: Austausch Welt_N24-Live iptv -> welt.personalstream.tv-
Stream, Anpassung livesenderTV.xml.

29.10.2023 4.8.8
ARDSportLiga3: Python2-Anpassung (py2_encode für ard_streamlinks, sender1,
sender2, ohne Bearbeitung der Umlaute).
Expand Down
2 changes: 1 addition & 1 deletion resources/lib/EPG.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def thread_getepg(EPGACTIVE, DICTSTORE, PLAYLIST):
if os.path.exists(fname): # n.v. oder soeben entfernt?
os.remove(fname) # entf. -> erneuern
rec = EPG(ID=ID, load_only=True) # Seite laden + speichern
xbmc.sleep(1000) # Systemlast verringern
xbmc.sleep(500) # Systemlast verringern

xbmcgui.Dialog().notification("EPG-Download", "abgeschlossen",icon,3000)

Expand Down

0 comments on commit 11fa9e2

Please sign in to comment.