Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-07-09 | replace existing empty tab when loading playlist | Florrie | |
2020-07-09 | rename handlePlaylistSource & let accept grouplike | Florrie | |
It's called loadPlaylistOrSource now, and can take a grouplike (which it will process with processSmartPlaylist as usual) instead of a URL to pass to a crawler. This is so that all functionality for loading a playlist can be collected in and accessed through one interface, so that modifications to the way playlists are loaded will be reflected across everywhere that loads a playlist. | |||
2020-07-07 | make the mtui menu work again! | Florrie | |
i forgot to implement menuItems. oops. :P | |||
2020-07-06 | update queue length as metadata is processed | Florrie | |
this makes a very nice animation of the duration going up as data is processed for new tracks :3 | |||
2020-07-03 | add a space for padding behind track duration text | Florrie | |
2020-07-03 | fix current track index being one too low | Florrie | |
oops v_v i apparently forgot to commit this!! | |||
2020-05-06 | make the queue listing a little wider | Florrie | |
this should help make the wider length label fit better! | |||
2020-05-06 | refactor to use 'select' instead of 'selected' | Florrie | |
2020-05-04 | select child grouplike when loading parent | Florrie | |
This was already the previous behavior, but a misplaced restoreGrouplikeData was overwriting that effect. With this commit, the scroll position will still be restored, but the selected item will be correctly changed to whichever was opened. (This arguably means it's no longer necessary to restore the selected item in save/restoreGrouplikeData at all, but it's kept there in case a grouplike is ever unloaded through some means besides opening its child -- actually this is the case if you reveal an item whos ancestor groups don't fully overlap with that of the previously open group.) | |||
2020-05-03 | show queue length in collapsed progress info | Florrie | |
2020-05-03 | remember scroll position of each group | Florrie | |
2020-05-03 | clean up some context menu logic to fix reveal bug | Florrie | |
2020-05-02 | comment out pane for text editor | Florrie | |
this was causing a funky visual bug which made the queue pane look like its bottom-right corner was pointing downwards (like the top-right corner of a pane is)! | |||
2020-04-30 | fix process-metadata pausing context menu | Florrie | |
2020-04-26 | further hackery to make the multi menu more useful | Florrie | |
2020-04-23 | update tui-lib; change wheel mode in autoscroll | Florrie | |
2020-04-23 | new feature: autoscroll! | Florrie | |
2020-04-18 | comment out notes and labels features... For Now™ | Florrie | |
2020-04-16 | draw when pressing select-all | Florrie | |
2020-04-06 | yeah thats embarrassing | Florrie | |
2020-04-06 | Auto-DJ | Florrie | |
2020-03-13 | display duration in track context menu | Florrie | |
2020-02-04 | immediately show results of acting on queue player | Florrie | |
Specifically, this makes toggling loop show its effect right away. | |||
2020-02-04 | get rid of a dead argument | Florrie | |
2019-11-11 | Fix queue notes in a better way | Florrie | |
Before, we were showing the notes window whenever a track with notes played - even if the queue wasn't focused. This fixes that. | |||
2019-11-10 | Fix queue listing improperly showing/hiding notes | Florrie | |
2019-10-28 | ^E to edit notes of selected track/group | Florrie | |
2019-10-28 | Fix layout when editor is unfocused | Florrie | |
2019-10-28 | Context menu for creating/editing notes files | Florrie | |
2019-10-28 | Don't show text files adjacent to playables | Florrie | |
2019-10-23 | Fix error on quit without ever opening text editor | Florrie | |
2019-10-23 | Add text/notes editor, using tui-text-editor | Florrie | |
:D! | |||
2019-10-17 | Don't include non-tracks in total track count | Florrie | |
2019-10-17 | Import tui-lib with npm instead of as a submodule | Florrie | |
2019-10-15 | Rename paneLeft/paneRight to tabberPane/queuePane | Florrie | |
2019-10-15 | Dim selected non-playable when not focused | Florrie | |
2019-10-15 | Make BasicGrouplikeItems respond to menu key | Florrie | |
So you can press f/m/etc to open the menu on those options, just like on interactive grouplike items. | |||
2019-10-15 | Make next/previous tab controls wrap around | Florrie | |
2019-10-15 | Open JSON playlist files in new tab | Florrie | |
2019-10-15 | (o) to open through system; show non-music files | Florrie | |
2019-09-30 | Make menubar select first item, like context menus | Florrie | |
This also tidies up the logic for changing the selected element from context menus to the menubar, fixing a bug where the menubar forgets which element was selected before it, and not re-introducing the bug which the complex logic fixed in the first place (which was the menubar seeing the context menu as the previously selected element, when the menu will be destroyed by the time the menubar restores its selection). | |||
2019-09-26 | Make menubar easter-egg color/attribute draw deps | Florrie | |
So pressing a/c (:33) in the menubar will now cause a rerender. | |||
2019-09-25 | Stop players from playing after they're removed! | Florrie | |
2019-09-23 | Multiple player UI interaction shenanigans | Florrie | |
Please don't ever let me stay up until 29:57 again. Future me will thank you in advance. | |||
2019-09-22 | Basic multiple player UI | Florrie | |
Currently uses meta+(c, x, n, p, up, down) keys as the only interaction method, but that'll change soon! | |||
2019-09-20 | Jump to menubar options with keyboard | Florrie | |
I _love_ the KeyboardSelector tool. | |||
2019-09-20 | WIP - support multiple players at once | Florrie | |
Currently bug-free and doesn't change anything about existing mtui behavior! Meta N to create a new player, meta up/down to switch between which one you're interacting with. Each player has its own queue. Eventually (soon(TM)) there'll be much better UI to go with all this! | |||
2019-09-18 | Don't reload the listing if it's unnecessary | Florrie | |
...in reveal(). This fixes the bug where the revealed track would always be positioned at the bottom of the screen, which happened because reloading the listing reset the scroll index back to the top. | |||
2019-09-18 | Default to 'after selected song' in context menu | Florrie | |
2019-09-17 | Fix toggling pause not updating screen | Florrie | |
This makes the pause indicator (next to the time remaining in the queue) work again. |