-
Notifications
You must be signed in to change notification settings - Fork 32
/
addon.xml
54 lines (47 loc) · 2.38 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.subtitles.zimukux" name="ZiMuKuX" version="0.2.1" provider-name="pizzamx">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.beautifulsoup4" version="4.6.2"/>
<import addon="script.module.kodi-six"/>
<import addon="vfs.rar" version="3.0.0"/>
<import addon="script.module.requests" version="2.22.0"/>
</requires>
<extension point="xbmc.subtitle.module" library="resources/lib/addon_entry.py" />
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">zimuku subtitle</summary>
<summary lang="zh_CN">字幕库</summary>
<description lang="en_GB">Search and download subtitles from ZiMuKu</description>
<description lang="zh_CN">从「字幕库」下载字幕(网址经常变)。感谢 taxigps 大神的原创,这是一个衍生品</description>
<platform>all</platform>
<license>GPL-2.0-or-later</license>
<assets>
<icon>resources/icon.png</icon>
<fanart>resources/fanart.png</fanart>
</assets>
<news>
v0.2.1(2023/12/11)
- Merged https://github.com/pizzamx/zimuku_for_kodi/pull/23(thanks @jiangpengcheng for solving the cookie issue)
v0.2.0(2023/5/30)
- Merged https://github.com/pizzamx/zimuku_for_kodi/pull/18 (big thanks to lm317379829 for solving the captcha issue)
- Let's bump version a bit
v0.1.9(2022/12/23)
- Merged https://github.com/pizzamx/zimuku_for_kodi/pull/14
- New setting allow showing only language suffix of sub file name to prevent the UI from scrolling (slowly!)
- New setting to allow search with year info. to make result more accurate (default to False, attributed to @fsi044689)
- Minor tweaks, please refer to PR comment
v0.1.8(2022/10/10)
- zimuku.org captcha design changed again and this plugin works again
v0.1.7(2022/6/18)
- zimuku.org code changed again, made adaptions
v0.1.6(2022/5/25)
- Adaption made for Zimuku's latest "anti-spoofing" mechanism (contribute by @SaneBow)
- Optimization to reduce the number of requests (contribute by @SaneBow)
v0.1.5(2022/4/22)
- Adaption made for Zimuku's new anti-spoofing mechanism
- Misc. bug fix and code tweaks
- Is COVID-19 gonna last forever?
CHECK https://github.com/pizzamx/zimuku_for_kodi/releases FOR EARLIER RELEASE NOTES...
</news>
</extension>
</addon>