-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaddon.xml
More file actions
42 lines (38 loc) · 2.45 KB
/
addon.xml
File metadata and controls
42 lines (38 loc) · 2.45 KB
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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.cabertoss" name="Caber Toss" version="1.0.2" 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>
<summary lang="sv_SE">Tillhandahåller ett enkelt sätt att spara Kodi-loggfiler, vid ett visst ögonblick, till en vald 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>
<description lang="sv_SE">
Ett skript för att snabbt flytta dina Kodi-loggar från din Kodi-klientdator till en mer praktisk plats, för enklare granskning.
När något oväntat eller dåligt händer, kör bara detta tillägg för att kopiera de senaste Kodi-loggarna till din valda destination.
Ännu bättre, koppla detta till en fjärrkontrollsknapp (använd `Runscript(script.cabertoss)`) – så att du kan fortsätta att koppla av just då och ta itu med problemet senare (utan att behöva gå igenom allt du gjorde efter att problemet uppstod!).
</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>bossanova808@gmail.com</email>
<news>v1.0.2
- Use updated Logging code
- Make crashlog days configurable (default still 3)
- A bunch of fixes and improvements following CodeRabbit review
</news>
<assets>
<icon>resources/icon.png</icon>
</assets>
</extension>
</addon>