Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-11-09 | Let keybindings run shell commands, if --trust option is given | Florrie | |
Keybinding action format: [[..combo..], 'runShellCommand', ..command name.., [..arguments..]] (--trust is an alias for --trust-shell-commands. When --trust appears in an "options" property of a playlist (or anywhere besides the `http-music play` invocation on the command line, shell command permisisons are *revoked* - they cannot be enabled, even by directly passing --trust to the command line.) Also adds a note to todo.txt. | |||
2017-11-08 | Merge branch 'master' of https://github.com/towerofnix/http-music | Florrie | |
2017-11-08 | Only run 'top' keybinding for a specific combo | Florrie | |
This lets custom keybinding files partially overwrite pre- existing ketbindings. | |||
2017-11-05 | Add thing to todo.txt | Florrie | |
2017-11-05 | Re-export getItemPath (fixes download-playlist) | Florrie | |
2017-10-30 | Actually clear status line properly | Florrie | |
2017-10-30 | Never show two identical track indexes | Florrie | |
2017-10-30 | Add missing percent symbol to mpv status line | Florrie | |
2017-10-30 | Clear old status line when printing a new one | Florrie | |
2017-10-29 | Add track number to status line and make status line more consistent | Florrie | |
This does two big things - there's a few changes in pickers.js to support track numbers (and a new supporting function in playlist-utils.js), and some changes in loop-play.js to make the status line formatting consistent regardless of the active player. | |||
2017-10-27 | Include http-music setup in README | Florrie | |
2017-10-27 | Add simple setup wizard (http-music setup) | Florrie | |
..and create/update related man pages. Try it! | |||
2017-10-25 | Update todo.txt | Florrie | |
Removed an old task (now completed) and updated another. | |||
2017-10-25 | Add way to search whole playlist for a particular name | Florrie | |
Try play -c -k '?My Album Name' to make http-music only play the group with the name 'My Album Name', no matter where it is in the playlist! | |||
2017-10-25 | Make -k and -x fail when the passed group path is not perfectly found | Florrie | |
2017-10-24 | Add --open-playlist-string option | Florrie | |
Lets playlists be passed to `play` by an actual string argument; e.g. --playlist-string '{"tracks": [...]}'. Could work well with http-music's own crawler utilities (e.g. --playlist-string '{"source": ["crawl-local", "."]}' or with external ones (e.g. --playlist-string "$(cool-crawler-utilith.sh)". At the moment the only workaround is to use a temporary file to store the playlist in, or to pipe the output of the crawler command (which might be `echo`!) to http-music and use /dev/stdin as the --playlist-file value.. which obviously isn't cross-platform or practical! I'd like to have some aliases in the future since --open-playlist-string isn't really easy to type. | |||
2017-10-12 | Add --start to man page | Florrie | |
2017-10-12 | Add --start-at option and 'track version' concept | Florrie | |
2017-09-28 | Add --filter to man page | Florrie | |
2017-09-28 | Add --filter | Florrie | |
2017-09-26 | Add some examples to http-music-play man page | Florrie | |
2017-09-26 | Add --collapse-groups to man page | Florrie | |
2017-09-26 | Add --collapse-groups option | Florrie | |
2017-09-23 | Fix a bug where you couldn't --exclude groups added by a smart playlist | Florrie | |
2017-09-20 | Show path to track's parent in track info - not including the track, which ↵ | Florrie | |
is redundant | |||
2017-09-19 | Fix critical bug; http-music now halts if 5 tracks fail to download in a row | Florrie | |
2017-09-18 | Track-specific converter options | Florrie | |
See todo.txt, changes in the man page, and this example: https://gist.github.com/towerofnix/9b1853ee74d30357e1b59d22c59aba2f | |||
2017-09-13 | Make indexer code actually index the playlist (via updatePlaylistFormat) | Florrie | |
2017-09-13 | Make getItemPathString work the way it's meant to | Florrie | |
2017-09-11 | Ignore filename case in crawl-local | Florrie | |
The array ['banana', 'Rainbows!!', 'Abstract', 'kangaroo'].. ..would previously be sorted as ['Abstract', 'Rainbows!!', 'banana', 'kangaroo'].. ..but that was clearly wrong; it's now sorted as ['Abstract', 'banana', 'kangaroo', 'Rainbows!!']. | |||
2017-09-07 | Add respective command beside each screenshot | Florrie | |
2017-09-07 | Tiny todo update | Florrie | |
2017-09-07 | Quick screenshots | Florrie | |
2017-09-07 | Rename pickers2.js to pickers.js | Florrie | |
2017-09-06 | Remove extra debug timer | Florrie | |
2017-09-06 | Merge branch 'master' of https://github.com/towerofnix/http-music | Florrie | |
2017-09-06 | Hyperspeed pickers2 (~10x indexing speed increase) | Florrie | |
2017-09-06 | Hyperspeed pickers2 (~10x indexing speed increase) | Florrie | |
2017-09-06 | Add console logs for indexing/done-indexing | Florrie | |
Particularly handy for slow machines, where indexing may take a while (e.g. a Raspberry Pi). | |||
2017-09-05 | Cache flattened playlist | Florrie | |
2017-09-05 | Fix the shuffle groups player | Florrie | |
2017-09-05 | Shuffle seeds | Florrie | |
2017-09-03 | Let users import keybindings from files | Florrie | |
Example: https://gist.github.com/towerofnix/381c813f4b231ded5ae416f040134261 | |||
2017-09-03 | Remove a finished todo | Florrie | |
2017-09-03 | Use hasOwnProperty() instead of keys().includes() | Florrie | |
2017-09-03 | Move keybinder code into its own file | Florrie | |
2017-09-03 | Begin commandable keybindings | Florrie | |
2017-09-02 | Update todo; todo - fix shuffle players | Florrie | |
2017-09-02 | Man changes | Florrie | |
2017-09-02 | Skip back/forwards | Florrie | |