Need help with structure / description of new addon.
#1
Hello,

I'm writing an addon to parse torrent sites and get a good visual experience downloading movies on XBMC. The problem I'm having currently is that I can't test my code. I'm writing in OSX if that should matter.

My problem is that it doesnt install when installing as a zip. Either I get that the addon is not correctly formated OR I get that it can't read the description.

I feel like I've tried everything but I wont get it started...

My folder structure looks like:
Code:
plugin.video.torrentbrowser
-resources
--language
---english
----strings.xml
--settings.xml
-addon.xml
-icon.png
-changelog.txt
-default.py
-TBBrowser.py
-TBDownload.py
-TBScraper.py
-TBSites.py
-TBTools.py
-TBWeb.py
-TBXbmc.py
-TODO.txt

My addon.xml says:

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<addon
    id="plugin.video.torrentbrowser"
    version="0.5.0"
    name="TorrentBrowser"
    provider-name="Broiler">
    <requires>
        <import addon="xbmc.python" version="1.0"/>
    </requires>
    <extension point="xbmc.python.pluginsource" library="default.py">
        <provides>video</provides>
    </extension>
    <extension point="xbmc.addon.metadata">
        <platform>all</platform>
        <summary lang="en">TorrentBrowser plugin</summary>
        <description lang="en">boobies</description>
    </extension>
</addon>
Reply
#2
Seems like coding drunk might help with these kind of issues...

It works now but I have no idea why Smile
Reply

Logout Mark Read Team Forum Stats Members Help
Need help with structure / description of new addon.0