-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Moving played items from queue into a history view. #70
Comments
I think tracklist history was recently added to mopidy, could maybe make
|
As far as I know the As of today, I don't think So there is no practical way of implementing this that I can see, but this may change in the future. |
I've not remotely thought this through but can we do a |
The Mopidy-Pandora extension also tries to interrogate the history on specific events: https://github.com/rectalogic/mopidy-pandora/blob/d6d7f073dda57eb59c3f350cea81a1505de28274/mopidy_pandora/frontend.py#L360-L374 The problem (that I found at least) is that it is not possible to tell exactly when the history will have been updated after receiving whatever event you are listening for. I ran into a few race conditions where the track just wasn't there yet when I checked the history. I suppose it would also be possible to poll the history controller continuously, but that might be taking a step backwards seeing as we are trying to move away from polling (#40). What's really needed is a |
The Mopidy feature request to be notified of history changes has been logged: mopidy/mopidy#1420. |
Instead of keeping the played items in the play queue, it might be nice to push them into another list view of past played items. This would also help for finding things you played recently.
The text was updated successfully, but these errors were encountered: