Posts: 24
Joined: Jul 2013
Reputation:
0
aiko
Junior Member
Posts: 24
Is there any way to add an 'update library' shortcut or favorite to the menus in AppTV? I'd like to be able to simply navigate to one of the menus (like System) and click "Update Library" so that it forces a scan of all my sources.
This used to be a default feature in Quartz and I'm now switching to AppTV, but I can't figure out how set this up?
Posts: 32
Joined: Jan 2014
Reputation:
1
Unfortunately Home Shortcuts won't let you add stuff to the System menu.
To add Update Library & File Manager to your System menu as in Quartz, edit:
.kodi/addons/skin.apptv/720p/Includes_HorzHome.xml
Search for 'System info' - it will be around line 1560 - 1570. After the System info </item> add these lines
<item><!-- Update Libarary -->
<label>$LOCALIZE[653]</label>
<label2>$LOCALIZE[13000]</label2>
<onclick>UpdateLibrary(video)</onclick>
</item>
<item><!-- File manager -->
<label>$LOCALIZE[10003]</label>
<label2>$LOCALIZE[13000]</label2>
<onclick>ActivateWindow(filemanager)</onclick>
</item>
Restart Kodi to activate the change.
Note that changes like this will be overwritten by subsequent skin updates.