-
Notifications
You must be signed in to change notification settings - Fork 4
/
addon.xml
41 lines (41 loc) · 3.09 KB
/
addon.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="service.pvr.manager" name="PVR Recording & Power Manager" version="0.0.26" provider-name="Birger Jesch">
<requires>
<import addon="xbmc.python" version="2.25.0" />
<import addon="xbmc.json" version="7.0.0" />
<import addon="script.module.requests" version="2.9.1" />
<import addon="script.module.dateutil" version="2.5.3"/>
</requires>
<extension point="xbmc.service" library="service.py" start="[login|startup]" />
<extension point="xbmc.python.script" library="service.py" />
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en">PVR Recording & Power Manager</summary>
<summary lang="de">PVR Recording & Power Manager</summary>
<summary lang="pl">PVR Recording & Power Manager</summary>
<description lang="en">Recording and power management for current active recordings and wakeup procedures for future schedules using JSON-RPC on a standalone HTPC with TV card and a PVR server. Prevents shutdown/poweroff the system while an active schedule is running. Delivers optional Emails via SMTP if an automatic scheduled recording ended successfully. Ability to start the system periodically on an user defined cycle and time for e.g. EPG-Updates if there is a longer inactivity time of the system.</description>
<description lang="de">Power- und Timer-Management für aktuell laufende Aufnahmen sowie Aufweckmechanismen für spätere timergesteuerte Aufnahmen unter Nutzung von JSON-RPC auf einem Standalone-PC mit TV-Karte und PVR-Server. Verhindert ein versehentliches Herunterfahren des Systems während einer Aufnahme. Der Dienst versendet optional Emails via SMTP, wenn eine automatische Aufnahme erfolgreich abgeschlossen wurde. Zusätzlich wird das System zyklisch zu einer einstellbaren Zeit aufgeweckt, um z.B das EPG zu aktualisieren.</description>
<disclaimer lang="de">Benutzung auf eigene Gefahr. Keine Haftung für nicht gesetzte Timer, nicht durchgeführte Aufnahmen und andere Seiteneffekte!</disclaimer>
<disclaimer lang="en">Use at your own risk. No liability for not set timers, lack of recording and other side effects!</disclaimer>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<forum>https://www.kodinerds.net/index.php/Thread/58379-RELEASE-PVR-Recording-Power-Manager/</forum>
<website/>
<email>[email protected]</email>
<source>https://github.com/b-jesch/service.pvr.manager</source>
<news>
0.0.21 Internal adjustments of EPG settings
0.0.18 Time calculation bug fixed
0.0.17 Ignore timers if they are in the past (VDR), add suspend mode in shutdown method by OS
0.0.16 Some setting defaults redefined
0.0.15 Bugfix: Handle empty values in os-release on some platforms
0.0.14 Bugfix: prevent wakeup on disabled timers
0.0.13 changing abort event on shutdown from detecting user activity to a defined key (select)
0.0.12 small Bugfix
0.0.11 Time calculations improvements
</news>
<assets>
<icon>resources/icon.png</icon>
<fanart>resources/fanart.jpg</fanart>
</assets>
</extension>
</addon>