Shows Update Available, but doesn't download from my Add-On Repository
#1
It works, says there's an update.. Changelog works.. Everything works except it doesn't actually download it from within Kodi..
I've followed all the tutorials and such online, I've got an add-on, and setup the repository, structure (the site has been replaced by [site] ):

Code:
[site]/kodi/addons.xml
  [site]/kodi/addons.xml.md5
  [site]/kodi/plugin.video.someid
    [site]/kodi/plugin.video.someid/addon.py
    [site]/kodi/plugin.video.someid/addon.xml
    [site]/kodi/plugin.video.someid/changelog-0.0.1.txt
    [site]/kodi/plugin.video.someid/plugin.video.someid-0.0.1.zip
      Inside the zip is:
        plugin.video.someid/addon.py
        plugin.video.someid/addon.xml
        plugin.video.someid/changelog-0.0.1.txt

My addon.xml:

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.someid" name="Some Plugin Name" version="0.0.1" provider-name="My Name">
  <requires>
    <import addon="xbmc.python" version="2.1.0"/>
    <import addon="script.common.plugin.cache" version="2.5.5"/>
  </requires>
  <extension point="xbmc.python.pluginsource" library="addon.py">
    <provides>video</provides>
  </extension>
  <extension point="xbmc.addon.metadata">
    <summary lang="en">Some summary</summary>
    <description lang="en">Some description</description>
    <disclaimer lang="en"></disclaimer>
    <language></language>
    <platform>all</platform>
    <license></license>
    <forum></forum>
    <website></website>
    <email></email>
    <source></source>
  </extension>
  <extension point="xbmc.addon.repository" name="Some Repository Name">
    <info compressed="true">[site]/kodi/addons.xml</info>
    <checksum>[site]/kodi//addons.xml.md5</checksum>
    <datadir zip="true">[site]/kodi</datadir>
  </extension>
</addon>

And of course works when you install from zip.. Any help would be appreciated. Smile
Reply
#2
Sorry to 'bump' this, but if other people run into this situation, it would be nice to help others in the future?
Reply
#3
You haven't got a reply probably because you haven't posted your actual code or even a debug log. Is there a particular reason for this?
Always read the Wiki, FAQ and search the forum before posting.
Read/follow the forum rules.
Reply
#4
I would assume the Code has no relevance to why it Kodi doesn't start the download (the code is private source Smile ), as for the debug log.. It literally doesn't add anything to the log when I hit update. Just returns back to the 'update available', and silently does nothing (normally a background popup would display saying 'downloading update').
Reply

Logout Mark Read Team Forum Stats Members Help
Shows Update Available, but doesn't download from my Add-On Repository0