Blame


1 b7480154 2022-06-12 op * amused 0.8; 2022-06-12
2 b7480154 2022-06-12 op - try to recover from mp3 decoding errors
3 b7480154 2022-06-12 op - plug a memory leak in player_dispatch
4 b7480154 2022-06-12 op - don't use realpath(3) in `amused add'
5 b7480154 2022-06-12 op - use a strictier pledge for `amused add'
6 b7480154 2022-06-12 op - use canonpath (from kern_pledge.c) for paths handling
7 b7480154 2022-06-12 op - non-blocking usage of sndio: avoids artificial gaps between tracks
8 b7480154 2022-06-12 op - use sio_flush to stop the playback
9 b7480154 2022-06-12 op - automatically skip all non-regular files, not only directories
10 b7480154 2022-06-12 op
11 e87b9802 2022-05-19 op * amused 0.7; 2022-05-19
12 e87b9802 2022-05-19 op - amused monitor optionally accepts a list of events to report
13 e87b9802 2022-05-19 op - consume all enqueued messages before calling imsg_read
14 e87b9802 2022-05-19 op
15 801c4a42 2022-05-10 op * amused 0.6; 2022-05-10
16 801c4a42 2022-05-10 op - manpage tweaks
17 801c4a42 2022-05-10 op - fix file descriptor leak on player_playnext failure
18 801c4a42 2022-05-10 op - added a simple filetype detector instead of relying on file extensions
19 801c4a42 2022-05-10 op
20 801c4a42 2022-05-10 op * amused 0.5; 2022-03-26
21 801c4a42 2022-05-10 op - unbreak opus and ogg vorbis
22 801c4a42 2022-05-10 op - handle flacs with bps != 16 and/or channels != 2
23 801c4a42 2022-05-10 op - speed up `load' a lot (especially over NFS)
24 801c4a42 2022-05-10 op
25 801c4a42 2022-05-10 op * amused 0.4; 2022-03-14
26 801c4a42 2022-05-10 op - second part of the "unbreak flac" due to carelessly refactoring
27 801c4a42 2022-05-10 op
28 801c4a42 2022-05-10 op * amused 0.3; 2022-03-13
29 801c4a42 2022-05-10 op - unbreak flac: add back missing counter reset
30 801c4a42 2022-05-10 op
31 801c4a42 2022-05-10 op * amused 0.2; 2022-03-10
32 801c4a42 2022-05-10 op - keep the current song if `load' input was generated by show -p
33 801c4a42 2022-05-10 op - update the current song after `load' if the player was stopped
34 801c4a42 2022-05-10 op - follow tmux behavior wrt how the daemon is automatically started
35 801c4a42 2022-05-10 op - changed the output of `amused status' to simplify parsing
36 801c4a42 2022-05-10 op - correctly handle arguments for subcommands
37 801c4a42 2022-05-10 op - correctly pledge the player process with "stdio recvfd audio"
38 801c4a42 2022-05-10 op - manpage improvements
39 801c4a42 2022-05-10 op
40 801c4a42 2022-05-10 op * amused 0.1; 2022-02-24
41 500432f1 2022-05-19 op - first public version (and probably last too, the thing is finished)