mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-24 11:16:51 +00:00
script.config.vdr: update to 100
- reworked the addon a bit and fixed icons
This commit is contained in:
parent
3d6973a0fe
commit
e5cbfb8d63
14
packages/addons/script/script.config.vdr/changelog.txt
Normal file
14
packages/addons/script/script.config.vdr/changelog.txt
Normal 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
|
BIN
packages/addons/script/script.config.vdr/icon/icon.png
Normal file
BIN
packages/addons/script/script.config.vdr/icon/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 44 KiB |
@ -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
|
||||
}
|
||||
|
39
packages/addons/script/script.config.vdr/sources/addon.xml
Normal file
39
packages/addons/script/script.config.vdr/sources/addon.xml
Normal 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>
|
Loading…
x
Reference in New Issue
Block a user