Was im Gegensatz zu bislang mit TVHeadend Power & Recording Management nicht mehr so funktioniert wie es soll ist das Herunterfahren aus dem Menü mit Setzen des Aufwachtimers.
Aktuell kommt die Info "Das System fährt in ... herunter" und statt dass der Rechner aus geht, wird nur Kodi beendet.
In der DialogButtonMenu.xml habe ich aus
<control type="button" id="3">
<description>Shutdown button</description>
<width>510</width>
<height>60</height>
<textcolor>grey2</textcolor>
<focusedcolor>white</focusedcolor>
<textwidth>435</textwidth>
<textoffsetx>45</textoffsetx>
<texturefocus colordiffuse="$VAR[HighlightBarColor]" border="35,2,35,2">button_shutdown_focus.png</texturefocus>
<texturenofocus border="35,2,35,2">button_shutdown_nofocus.png</texturenofocus>
<onclick>Powerdown()</onclick>
<visible>System.CanPowerDown</visible>
<font>font14</font>
<label>13016</label>
</control>
analog der Readme (https://github.com/b-jesch/servic…aster/README.md)
<control type="button" id="3">
<description>Shutdown button</description>
<width>510</width>
<height>60</height>
<textcolor>grey2</textcolor>
<focusedcolor>white</focusedcolor>
<textwidth>435</textwidth>
<textoffsetx>45</textoffsetx>
<texturefocus colordiffuse="$VAR[HighlightBarColor]" border="35,2,35,2">button_shutdown_focus.png</texturefocus>
<texturenofocus border="35,2,35,2">button_shutdown_nofocus.png</texturenofocus>
<onclick>Powerdown()</onclick>
<visible>System.CanPowerDown + !System.HasAddon(service.pvr.manager)</visible>
<font>font14</font>
<label>13016</label>
</control>
<control type="button" id="3">
<description>Shutdown button</description>
<width>510</width>
<height>60</height>
<textcolor>grey2</textcolor>
<focusedcolor>white</focusedcolor>
<textwidth>435</textwidth>
<textoffsetx>45</textoffsetx>
<texturefocus colordiffuse="$VAR[HighlightBarColor]" border="35,2,35,2">button_shutdown_focus.png</texturefocus>
<texturenofocus border="35,2,35,2">button_shutdown_nofocus.png</texturenofocus>
<onclick>RunScript(service.pvr.manager,poweroff)</onclick>
<visible>System.CanPowerDown + System.HasAddon(service.pvr.manager)</visible>
<font>font14</font>
<label>13016</label>
</control>
gemacht.