Merge pull request #986 from CvH/vdr_fix

script.config.vdr: update to 100
This commit is contained in:
Christian Hewitt 2016-11-26 15:28:55 +04:00 committed by GitHub
commit 1a9b633690
4 changed files with 60 additions and 3 deletions

View File

@ -0,0 +1,14 @@
100
- fix addon icons
1.1.3
- fix indexing of lines read from sources.conf
1.1.2
- fixed missing version bumps from 1.1.1
1.1.1
- change the addon icon
1.1.0
- initial LibreELEC version

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

View File

@ -17,7 +17,7 @@
################################################################################
PKG_NAME="script.config.vdr"
PKG_VERSION="1.1.3"
PKG_VERSION="61c2dde"
PKG_REV="100"
PKG_ARCH="any"
PKG_LICENSE="OSS"
@ -27,13 +27,15 @@ PKG_DEPENDS_TARGET=""
PKG_SECTION=""
PKG_SHORTDESC="script.config.vdr"
PKG_LONGDESC="script.config.vdr"
PKG_AUTORECONF="no"
PKG_IS_ADDON="yes"
PKG_ADDON_TYPE="dummy"
PKG_AUTORECONF="no"
make_target() {
: # nothing to do here
$SED -e "s|@ADDON_VERSION@|$ADDON_VERSION.$PKG_REV|g" \
-e "s|@OS_VERSION@|$OS_VERSION|g" \
-i addon.xml
}
makeinstall_target() {
@ -43,4 +45,6 @@ makeinstall_target() {
addon() {
mkdir -p $ADDON_BUILD/$PKG_ADDON_ID
cp -PR $PKG_BUILD/* $ADDON_BUILD/$PKG_ADDON_ID
cp $PKG_DIR/changelog.txt $ADDON_BUILD/$PKG_ADDON_ID
cp $PKG_DIR/icon/icon.png $ADDON_BUILD/$PKG_ADDON_ID/resources
}

View File

@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.config.vdr"
name="VDR Configuration"
version="@ADDON_VERSION@"
provider-name="libreelec.tv">
<requires>
<import addon="os.libreelec.tv" version="@OS_VERSION@"/>
<import addon="xbmc.python" version="2.1.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>executable</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="de">VDR-Sendersuchlauf und DiSEqC-Konfiguration</summary>
<summary lang="en">VDR channel scan and Diseqc Configuration</summary>
<summary lang="en_US">VDR channel scan and DiSEqC Configuration</summary>
<summary lang="lt">VDR kanalų paieška ir Diseqc konfigūravimas</summary>
<summary lang="nl">VDR kanaal scan en Diseqc configuratie</summary>
<summary lang="pl">Skanowanie kanałów i konfiguracja Diseqc</summary>
<summary lang="pt_BR">Escanear canais VDR e Configuração Diseqc</summary>
<description lang="de">VDR-Sendersuchlauf und DiSEqC-Konfiguration</description>
<description lang="en">VDR channel scan and Diseqc Configuration</description>
<description lang="en_US">VDR channel scan and DiSEqC Configuration</description>
<description lang="lt">VDR kanalų paieška ir Diseqc konfigūravimas</description>
<description lang="nl">VDR kanaal scan en Diseqc configuratie</description>
<description lang="pl">Skanowanie kanałów i konfiguracja Diseqc</description>
<description lang="pt_BR">Escanear canais VDR e Configuração Diseqc</description>
<language></language>
<platform>all</platform>
<news>
@PKG_ADDON_NEWS@
</news>
<assets>
<icon>resources/icon.png</icon>
<fanart>resources/fanart.png</fanart>
@PKG_ADDON_SCREENSHOT@
</assets>
</extension>
</addon>