Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-08-05 | automatically run rofi on cli arguments | Rasmus Steinke | 2 | -18/+20 | |
2017-08-05 | fix quoting | Rasmus Steinke | 1 | -2/+2 | |
2017-08-05 | remove debug modules | Rasmus Steinke | 1 | -2/+0 | |
2017-08-05 | fix spelling | Rasmus Steinke | 1 | -7/+7 | |
2017-08-05 | fix sprintf for albums | Rasmus Steinke | 1 | -2/+2 | |
2017-08-05 | add executable | Rasmus Steinke | 1 | -0/+278 | |
2017-08-05 | Add install script for arch linux | Rasmus Steinke | 4 | -279/+132 | |
2017-08-05 | add tmux_config option | Rasmus Steinke | 3 | -3/+59 | |
2017-08-05 | make clerk work even with missing tags | Rasmus Steinke | 1 | -2/+5 | |
2017-08-05 | Add latest view | Rasmus Steinke | 1 | -9/+23 | |
2017-08-04 | add playlists menu for fzf backend | Rasmus Steinke | 1 | -13/+39 | |
2017-08-04 | create tmp directory if it does not exist | Rasmus Steinke | 1 | -0/+2 | |
2017-08-04 | start tmux interface for fzf backend; allow setting of CLERK_BACKEND and ↵ | Rasmus Steinke | 1 | -7/+32 | |
CLERK_CONF variables | |||||
2017-08-04 | make chunksize a config option | Rasmus Steinke | 2 | -2/+13 | |
2017-08-04 | some cleanups, save Last-Modified in epoch format | Rasmus Steinke | 1 | -31/+52 | |
2017-08-03 | automatically update caches | Rasmus Steinke | 1 | -0/+3 | |
2017-08-03 | fix prompt for rofi | Rasmus Steinke | 1 | -6/+5 | |
2017-08-03 | fix indentation | Rasmus Steinke | 1 | -1/+1 | |
2017-08-03 | fix indentation | Rasmus Steinke | 1 | -1/+1 | |
2017-08-03 | outsource action menus and adding of tracks to sub function | Rasmus Steinke | 1 | -20/+9 | |
2017-08-03 | unify adding of tracks for both album and track | Rasmus Steinke | 1 | -33/+23 | |
2017-08-03 | dont unpack msgpack again. add commandline arguments | Rasmus Steinke | 1 | -46/+51 | |
2017-08-03 | allow adding of multiple albums | Rasmus Steinke | 1 | -28/+32 | |
2017-08-03 | simplify variable creation | Rasmus Steinke | 1 | -8/+4 | |
2017-08-03 | remove non-needed files | Rasmus Steinke | 2 | -65/+0 | |
2017-08-03 | example config - initial | Rasmus Steinke | 1 | -0/+12 | |
2017-08-03 | First draft of perl version | Rasmus Steinke | 14 | -3243/+199 | |
2017-07-28 | convert more ifs | Rasmus Steinke | 1 | -28/+38 | |
2017-07-28 | use cases for argument parsing | Rasmus Steinke | 1 | -66/+33 | |
2017-07-26 | allow to customize player for queue tab | Rasmus Steinke | 2 | -2/+5 | |
2017-07-26 | fix ESC closing tab | Rasmus Steinke | 1 | -11/+9 | |
2017-07-26 | allow deletion of playlists | Rasmus Steinke | 1 | -1/+14 | |
2017-07-26 | fix double extension | Rasmus Steinke | 1 | -1/+1 | |
2017-07-26 | silence stop command | Rasmus Steinke | 1 | -1/+1 | |
2017-07-26 | remap controls | Rasmus Steinke | 1 | -3/+3 | |
2017-07-26 | Add Playlists support | Rasmus Steinke | 1 | -8/+6 | |
2017-07-26 | add playlist support | Rasmus Steinke | 2 | -4/+52 | |
2017-07-26 | fix Makefile | Rasmus Steinke | 1 | -3/+0 | |
2017-07-26 | merge all scripts into one, hopefully without breakage | Rasmus Steinke | 5 | -128/+113 | |
2017-07-22 | fix location for album list | Rasmus Steinke | 1 | -1/+1 | |
2017-07-22 | Merge pull request #30 from nicodebo/xdg_dir | Rasmus Steinke | 3 | -53/+85 | |
Implement xdg specification base directory | |||||
2017-07-22 | Implement xdg specification base directory | nicodebo | 3 | -53/+85 | |
Follow xdg base directory specification, see https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html - Use $XDG_CONFIG_HOME if it is set, otherwise use $HOME/.config - Use $XDG_DATA_HOME if it is set, othewise use $HOME/.local/share - split the clerk files between those two hereabove metionned directories by keeping the clerk/config and clerk/podcasts inside $XDG_CONFIG_HOME, and the rest inside $XDG_DATA_HOME - Put all the file variables definition in a centralized location for easier maintenance. - Updated the README to reflect the XDG support | |||||
2017-07-22 | Merge pull request #29 from nicodebo/fix_albumrating | Rasmus Steinke | 1 | -6/+7 | |
Fix albumratings does not exist | |||||
2017-07-22 | Fix albumratings does not exist | nicodebo | 1 | -6/+7 | |
The first time rating an album, a FileNotFoundError is raised because ~/.config/clerk/albumratings.json does not exists: - Moved the file opening (i.e. load_fastlist) inside the 'try' block and added an except clause, to catch the FileNotFoundError exception and process it accordingly. - Moved the action of saving the json track database and setting the sticker into a 'finally' block in order not to duplicate lines of code in the different blocks of the try/except. - Replaced the 'artist' tag with the 'albumartist' one. | |||||
2017-07-21 | Merge pull request #28 from nicodebo/fix_trackrating | Rasmus Steinke | 1 | -5/+9 | |
Fix trackrating does not exist | |||||
2017-07-21 | Fix trackrating does not exist | nicodebo | 1 | -5/+9 | |
The first time rating a track, a FileNotFoundError is raised because ~/.config/clerk/trackratings.json does not exists: - Moved the file opening (i.e. load_fastlistTrack) inside the 'try' block and added an except clause, to catch the FileNotFoundError exception and process it accordingly. - Moved the action of saving the json track database and setting the sticker into a 'finally' block in order not to duplicate lines of code in the different blocks of the try/except. | |||||
2017-07-18 | Merge pull request #26 from nicodebo/zsh_completion | Rasmus Steinke | 2 | -0/+116 | |
Add zsh completion script | |||||
2017-07-18 | Add zsh completion script | nicodebo | 2 | -0/+116 | |
- Update the readme with installation instruction | |||||
2017-07-16 | Remove perl column | Rasmus Steinke | 1 | -1/+0 | |
2017-07-16 | use pure awk for cache creation | Rasmus Steinke | 3 | -43/+15 | |