Skip to content

Commit

Permalink
Release 1.1.7
Browse files Browse the repository at this point in the history
- tmdb api-key fix
  • Loading branch information
itzikg committed Jun 25, 2017
1 parent ec9265f commit 75a1eb0
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 10 deletions.
14 changes: 7 additions & 7 deletions addons.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,30 +23,30 @@
</extension>
</addon>

<addon id="plugin.video.meta" name="Meta" version="1.1.6" provider-name="MetaTeam">
<addon id="plugin.video.meta" name="Meta" version="1.1.7" provider-name="MetaTeam">
<requires>
<import addon="xbmc.python" version="2.20.0"/>
<import addon="script.module.requests"/>
<import addon="script.module.futures" version="2.2.0"/>
</requires>

<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>

<extension point="xbmc.service" library="service.py" start="[login|startup]">
</extension>

<extension point="kodi.context.item" library="context_playable.py">
<provides>executable</provides>
<provides>executable</provides>
<item>
<label>$ADDON[plugin.video.meta 30602]</label>
<visible>!System.HasAddon(context.meta) + [StringCompare(ListItem.dbtype,movie) | StringCompare(ListItem.dbtype,episode)] + SubString(ListItem.FileNameAndPath, plugin.video.meta)</visible>
</item>
</extension>

<extension point="kodi.context.item" library="context_tvshow.py">
<provides>executable</provides>
<provides>executable</provides>
<item>
<label>$ADDON[plugin.video.meta 30622]</label>
<visible>StringCompare(ListItem.dbtype,tvshow) + SubString(ListItem.Path, plugin.video.meta)</visible>
Expand All @@ -62,7 +62,7 @@
<content>movies</content>
<content>tvshows</content>
<content>episodes</content>
</supportedcontent>
</supportedcontent>
</extension>
</addon>

Expand Down
2 changes: 1 addition & 1 deletion addons.xml.md5
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5896e6785b43fe766f02edc76f55aafb
ef5efe267b71a6feddc48e8440b749f2
2 changes: 1 addition & 1 deletion plugin.video.meta/addon.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.meta" name="Meta" version="1.1.6" provider-name="MetaTeam">
<addon id="plugin.video.meta" name="Meta" version="1.1.7" provider-name="MetaTeam">
<requires>
<import addon="xbmc.python" version="2.20.0"/>
<import addon="script.module.requests"/>
Expand Down
3 changes: 3 additions & 0 deletions plugin.video.meta/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v1.1.7
- tmdb api-key fix

v1.1.6
- tmdb fix

Expand Down
2 changes: 1 addition & 1 deletion plugin.video.meta/resources/lib/tmdbsimple/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def _get_env_key(key):
try:
return os.environ[key]
except KeyError:
return "c44d0c7ed132cc2ec90581a7ca1a8f02"
return "7a05113def86da5e7093987eddd79b7a"

API_KEY = _get_env_key('TMDB_API_KEY')
API_VERSION = '3'
Expand Down
6 changes: 6 additions & 0 deletions zip/plugin.video.meta/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
v1.1.7
- tmdb api-key fix

v1.1.6
- tmdb fix

v1.1.5
- maintenance

Expand Down
Binary file added zip/plugin.video.meta/plugin.video.meta-1.1.7.zip
Binary file not shown.

0 comments on commit 75a1eb0

Please sign in to comment.