Skip to content

Commit

Permalink
Updated for Kodi Leia
Browse files Browse the repository at this point in the history
  • Loading branch information
razzeee committed Dec 25, 2017
1 parent a693e3e commit 697d5fe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addon.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="context.trakt.watched" name="Trakt - Watched button" version="1.0.2" provider-name="Razzeee">
<addon id="context.trakt.watched" name="Trakt - Watched button" version="1.0.3" provider-name="Razzeee">
<requires>
<import addon="xbmc.python" version="2.20.0"/>
<import addon="script.trakt" version="3.0.2"/>
</requires>
<extension point="kodi.context.item" library="addon.py">
<item>
<label>32000</label>
<visible>StringCompare(ListItem.dbtype,movie) | StringCompare(ListItem.dbtype,tvshow) | StringCompare(ListItem.dbtype,season) | StringCompare(ListItem.dbtype,episode)</visible>
<visible>String.IsEqual(ListItem.dbtype,movie) | String.IsEqual(ListItem.dbtype,tvshow) | String.IsEqual(ListItem.dbtype,season) | String.IsEqual(ListItem.dbtype,episode)</visible>
</item>
</extension>
<extension point="xbmc.addon.metadata">
Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
version 1.0.3
- Updated for Kodi Leia

version 1.0.2
- Updated language files from Transifex

Expand Down

0 comments on commit 697d5fe

Please sign in to comment.