-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathaddon.xml
84 lines (75 loc) · 2.81 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.kaito" name="kaito" provider-name="SwagOtaku" version="0.0.10">
<requires>
<import addon="xbmc.python" version="2.26.0" />
<import addon="script.module.future" version="0.17.1"/>
<import addon="script.module.requests" version="2.22.0" />
<import addon="script.module.beautifulsoup4" version="4.9.3" />
<import addon="script.common.plugin.cache" version="2.5.5" />
<import addon="script.module.inputstreamhelper" version="0.5.2" />
<import addon="context.kaito" version="0.0.3"/>
</requires>
<extension library="default.py" point="xbmc.python.pluginsource">
<provides>video</provides>
</extension>
<extension point="xbmc.service" library="service.py" />
<extension point="xbmc.addon.metadata">
<reuselanguageinvoker>false</reuselanguageinvoker>
<summary lang="en">kaito video plugin</summary>
<description lang="en">HD Animes</description>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 3, 29 June 2007</license>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
<news>
Changelog 0.0.10:
Refactor code for Kodi 19 support
Add setting to toggle reuselanguageinvoker (If enabled, expect some instability but much faster menu speeds)
Fix MyAnimeList sortby [Prometheusx-git]
Fix AllDebrid playback [Gujal00]
Changelog 0.0.9:
Kodi 19 support
Updated anime season for upcoming and popular this season menu items
Changelog 0.0.8:
Fixed movies not working in AniList watchlist
Fixed scrape and rescrape running twice
Updated anime season for upcoming and trending menu items
Changelog 0.0.7:
Improved cloud inspection
Adjusted 'Next Up'
Adjusted 'Rebuild Database'
Fixed gogo embed
Fixed new episodes not being added
Changelog 0.0.6:
Added Premiumize and Real-Debrid cloud inspection
Added setting 'Seperate Dubs and Subs' to seperate anime into sub and dub list items if dub is available (test flight)
Added instruction dialog for MAL/AniList auth for linux os
Adjusted set titles to romaji/english
Adjusted Tertiary Dub filter
Improved 'Next Up'
Improved season torrent pack scraping
Changelog 0.0.5:
Fixed bug
Changelog 0.0.4:
Fixed bug
Changelog 0.0.3:
Added Rescrape Item option to episode context menu
Added setting 'Title Language' to set titles to romaji/english
Added 'Airing Dubbed Anime' menu item
Added 'Next Up' to watchlist menu items
Adjusted content types of items
Adjusted MAL/AniList auth for linux os
Improved season torrent pack handling
Changelog 0.0.2:
Added premiumize support
Improved handling of episodes/seasons retrieval
Improved nyaa search
Added 'episodes' content type to set menu content type setting
Added menu content type to be applied to watchlist landing page
Changelog 0.0.1:
Initial release
</news>
</extension>
</addon>