Skip to content

Commit

Permalink
Merge pull request #825 from anxdpanic/pr
Browse files Browse the repository at this point in the history
6.8.1
  • Loading branch information
anxdpanic authored May 13, 2020
2 parents b4318cc + 48ea1a3 commit 520e37b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
4 changes: 3 additions & 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.youtube" name="YouTube" version="6.8.1~alpha2" provider-name="anxdpanic, bromix">
<addon id="plugin.video.youtube" name="YouTube" version="6.8.1" provider-name="anxdpanic, bromix">
<requires>
<import addon="xbmc.python" version="2.20.0"/>
<import addon="script.module.six" version="1.11.0"/>
Expand All @@ -18,6 +18,8 @@
[fix] intermittent issue with Subscriptions
[fix] encoding of video unavailable messages
[upd] updates to recommendations
[upd] update logging for Kodi 19
[lang] fr_fr strings |contrib: alan7000|
[lang] pl_pl strings |contrib: drrak|
[lang] nl_nl strings |contrib: Markman-B|
</news>
Expand Down
2 changes: 2 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
[fix] intermittent issue with Subscriptions
[fix] encoding of video unavailable messages
[upd] updates to recommendations
[upd] update logging for Kodi 19
[lang] fr_fr strings |contrib: alan7000|
[lang] pl_pl strings |contrib: drrak|
[lang] nl_nl strings |contrib: Markman-B|

Expand Down
16 changes: 8 additions & 8 deletions resources/lib/youtube_plugin/kodion/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
import xbmc
import xbmcaddon

DEBUG = 0
INFO = 2
NOTICE = 2
WARNING = 3
ERROR = 4
SEVERE = 5
FATAL = 6
NONE = 7
DEBUG = xbmc.LOGDEBUG
INFO = xbmc.LOGINFO
NOTICE = INFO
WARNING = xbmc.LOGWARNING
ERROR = xbmc.LOGERROR
FATAL = xbmc.LOGFATAL
SEVERE = FATAL
NONE = xbmc.LOGNONE

_ADDON_ID = 'plugin.video.youtube'

Expand Down

0 comments on commit 520e37b

Please sign in to comment.