how to make plugin show in correct XBMC section
#1
Hello, I have my plugin named plugin.image.x

and it only appears in the video directory

I have gone as far as copying in a different addon.xml just to see if that had something to do with it. Now I'm confused

How do I make it show up in the pictures folder, I thought it was as simple as naming the folder a certain way
Reply
#2
<provides></provides> tag in addon.xml takes care of that

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.image.the.big.picture"
       name="The Big Picture"
       version="1.1.3"
       provider-name="rwparris2">
  <requires>
    <import addon="xbmc.python" version="1.0"/>
  </requires>
  <extension point="xbmc.python.pluginsource"
            library="default.py">
        [color=red]<provides>image</provides>[/color]
  </extension>
  <extension point="xbmc.addon.metadata">
    <platform>all</platform>
    <summary>A plugin for Boston.com's photojournalism site, The Big Picture</summary>
    <description>A plugin for Boston.com's photojournalism site, The Big Picture</description>
  </extension>
</addon>

you need the bit in red to have it show in Pictures
Reply
#3
I'm looking to do something similar. I have got some video's of music concerts, which i dont want mixed up with my movies.

So i'd like to use the themoviedb to be able to scrape in the music-videos section.

Is there a simple solution for my problem?
Reply

Logout Mark Read Team Forum Stats Members Help
how to make plugin show in correct XBMC section0