Add Clear/Add option - Printable Version +- Moode Forum (https://moodeaudio.org/forum) +-- Forum: moOde audio player (https://moodeaudio.org/forum/forumdisplay.php?fid=3) +--- Forum: Feature requests (https://moodeaudio.org/forum/forumdisplay.php?fid=8) +--- Thread: Add Clear/Add option (/showthread.php?tid=3410) Pages:
1
2
|
RE: Add Clear/Add option - Stephanowicz - 02-12-2021 (02-11-2021, 10:06 PM)Tim Curtis Wrote: 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... Well - I just tested it... it's already like that - not with the 'play next' option, but with all the others I'm able to clutter it with duplicates...so,hmm... for a huge playlist it's a nice idea to search the pl for the selected title - but this assumes, that it is a 'static' list for the whole day (maybe like for a restaurant ) - one that shouldn't be changed Whatever - by testing I realized that it's not the 'play next' but the 'add next' option that I was looking for RE: Add Clear/Add option - Stephanowicz - 02-12-2021 Actually it's already implemented in moode.php but not in the context menu... So, for a single item it's simply adding Code: <li><a href="#notarget" data-cmd="add_item_next"><i class="fal fa-plus-circle sx"></i> Add next</a></li> to Code: <div id="context-menu-folder-item" class="context-menu"> in the indextpl.html The same for adding a folder is not properly working with the actual script - it adds the first song and puts the rest at the end - but this should be easily fixed... RE: Add Clear/Add option - Stephanowicz - 02-14-2021 Ok, for a folder it's a bit more work... in the indextpl.html it's one line like for an item as mentioned before: Code: <ul class="dropdown-menu" role="menu"> In playerlib.js function mpdDbCmd(cmd, path) needs to be extended: Code: var cmds = [... 'add_folders_next']; in moode.php: $playqueue_cmds = array('add_item', ... , 'add_folders_next'); (~ line 167) Code: case 'add_folders_next': |