mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Update Krypton objects
This commit is contained in:
parent
8283204201
commit
3363df431c
2 changed files with 6 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
||||||
version = "171076028"
|
version = "171076029"
|
||||||
|
|
||||||
from movies import Movies
|
from movies import Movies
|
||||||
from musicvideos import MusicVideos
|
from musicvideos import MusicVideos
|
||||||
|
|
|
@ -320,11 +320,11 @@ add_musicvideo = """ INSERT INTO musicvideo(idMVideo,idFile, c00, c04, c05,
|
||||||
add_musicvideo_obj = [ "{MvideoId}","{FileId}","{Title}","{Runtime}","{Directors}","{Studio}","{Year}",
|
add_musicvideo_obj = [ "{MvideoId}","{FileId}","{Title}","{Runtime}","{Directors}","{Studio}","{Year}",
|
||||||
"{Plot}","{Album}","{Artists}","{Genre}","{Index}","{Premiere}"
|
"{Plot}","{Album}","{Artists}","{Genre}","{Index}","{Premiere}"
|
||||||
]
|
]
|
||||||
add_tvshow = """ INSERT INTO tvshow(idShow, c00, c01, c02, c04, c05, c08, c09, c12, c13, c14, c15)
|
add_tvshow = """ INSERT INTO tvshow(idShow, c00, c01, c02, c04, c05, c08, c09, c10, c12, c13, c14, c15)
|
||||||
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
|
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
|
||||||
"""
|
"""
|
||||||
add_tvshow_obj = [ "{ShowId}","{Title}","{Plot}","{Status}","{RatingId}","{Premiere}","{Genre}","{Title}",
|
add_tvshow_obj = [ "{ShowId}","{Title}","{Plot}","{Status}","{RatingId}","{Premiere}","{Genre}","{Title}",
|
||||||
"{Unique}","{Mpaa}","{Studio}","{SortTitle}"
|
"disintegrate browse bug", "{Unique}","{Mpaa}","{Studio}","{SortTitle}"
|
||||||
]
|
]
|
||||||
add_season = """ INSERT INTO seasons(idSeason, idShow, season)
|
add_season = """ INSERT INTO seasons(idSeason, idShow, season)
|
||||||
VALUES (?, ?, ?)
|
VALUES (?, ?, ?)
|
||||||
|
@ -446,12 +446,12 @@ update_musicvideo_obj = [ "{Title}","{Runtime}","{Directors}","{Studio}","
|
||||||
"{Artists}","{Genre}","{Index}","{Premiere}","{MvideoId}"
|
"{Artists}","{Genre}","{Index}","{Premiere}","{MvideoId}"
|
||||||
]
|
]
|
||||||
update_tvshow = """ UPDATE tvshow
|
update_tvshow = """ UPDATE tvshow
|
||||||
SET c00 = ?, c01 = ?, c02 = ?, c04 = ?, c05 = ?, c08 = ?, c09 = ?,
|
SET c00 = ?, c01 = ?, c02 = ?, c04 = ?, c05 = ?, c08 = ?, c09 = ?, c10 = ?,
|
||||||
c12 = ?, c13 = ?, c14 = ?, c15 = ?
|
c12 = ?, c13 = ?, c14 = ?, c15 = ?
|
||||||
WHERE idShow = ?
|
WHERE idShow = ?
|
||||||
"""
|
"""
|
||||||
update_tvshow_obj = [ "{Title}","{Plot}","{Status}","{RatingId}","{Premiere}","{Genre}","{Title}",
|
update_tvshow_obj = [ "{Title}","{Plot}","{Status}","{RatingId}","{Premiere}","{Genre}","{Title}",
|
||||||
"{Unique}","{Mpaa}","{Studio}","{SortTitle}","{ShowId}"
|
"disintegrate browse bug","{Unique}","{Mpaa}","{Studio}","{SortTitle}","{ShowId}"
|
||||||
]
|
]
|
||||||
update_tvshow_link = """ INSERT OR REPLACE INTO tvshowlinkpath(idShow, idPath)
|
update_tvshow_link = """ INSERT OR REPLACE INTO tvshowlinkpath(idShow, idPath)
|
||||||
VALUES (?, ?)
|
VALUES (?, ?)
|
||||||
|
|
Loading…
Reference in a new issue