-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addon.xml
37 lines (35 loc) · 1.92 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.cabertoss" name="Caber Toss" version="1.0.1" provider-name="bossanova808">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.bossanova808" version="1.0.0"/>
</requires>
<extension point="xbmc.python.script" library="default.py">
<provides>executable</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Provides an easy way to save Kodi log files, at a particular moment, to a chosen destination.</summary>
<description lang="en_GB">
A script to quickly toss your Kodi logs from your Kodi client machine to somewhere more handy, for easier review.
When something unexpected or bad happens, just run this add-on to copy the latest Kodi logs to your chosen destination.
Even better, bind this to a remote button (use `Runscript(script.cabertoss)`) - so you can carry on with your relaxing at the time, and deal with the issue later (without having to wade through all the stuff you did after the issue happened!).
</description>
<platform>all</platform>
<license>GPL-3.0-only</license>
<website>https://github.com/bossanova808/script.cabertoss</website>
<source>https://github.com/bossanova808/script.cabertoss</source>
<forum>https://forum.kodi.tv/showthread.php?tid=379304</forum>
<email>[email protected]</email>
<news>v1.0.1
- Improve compatibility with network shares
- Improve compatibility with Windows and *ELEC
- Add hostname to logs folder, helps if using with multiple systems
- Don't copy crashlogs older than three days
- Language improvements
- Add 'Working...' notification to make more responsive (copying larger log files can take a moment)
</news>
<assets>
<icon>resources/icon.png</icon>
</assets>
</extension>
</addon>