Posts: 63
Threads: 10
Joined: Apr 2018
Reputation:
2
There are times that I wish to add an album to the playlist and the select a track. Currently only have Add/Play which starts the first track playing. Is there any other interest in this? This is just an annoyance, not critical.
Posts: 1,870
Threads: 43
Joined: Mar 2020
Reputation:
85
I'd appreciate a Clear/Add option too I think.
Also agree with Kent that the options should be consistent, something I failed to check in testing.
----------------
Robert
Posts: 6,027
Threads: 177
Joined: Apr 2018
Reputation:
235
Except perhaps the last selection in both. Update folder doesn't make much sense when in Album view; it's more of a maintenance item. Show tracks? I could go either way.
Posts: 13,436
Threads: 305
Joined: Mar 2018
Reputation:
545
I'll put on the TODO list for 7.1.0 to include "Clear/Add" on the Tag/Album view context menu.
Posts: 24
Threads: 5
Joined: Dec 2020
Reputation:
1
...I'd also appreciate a 'Play next' option - meaning to insert the selected titles/album after the current song
Posts: 13,436
Threads: 305
Joined: Mar 2018
Reputation:
545
Do you mean in Folder view?
The "Play next" function would I think be a challenge to implement for Folder view since whole folders including their subfolders can be added/played as opposed to a group of tracks as in Tag/Album views. One of the things done by the code that implements "Play next" is to first check to see of the group of tracks that have been submitted already exist in the Queue. If they do then no need to add them again.
In Folder view however, a single folder name can be submitted and this could include subfolders. The code would thus need to enumerate all the tracks in the folder and all of its subfolders in order to see if they already exist in the Queue.
Posts: 24
Threads: 5
Joined: Dec 2020
Reputation:
1
Ok - but is it really necessary to check if these are already in the playlist...?
I haven't used this in the albumview, yet - so I don't know the concept - does it jump back/forward, if it's already in the list?
It's surely a matter of concept, but I really wouldn't mind to have same titles several times in the list. It even could be desireable to have it like this
Posts: 13,436
Threads: 305
Joined: Mar 2018
Reputation:
545
If the Queue is not checked first then duplicates accumulate in the Queue each time an album or track is added, played, etc it doesn't take too long before you have 100's of duplicates. Very messy...