﻿<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <addon id="script.skin.helper.service" name="Skin Helper Service" version="1.1.43" provider-name="marcelveldt and others">
    <requires>
		<import addon="xbmc.python" version="3.0.0"/>
        <import addon="xbmc.addon" version="12.0.0"/>
        <import addon="script.module.simplejson" version="3.3.0"/>
        <import addon="script.module.simplecache" version="1.0.0"/>
        <import addon="script.module.metadatautils" version="1.0.31"/>
    </requires>

    <extension point="kodi.context.item">
        <menu id="kodi.core.main">
            <item library="resources\lib\context_animatedart.py">
              <label>32024</label>
              <visible>!String.IsEmpty(Window(Home).Property(SkinHelper.EnableAnimatedPosters)) + Container.Content(movies)</visible>
            </item>
            <item library="resources\lib\context_pvr.py">
                <label>32023</label>
                <description>PVR artwork Configuration</description>
                <visible>
                    !String.IsEmpty(Window(Home).Property(SkinHelper.EnablePvrThumbs)) + 
                    [Window.IsActive(MyPVRChannels.xml) | 
                    Window.IsActive(MyPVRGuide.xml) | Window.IsActive(MyPVRRecordings.xml) | 
                    Window.IsActive(MyPVRTimers.xml) | Window.IsActive(MyPVRSearch.xml)]
                </visible>
            </item>
            <item library="resources\lib\context_music.py">
                <label>32023</label>
                <description>Music artwork Configuration</description>
                <visible>
                    !String.IsEmpty(Window(Home).Property(SkinHelper.EnableMusicArt)) + 
                    [Container.Content(albums) | Container.Content(artists) | Container.Content(songs)]
                </visible>
            </item>
        </menu>
    </extension>

    <extension point="xbmc.python.library" library="default.py" />
    <extension point="xbmc.python.pluginsource" library="plugin.py" />
    <!--<extension library="service.py" point="xbmc.service" start="login" />-->

    <extension point="xbmc.addon.metadata">
        <summary lang="en">Helper service for Kodi skins</summary>
        <description>Helper service for Kodi skins</description>
        <news>
v1.1.43
- removed rt ratings 
- Add tunefind
v1.1.42
- fixed rt ratings for tvshow
- fixed extrafanart (look first in folder path)
v1.1.42
- Add rt ratings reviews and info, add metacritic ratting for tvshow
v1.1.41
- Add Trakt
v1.1.40
- bump version
v1.1.39
- clean trace of webservice
v1.1.38
- removed webservice(removed dependency of module "script.module.cherrypy")
v1.1.37
- fix for saveskinimage
- Update listitem_monitor.py
v1.1.36
- Hungarian lang created
- remove get_repo_addoninfo
- Fix for "Resume" in dialog
v1.1.35
- fix setskinconstant

v1.1.34
- fix correct skin settings
- Fix for skinstring, selectimage, and overlayertexture
- Fix for resourceaddons
- Matrix Py3 changes
v1.1.32
- fix for search dialog
- add TMDB for TVShow
- fix for webservice (now use just TMDB Art-Poster and fanart)

v1.1.31
- fix urllib.parse vs urlparse in utils for Kodi 18
- add commits from Angelinas1

v1.1.30
- fix module import of context menu items

v1.1.29
- compatibility change for CherryPy 17.4.2 and bump version requirement

v1.1.28
- replace xbmc.LOGNOTICE with xbmc.LOGINFO as LOGNOTICE was removed

v1.1.27
- Replace xbmc.translatePath with xbmcvfs.translatePath for Kodi 19 compat

v1.1.26
- Remove python dependency for Kodi18/19 compatibility
- minor fix

v1.1.25
- Kodi 19/Python 3 compatibility
- minor fixes
        </news>
		<assets>
            <icon>icon.png</icon>
            <fanart>fanart.jpg</fanart>
        </assets>
        <language></language>
        <platform>all</platform>
        <license>GPL v2.0</license>
        <forum>http://forum.kodi.tv/showthread.php?tid=235676</forum>
        <website></website>
        <source>https://github.com/kodi-community-addons/script.skin.helper.service</source>
    </extension>
</addon>
