mirror of
https://github.com/DigitalDevices/pvr.octonet.git
synced 2025-03-01 10:53:09 +00:00
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:
23
pvr.octonet/addon.xml
Normal file
23
pvr.octonet/addon.xml
Normal 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>
|
||||
@@ -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 ""
|
||||
@@ -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 ""
|
||||
5
pvr.octonet/resources/settings.xml
Normal file
5
pvr.octonet/resources/settings.xml
Normal 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>
|
||||
Reference in New Issue
Block a user