-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
54 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
865dff3220d129945fb0d4acdbc80c21 | ||
d862de8f48f314962a5b4ae82f66f194 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<addon id="script.kodi.knewc" name="NextPVR New Client" version="2.10.1" provider-name="emveepee"> | ||
<requires> | ||
<!--import addon="xbmc.python" version="2.1.0"/--> | ||
<import addon="script.module.future" version="0.16.0.4"/> | ||
<import addon="script.module.dateutil" version="2.7.3"/> | ||
<import addon="script.module.kodi-six" /> | ||
</requires> | ||
<extension point="xbmc.python.script" library="default.py"> | ||
</extension> | ||
<!-- <extension point="xbmc.service" library="default.py" start="startup"></extension> --> | ||
<extension point="xbmc.addon.metadata"> | ||
<platform>all</platform> | ||
<minversion>28764</minversion> | ||
<summary lang="en">Python script to access NextPVR v4-v6 using NEWA or internal JSON API</summary> | ||
<description lang="en">Supplement NextPVR PVR Addon with additional functionality Compatible with python 2.7 or python 3</description> | ||
<assets> | ||
<icon>icon.png</icon> | ||
<fanart>fanart.jpg</fanart> | ||
</assets> | ||
</extension> | ||
</addon> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<addon id="script.xbmc.x-newa" name="X-NEWA" version="2.5.4" provider-name="emveepee"> | ||
<requires> 1 | ||
<import addon="xbmc.python" version="2.1.0"/> | ||
</requires> | ||
<extension point="xbmc.python.script" library="default.py"> | ||
</extension> | ||
<!--extension point="xbmc.service" library="default.py" start="startup"></extension--> | ||
<extension point="xbmc.addon.metadata"> | ||
<platform>all</platform> | ||
<minversion>28764</minversion> | ||
<summary lang="en">X-NEWA python script to access NextPVR using NEWA web services</summary> | ||
<description lang="en">Supplement NextPVR PVR Addon with additional functionality </description> | ||
</extension> | ||
</addon> |