This repository has been archived by the owner on May 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathaddon.xml
58 lines (48 loc) · 2.47 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.traktutilities"
name="Trakt Utilities"
version="0.6.5"
provider-name="Manromen">
<requires>
<import addon="xbmc.python" version="2.0"/>
<import addon="script.module.simplejson" version="2.0.10"/>
<import addon="script.module.myconnpy" version="0.3.2"/>
</requires>
<extension point="xbmc.python.script" library="default.py">
<provides>video</provides>
</extension>
<res width="1280" height="720" aspect="16x9" default="true" folder="720p" />
<extension point="xbmc.service" name="TraktUtilities.service" library="service.py"/>
<extension point="xbmc.addon.metadata" name="traktutilities.metadata">
<language></language>
<summary lang="en">some trakt utilities</summary>
<description lang="en">Trakt Utilities
Synchronise Movies / TVShows with Trakt (more infos and account creation: http://trakt.tv/).
This plugin isn't a replacement for the official trakt plugin. It's a supplement to the trakt plugin.
This is an open-source project.
I'll do my best, but the use is at own risk.
Utilities:
- Update Movie Collection:
updates your trakt movie library (not the seen movies) with your xbmc collection
- Sync seen Movies:
synchronise seen movies between xbmc and trakt
seen movies from xbmc will be set as seen on trakt
seen movies from trakt will be set as seen on xbmc
it don't sets movies as unseen
- Update TV Show Collection:
same like Update Movie Collection, but for TV Shows.
- Sync seen TV Shows:
same like Sync seen Movies, but for TV Shows.
- Clean Movie Collection:
this will remove deleted movies from the trakt collection (unlibrary, it will not set movies as unseen).
ATTENTION:
don't use this function, if you collect data about your DVDs, Blu-Rays, etc.
this will unlibrary all movies, that are not listed in xbmc
- Clean TV Show Collection:
same like Clean Movie Collection, but for TV Shows
The Utilities for TV Shows only work yet, if your scraper is TVDB (http://thetvdb.com/).
Special Thanks to: Justin Nemeth and Sean Rudford, for the great Trakt project.
</description>
<platform>all</platform>
</extension>
</addon>