forked from im85288/service.upnext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddon.xml
91 lines (79 loc) · 5.85 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="service.upnext" name="Up Next" version="1.1.5" provider-name="im85288">
<requires>
<import addon="xbmc.python" version="2.25.0"/>
</requires>
<!-- This is needed to get an addon icon -->
<extension point="xbmc.python.script" library="resources/lib/script_entry.py">
<provides>executable</provides>
</extension>
<extension point="xbmc.service" library="resources/lib/service_entry.py"/>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Propose to play the next episode automatically</summary>
<description lang="en_GB">A service add-on that shows a Netflix-style notification for watching the next episode. After a few automatic iterations it asks the user if he is still there watching.
A lot of existing add-ons already integrate with this service out-of-the-box.</description>
<summary lang="de_DE">Bietet Ihnen an, die nächste Episode automatisch wiederzugeben</summary>
<description lang="de_DE">Ein kleines Hilfs-Add-on, welches eine Netflix-artige Benachrichtigung zur Wiedergabe der nächsten Episode anzeigt. Nach ein paar automatischen Iterationen fragt es den Anwender, ob er sie immer noch anschaut.
Viele existierende Add-ons haben diesen Dienst bereits von Haus aus integriert.</description>
<summary lang="it_IT">Propone di riprodurre automaticamente il prossimo episodio</summary>
<description lang="it_IT">Un add-on di servizio che mostra una notifica in stile Netflix per guardare il prossimo episodio. Dopo alcune iterazioni automatiche, chiede all'utente se è ancora lì a guardare.
Molti add-on esistenti hanno già integrato questo servizio.</description>
<summary lang="el_GR">Προτάση για αναπαραγωγή του επόμενου επεισοδίου αυτόματα</summary>
<description lang="el_GR">Ένα υπηρεσιακό πρόσθετο που δείχνει σε στύλ ειδοποίησης τύπου Νέτφλιξ για την αναπαραγωγή του επόμενου επεισοδίου. Μετά από μερικές αυτόματες εκτελέσεις, ρωτάει τον χρήστη εάν παρακολουθεί ακόμα.
Πολλά από τα υπάρχοντα πρόσθετα ενσωματώνουν την λειτουργία αυτού του υπηρεσιακού προσθέτου εξ'ορισμού.</description>
<summary lang="sv_SE">Låter dig spela upp nästa avsnitt automatiskt</summary>
<description lang="sv_SE">Ett tillägg som visar en Netflix-liknande avisering för att se nästa avsnitt. Efter att några avsnitt automatiskt spelats upp frågar den användaren om han fortfarande är där och vill titta vidare.
Många befintliga tillägg integreras redan med den här utanför lådan-tjänsten.</description>
<summary lang="ru_RU">Предлагает автоматически проиграть следующую серию</summary>
<description lang="ru_RU">Сервисное дополнение, которое показывает уведомление в стиле Netflix для просмотра следующей серии. После нескольких автоматических итераций спрашивает пользователя, он еще смотрит или нет.
Многие существующие дополнения уже интегрированы с этим сервисом "из коробки".</description>
<summary lang="es_ES">Sugiere reproducir el próximo episodio automáticamente</summary>
<description lang="es_ES">Un complemento de servicio que muestra una notificación al estilo Netflix para ver el próximo episodio. Después de algunas iteraciones automáticas, le pregunta al usuario si todavía está allí mirando.
Muchos complementos existentes ya se integran con este servicio listo para usar.</description>
<platform>all</platform>
<license>GPL-2.0-only</license>
<news>
v1.1.5 (2021-02-21)
- Fix playlists to work with non-library content
- Fix to prevent unwanted playback when using playlist queueing method
- New translation for Finnish
v1.1.4 (2020-12-03)
- Fix problem causing pop-up to not appear
- Translation updates to Romanian, Russian and Spanish
v1.1.3 (2020-10-14)
- Enable customPlayTime by default
- Do not seek to the end before playing next episode
- Add Kodi v17 compatibility
- Fix logging on Kodi v19 (Matrix) after recent breakage
- Enqueue the next episode in the playlist
- Translation updates to German
v1.1.2 (2020-06-22)
- Bug fix for change from sleep to waitForAbort using seconds and not ms
- Translation updates to Japanese and Korean
v1.1.1 (2020-06-21)
- Avoid conflict with external players
- Restore "Ignore Playlist" option
- Fix a known Kodi bug related to displaying hours
- Improvements to endtime visualization
- New translations for Hindi and Romanian
- Translation updates to Hungarian and Spanish
v1.1.0 (2020-01-17)
- Add notification_offset for Netflix add-on
- Fix various runtime exceptions
- Implement new settings
- Implement new developer mode
- Show current time and next endtime in notification
- New translations for Brazilian, Czech, Greek, Japanese, Korean
- New translations for Russian, Slovak, Spanish, Swedish
- Translation updates to Croatian, French, German, Hungarian, Italian, Polish
</news>
<assets>
<icon>resources/media/icon.png</icon>
<fanart>resources/media/fanart.jpg</fanart>
<screenshot>resources/media/screenshot01.jpg</screenshot>
<screenshot>resources/media/screenshot02.jpg</screenshot>
<screenshot>resources/media/upnext-settings.jpg</screenshot>
<screenshot>resources/media/upnext-developer.jpg</screenshot>
</assets>
</extension>
</addon>