Skip to content

Commit

Permalink
feat: Add
Browse files Browse the repository at this point in the history
  • Loading branch information
jmaver-plume committed Mar 25, 2023
1 parent 8f8bbbd commit f995640
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions addon.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<import addon="xbmc.python" version="3.0.0"/>
</requires>
<extension point="xbmc.service" library="service.py"/>
<extension point="xbmc.python.script" library="script.py"/>
<extension point="xbmc.addon.metadata">
<summary lang="en">This addon creates "symbolic link" directories with proper naming.</summary>
<description lang="en">This addon creates "symbolic link" directories with proper naming.</description>
Expand Down
1 change: 1 addition & 0 deletions resources/settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
<setting label="32004" id="downloads_path" type="text" default="/storage/transmission/downloads/complete"/>
<setting label="32005" id="downloads_state_path" type="text" default="/storage/.cache/.torrent-tagger"/>
<setting label="32006" id="interval_in_seconds" type="number" default="60"/>
<setting label="32007" type="action" action="RunScript(script.service.torrent-tagger, script)"/>
</category>
</settings>
2 changes: 2 additions & 0 deletions script.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import xbmc
xbmc.log('This is a TEST log.', level=xbmc.LOGDEBUG)

0 comments on commit f995640

Please sign in to comment.