update changelog for 0.10.0
update add command info to include dir support update mpd.1 and conf example to include ~ support git-svn-id: https://svn.musicpd.org/mpd/trunk@64 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
parent
1adca2abd2
commit
5262a06659
16
ChangeLog
16
ChangeLog
|
@ -1,3 +1,19 @@
|
||||||
|
ver 0.10.0 (2004/3/1)
|
||||||
|
1) Use UTF-8 for all client communications
|
||||||
|
2) Crossfading support
|
||||||
|
3) Password Authentication (all in plaintext)
|
||||||
|
4) Software mixer
|
||||||
|
5) Buffer Size is configurable
|
||||||
|
6) Reduced Memory consumption (use directory tree for search and find)
|
||||||
|
7) Bitrate support for Flac
|
||||||
|
8) setvol command (deprecates volume command)
|
||||||
|
9) add command takes directories
|
||||||
|
10) Path's in config file now work with ~
|
||||||
|
11) Reenable playTime in stats display
|
||||||
|
12) Fix a segfault when doing: add ""
|
||||||
|
13) Fix a segfault with flac vorbis comments simply being "="
|
||||||
|
14) Fix a segfault/bug in queueNextSong with repeat+random
|
||||||
|
|
||||||
ver 0.9.4 (2004/1/21)
|
ver 0.9.4 (2004/1/21)
|
||||||
1) Fix a bug where updated tag info wasn't being detected
|
1) Fix a bug where updated tag info wasn't being detected
|
||||||
2) Set the default audio write size to 1024 bytes (should decrease cpu load a bit on some machines).
|
2) Set the default audio write size to 1024 bytes (should decrease cpu load a bit on some machines).
|
||||||
|
|
|
@ -20,9 +20,10 @@ These denote the end of command execution.
|
||||||
Commands:
|
Commands:
|
||||||
---------
|
---------
|
||||||
|
|
||||||
add <string file>
|
add <string path>
|
||||||
add the file _file_ to the playlist
|
add the file _path_ to the playlist (directories add recursively)
|
||||||
increments playlist version by 1
|
_path_ can also be a single file
|
||||||
|
increments playlist version by for each song added
|
||||||
|
|
||||||
clear
|
clear
|
||||||
clears the current playlist
|
clears the current playlist
|
||||||
|
|
12
doc/mpd.1
12
doc/mpd.1
|
@ -157,13 +157,13 @@ Below is an example config file. (Note: '#' at the beginning of a line denotes a
|
||||||
.br
|
.br
|
||||||
port "2100"
|
port "2100"
|
||||||
.br
|
.br
|
||||||
music_directory "/home/shank/mp3"
|
music_directory "~/mp3"
|
||||||
.br
|
.br
|
||||||
playlist_directory "/home/shank/playlists"
|
playlist_directory "~/playlists"
|
||||||
.br
|
.br
|
||||||
log_file "/home/shank/mpd.log"
|
log_file "~/mpd.log"
|
||||||
.br
|
.br
|
||||||
error_file "/home/shank/mpd.error"
|
error_file "~/mpd.error"
|
||||||
.br
|
.br
|
||||||
|
|
||||||
.br
|
.br
|
||||||
|
@ -197,9 +197,9 @@ buffer_before_play "25%"
|
||||||
.br
|
.br
|
||||||
buffer_size "2048"
|
buffer_size "2048"
|
||||||
.br
|
.br
|
||||||
#db_file "/home/shank/playlists/.mpddb"
|
#db_file "~/playlists/.mpddb"
|
||||||
.br
|
.br
|
||||||
#state_file "/home/shank/playlists/.mpdstate"
|
#state_file "~/playlists/.mpdstate"
|
||||||
.br
|
.br
|
||||||
#user "shank"
|
#user "shank"
|
||||||
.br
|
.br
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
# required
|
# required
|
||||||
port "2100"
|
port "2100"
|
||||||
music_directory "/home/shank/mp3"
|
music_directory "~/mp3"
|
||||||
playlist_directory "/home/shank/playlists"
|
playlist_directory "~/playlists"
|
||||||
log_file "/home/shank/mpd.log"
|
log_file "~/mpd.log"
|
||||||
error_file "/home/shank/mpd.error"
|
error_file "~/mpd.error"
|
||||||
|
|
||||||
# optional
|
# optional
|
||||||
mixer_type "oss"
|
mixer_type "oss"
|
||||||
|
@ -20,8 +20,8 @@ mixer_device "/dev/mixer"
|
||||||
max_playlist_length "4096"
|
max_playlist_length "4096"
|
||||||
buffer_before_play "25%"
|
buffer_before_play "25%"
|
||||||
buffer_size "2048"
|
buffer_size "2048"
|
||||||
#db_file "/home/shank/playlists/.mpddb"
|
#db_file "~/playlists/.mpddb"
|
||||||
#state_file "/home/shank/playlists/.mpdstate"
|
#state_file "~/playlists/.mpdstate"
|
||||||
#user "shank"
|
#user "shank"
|
||||||
connection_timeout "60"
|
connection_timeout "60"
|
||||||
max_connections "5"
|
max_connections "5"
|
||||||
|
|
Loading…
Reference in New Issue