2018-05-01, 11:43
Hello. I have just updated to the nightly Kodi 18, was previously using 17.6. I have a custom keymap for my Fire TV remote, and it works just fine in Kodi 17. You can take a look at it below. I have the following issues since going to 18:
Keys still working: up and down for volume in fullscreenvideo and fullscreenlivetv.
Keys not working: fastforward and longpress rewind for volume amplification, rewind for tv guide.
Thanks in advance for any help you can provide.
pastebin: https://paste.ubuntu.com/p/SFphNmhC86/
Keys still working: up and down for volume in fullscreenvideo and fullscreenlivetv.
Keys not working: fastforward and longpress rewind for volume amplification, rewind for tv guide.
Thanks in advance for any help you can provide.
pastebin: https://paste.ubuntu.com/p/SFphNmhC86/
Code:
<?xml version="1.0" encoding="UTF-8"?>
<keymap>
<Global>
<keyboard>
</keyboard>
</Global>
<FullscreenVideo>
<keyboard>
<up>volumeup</up>
<down>volumedown</down>
<menu>CodecInfo</menu>
<fastforward>volampup</fastforward>
<rewind>volampdown</rewind>
</keyboard>
</FullscreenVideo>
<playerprocessinfo>
<keyboard>
<menu>Back</menu>
</keyboard>
</playerprocessinfo>
<FullscreenLiveTV>
<keyboard>
<up>volumeup</up>
<down>volumedown</down>
<left>channeldown</left>
<right>channelup</right>
<menu>CodecInfo</menu>
<fastforward>volampup</fastforward>
<rewind>tvguide</rewind>
<rewind mod="longpress">volampdown</rewind>
</keyboard>
</FullscreenLiveTV>
</keymap>