From a30f1ebc42ea0233a99d2886a56580cb9bf41b77 Mon Sep 17 00:00:00 2001 From: Andrea Cotza Date: Fri, 5 May 2017 10:01:26 +0200 Subject: [PATCH] Add support to Kodi 18.0-alpha1 --- resources/lib/variables.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lib/variables.py b/resources/lib/variables.py index 40f354ad..fa3b8be5 100644 --- a/resources/lib/variables.py +++ b/resources/lib/variables.py @@ -68,7 +68,7 @@ _DB_VIDEO_VERSION = { 15: 93, # Isengard 16: 99, # Jarvis 17: 107, # Krypton - 18: 107 # Leia + 18: 108 # Leia } DB_VIDEO_PATH = xbmc.translatePath( "special://database/MyVideos%s.db" % _DB_VIDEO_VERSION[KODIVERSION]) @@ -79,7 +79,7 @@ _DB_MUSIC_VERSION = { 15: 52, # Isengard 16: 56, # Jarvis 17: 60, # Krypton - 18: 60 # Leia + 18: 62 # Leia } DB_MUSIC_PATH = xbmc.translatePath( "special://database/MyMusic%s.db" % _DB_MUSIC_VERSION[KODIVERSION])