Changes to the python API for XBMC Gotham
#16
Added optional parameter 'ignoreCache' to xbmc.playSFX()
https://github.com/xbmc/xbmc/pull/4491

Quote: /**
* playSFX(filename,[useCached]) -- Plays a wav file by filename
*
* filename : string - filename of the wav file to play.
* useCached : [opt] bool - False = Dump any previously cached wav associated with filename
*
* example:
* - xbmc.playSFX('special://xbmc/scripts/dingdong.wav')
* - xbmc.playSFX('special://xbmc/scripts/dingdong.wav',False)
*/
Read/follow the forum rules.
For troubleshooting and bug reporting, read this first
Interested in seeing some YouTube videos about Kodi? Go here and subscribe
#17
Added support to provide multiple repositories locations into one single repository add-on.
https://github.com/xbmc/xbmc/pull/3509

Supports:
  • having different locations into one addon.xml repository file
  • filter out the displayed add-ons depending on XBMC version


Example:

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="repository.xbmc.org"
        name="XBMC.org Add-ons"
        version="2.1.23"
        provider-name="Team XBMC">
  <requires>
    <import addon="xbmc.addon" version="12.0.0"/>
  </requires>
    <extension point="xbmc.addon.repository"
        name="Official XBMC.org Add-on Repository">
        <dir minversion="12.9.0">
            <info compressed="true">http://mirrors.xbmc.org/addons/gotham/addons.xml</info>
            <checksum>http://mirrors.xbmc.org/addons/gotham/addons.xml.md5</checksum>
            <datadir zip="true">http://mirrors.xbmc.org/addons/gotham</datadir>
            <hashes>true</hashes>
        </dir>
        <info compressed="true">http://mirrors.xbmc.org/addons/frodo/addons.xml</info>
        <checksum>http://mirrors.xbmc.org/addons/frodo/addons.xml.md5</checksum>
        <datadir zip="true">http://mirrors.xbmc.org/addons/frodo</datadir>
        <hashes>true</hashes>
    </extension>
    <extension point="xbmc.addon.metadata">
        <summary lang="en">Install Add-ons from XBMC.org</summary>
        <platform>all</platform>
    </extension>
</addon>

https://github.com/xbmc/xbmc/blob/master.../addon.xml
Read/follow the forum rules.
For troubleshooting and bug reporting, read this first
Interested in seeing some YouTube videos about Kodi? Go here and subscribe

Logout Mark Read Team Forum Stats Members Help
Changes to the python API for XBMC Gotham3