A quick look through the github pages for the rotary encoder shows that SEEK should be a supported detent action, but I do not see it in the dropdown menu in the UI. Before I dig deeper into the source, is this a supported function? What am I missing?
https://github.com/volumio/volumio-plugins/blob/master/plugins/user_interface/rotaryencoder/index.js
const detentActionType = Object.freeze({ "NO_ACTION": 0, "VOLUME": 1, "PREVNEXT": 2, "SEEK": 3, "SCROLL": 4 });
...
else if(self.config.get('first_encoder_detentActionType') == detentActionType.SEEK)
self.executeCommand('seek plus');
...
else if(self.config.get('first_encoder_detentActionType') == detentActionType.SEEK)
self.executeCommand('seek minus');