Implement basic plugin infrastructure

Add the bare minimum of what is required to become a Kodi PVR addon.

Signed-off-by: Julian Scheel <julian@jusst.de>
This commit is contained in:
Julian Scheel
2015-08-21 17:04:07 +02:00
parent bcbe782ccb
commit 7a5fa21d14
7 changed files with 415 additions and 0 deletions

23
pvr.octonet/addon.xml Normal file
View File

@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon
id="pvr.octonet"
version="0.1"
name="PVR DigitalDevices Octonet Client"
provider-name="digitaldevices">
<requires>
<c-pluff version="0.1" />
<import addon="xbmc.pvr" version="1.9.6" />
</requires>
<extension
point="xbmc.pvrclient"
library_linux="pvr.octonet.so"
library_osx="pvr.octonet.dylib"
library_freebsd="pvr.octonet.so"
library_windx="pvr.octonet.dll"
library_android="libpvr.octonet.so" />
<extension point="xbmc.addon.metadata">
<summary lang="de_DE">Kodi PVR Addon für DigitalDevices Octonet Streams</summary>
<summary lang="en_US">Kodi PVR Addon for DigitalDevices Octonet Streams</summary>
<platform>all</platform>
</extension>
</addon>

View File

@@ -0,0 +1,21 @@
# Kodi Media Center language file
# Addon Name: PVR Octonet Client
# Addon id: pvr.octonet
# Addon Provider: Julian Scheel
msgid ""
msgstr ""
"Project-Id-Version: KODI Main\n"
"Report-Msgid-Bugs-To: http://trac.kodi.tv/\n"
"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Kodi Translation Team\n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/kodi-main/language/en_GB/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: en_GB\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
msgctxt "#30000"
msgid "Octonet Server Address"
msgstr ""

View File

@@ -0,0 +1,21 @@
# Kodi Media Center language file
# Addon Name: PVR Octonet Client
# Addon id: pvr.octonet
# Addon Provider: Julian Scheel
msgid ""
msgstr ""
"Project-Id-Version: KODI Main\n"
"Report-Msgid-Bugs-To: http://trac.kodi.tv/\n"
"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Kodi Translation Team\n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/kodi-main/language/en_GB/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: en_GB\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
msgctxt "#30000"
msgid "Octonet Server Address"
msgstr ""

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<settings>
<!-- Octonet Server Address -->
<setting id="octonetAddress" type="text" label="30000" default="" />
</settings>