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 Jul 30, 2022
1 parent 6c1cde5 commit 94cfc2b
Show file tree
Hide file tree
Showing 5 changed files with 19 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.4.6+matrix" provider-name="rols1 (rols1@gmx.de)">
<addon id="plugin.video.ardundzdf" name="ARDundZDF" version="4.4.7+matrix" provider-name="rols1 (rols1@gmx.de)">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<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>63</nr> # Numerierung für Einzelupdate
VERSION = '4.4.6'
VDATE = '28.07.2022'
VERSION = '4.4.7'
VDATE = '30.07.2022'


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

30.07.2022 4.4.7
ARDSportWDR (sportschau.de): Zusatz-Menüs FUSSBALL: "EM FRAUEN", "Tor des
Monats", "TOUR DE FRANCE FEMMES", Info-Texte ergänzt, neue Funktionen
ARDSportMonatstor und ARDSportMonatstorSingle.
decode_url (Modul util): '%E2%80%93' -> '–' ergänzt.
Kika_VideosBuendelAZ, Kika_VideosBeliebt (Modul childs): Link zur Webseite
"Alle Videos" (A-Z) aktualisiert.
ARDStart: Link für Startseite www.ardmediathek.de/ard/ geändert ->
www.ardmediathek.de/ (wg. "Moved Permanently"-Error).

23.07.2022 4.4.6
PlayVideo (Modul util): neue Funktion sub_path_post für Untertitel-
Streamlinks (noch deaktiviert wg. inkompatibler vtt-Senderinhalte für
Expand Down
4 changes: 3 additions & 1 deletion resources/lib/ARDnew.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
################################################################################
# <nr>20</nr> # Numerierung für Einzelupdate
# Stand: 23.06.2022
# Stand: 30.07.2022

# Python3-Kompatibilität:
from __future__ import absolute_import # sucht erst top-level statt im akt. Verz.
Expand Down Expand Up @@ -271,6 +271,8 @@ def ARDStart(title, sender, widgetID='', path=''):

if path == '':
path = BETA_BASE_URL + "/%s/" % sender
if sender == "ard": # ab 30.07.2022 erford. (Moved Permanently)
path = BETA_BASE_URL + "/"
page, msg = get_page(path=path) # vom Sender holen

if '"widgets":' not in page: # Fallback: Cache ohne CacheTime
Expand Down
3 changes: 3 additions & 0 deletions resources/lib/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -1646,6 +1646,9 @@ def decode_url(line):
line = line.replace(u'%29', u')')
line = line.replace(u'%7C', u'|')

line = line.replace(u'%E2%80%93', u'–') # 27.07.2022


return line
#----------------------------------------------------------------
# Migration PY2/PY3: py2_decode aus kodi-six
Expand Down

0 comments on commit 94cfc2b

Please sign in to comment.