(2015-03-02, 12:43)mazeeff Wrote: While playing a Pandoki station, several people used the "back" key ... resulted in Pandoki restarting the last (current) station.
Thanks! I haven't been able to reproduce, but I use hotkeys to bounce around. Got a key sequence to cause it? What skin? Or a log. I wonder if its exiting and restarting.
(2015-03-08, 04:08)digitaltomj Wrote: Is it possible to make a shortcut that will thumbs up
plugin.audio.pandoki-0.8.0.zip
I added an API to rate the currently PLAYING song. Someone could totally add these to a skin (hint hint) You can add to keymap or JSON as below:
F1 - Create and Play New Station Based on Song
F2 - Add Song to current Station Variety
F3 - Thumbs Up
F4 - Mark Song Tired and Skip (wont play for 30 days)
F5 - Thumbs Down and Skip
F6 - Clear Previous Rating
Add to userdata/keymaps/keyboard.xml :
Code:
<keymap>
<global>
<keyboard>
<f1>RunPlugin(plugin://plugin.audio.pandoki/?rate=branch)</f1>
<f2>RunPlugin(plugin://plugin.audio.pandoki/?rate=seed)</f2>
<f3>RunPlugin(plugin://plugin.audio.pandoki/?rate=up)</f3>
<f4>RunPlugin(plugin://plugin.audio.pandoki/?rate=tired)</f4>
<f5>RunPlugin(plugin://plugin.audio.pandoki/?rate=down)</f5>
<f6>RunPlugin(plugin://plugin.audio.pandoki/?rate=clear)</f6>
</keyboard>
</global>
</keymap>
JSON: options for "rate" are "branch, seed, up, tired, down, clear"
Code:
{ "jsonrpc": "2.0", "method": " Addons.ExecuteAddon", "params": { "addonid":"plugin.audio.pandoki","params":{"rate":"up"} } }, "id": 1 }
[/quote]
Awesome, I'll add the shortcuts to my xml shortly.
I also experienced what mazeeff did. It is most noticeable if I have "Auto Play Last Station" enabled in the Pandoki settings, as I try to go to the list of stations before the lasted played station finishes it's queue. If I press backspace before the station queues, there's a pause and then it will go back to the now playing menu and start playing the last played station that has finished queuing. I am using transparency with kodi 14.0 on windows 8.1. I have also experienced this on another computer of mine running transparency with kodi 14.1 on Xubuntu 14.10.
PS: it seems your repo has not been updated yet to include the plugin.audio.pandoki-0.8.0 update.