« get me outta code hell

mtui - Music Text User Interface - user-friendly command line music player
about summary refs log tree commit diff
AgeCommit message (Collapse)Author
2018-12-23Merge branch 'master' into web-mtui web-mtuiFlorrie
2018-12-23Mouse support in tabber elementsFlorrie
Click to switch tab, scroll over the tab list to quickly switch to the previous or next tab.
2018-12-23Fill in package.jsonFlorrie
2018-12-23Update tui-libFlorrie
2018-12-23Merge branch 'master' into web-mtuiFlorrie
2018-12-23HTTP crawler stuffFlorrie
Basically, support for cors-anywhere. (Cherry-picked from web-mtui branch)
2018-12-23Fix typo in keybindings section of READMEFlorrie
2018-12-23Show "unnamed" in "this group:" (and its menu)Florrie
2018-12-22Remove mpv playerFlorrie
2018-12-22More http crawler tweakingFlorrie
2018-12-22Progress info, feedback on stop, etcFlorrie
2018-12-22Stop musicFlorrie
2018-12-22Seek, pauseFlorrie
2018-12-22Make playFile return a promiseFlorrie
2018-12-22Remove code that requires youtube downloaderFlorrie
2018-12-22Play musicFlorrie
2018-12-22HTTP crawler stuffFlorrie
Basically, support for cors-anywhere.
2018-12-22Make mtui work in webpackFlorrie
2018-12-22Use cleaner tui-lib require syntaxFlorrie
2018-12-21Fix "this group" listing item causing a crashFlorrie
Somebody remind me to write unit tests...
2018-12-21Make cursor follow selection in queue listingFlorrie
This was already half-done, but the new behavior in this commit feels quite a bit nicer. (Specifically if you use shift-up/down (or n/p) while the queue is selected, the cursor will move to the new selection if it was already on the old selection, whereas before it would never follow when the queue was selected.)
2018-12-21Remove dead codeFlorrie
2018-12-21Move menu behavior out of grouplike item elementsFlorrie
This also makes it so that the selected options in whereControl and orderControl stay the same when you open the context menu on a different item, browse a different group, etc.
2018-12-21"Distribute" optionsFlorrie
E.g. to interweave two groups together.
2018-12-19Fix typo in READMEFlorrie
2018-12-19Try a slightly different shuffle-groups processFlorrie
This should be more intuitive and useful...most of the time. :)
2018-12-19Revive the old shuffle-groups feature!Florrie
Cool! This was one of my favorite tiny features of http-music.
2018-12-19Make a neater neato nice context menu!Florrie
Not a lot of new potential utility here for now, but it's at the least easier to use and cleaner than the old look! Also.. shuffle-groups soon(TM). Maybe!
2018-12-15Label showing # of items / total items in menuFlorrie
2018-12-15Expand width of ContextMenu items to all be equalFlorrie
2018-12-15Add "this group" option to grouplike listingsFlorrie
Used to access a menu for the playlist that's currently being browsed. Particularly handy for working with the top-level group, since you can't access its menu any other way. Also useful for quickly acting on a group you opened from (for example) a PathElement.
2018-12-15Update tui-lib, buildItems stress testFlorrie
I didn't have any luck optimizing buildItems though. It might be something to come back to some other time. (It's already quick enough to be usable, even on modland.json, that's for sure!)
2018-12-15Get rid of unnecessary map() callFlorrie
This doesn't impact performance noticeably, it's just a code nitpick.
2018-12-15Dramatically optimize perf of large playlistsFlorrie
Now you can browse modland.json at your leisure, without the fear of waiting 10 seconds every time you so much as move your cursor!
2018-12-15Fix remove-from-queue performanceFlorrie
2018-12-08Update tui-libFlorrie
Mouse is no longer tracked once the process exits, so scrolling the terminal after closing mtui should work.
2018-12-08Update tui-libFlorrie
TL;DR mouse should work more reliably within tmux.
2018-12-08Mouse controls over playback info elementFlorrie
Scroll up/down to seek, click to toggle pause.
2018-12-08Mouse supportFlorrie
'Cuz hey, why not?
2018-12-05Support AnimeFlorrie
2018-12-04Stress test stuffFlorrie
Just to see if I can optimize tui-lib's ansi diffing.
2018-11-23Hide context menu when it's unselectedFlorrie
2018-11-23(f) to open menu as well as (m)Florrie
This way you can activate the menu without taking your right hand off the arrow keys (in typical keyboards).
2018-11-12Add simple list-cache debug toolFlorrie
It's not really practical for use right now. Well, more like I haven't figured out *what* the "ordinary use" is.
2018-11-12Tweak how youtube-dl downloads are storedFlorrie
2018-11-12Fix many menu items being missingFlorrie
Oops! I got rid of (well, tweaked) the concepts of "real" and "fake" rows, but forgot to get rid of the now-unnecessary (and disfunctional) isReal checks.
2018-11-11Fix bad comment text from previous commitFlorrie
2018-11-11Clean up and debuggify "fake" listing elementsFlorrie
I.e, the "Up (to group)" button and the "(This group is empty)" pseudo-playlist-item.
2018-10-11Don't bubble escape when it doesn't make senseFlorrie
Specifically, don't bubble escape when it's pressed in ContextMenus or in ListingJumpElements. TL;DR you won't accidentally cancel your currently playing song as much.
2018-10-11Don't queue groups in the wrong order!Florrie