Commit f9434227 authored by Led's avatar Led

0.10.0

parent 88831267
...@@ -17,6 +17,8 @@ ver 0.10.0 (2004/3/3) ...@@ -17,6 +17,8 @@ ver 0.10.0 (2004/3/3)
16) Fix a bug, where one process may segfault, and cause more processes to spawn w/o killing ones that lost their parent. 16) Fix a bug, where one process may segfault, and cause more processes to spawn w/o killing ones that lost their parent.
17) Fix a bug when the OSS device was unable to fetch the current volume, 17) Fix a bug when the OSS device was unable to fetch the current volume,
it would close the device (when it maybe previously closed by the exact same code) it would close the device (when it maybe previously closed by the exact same code)
18) command.c cleanup by mackstann
19) directory.c and command.c cleanup by tw-nym
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
......
...@@ -221,7 +221,7 @@ log_level "default" ...@@ -221,7 +221,7 @@ log_level "default"
.br .br
bind_to_address "any" bind_to_address "any"
.br .br
#passwd "passwd@read,add,control,admin" #password "password@read,add,control,admin"
.br .br
#default_permissions "read,add,control,admin" #default_permissions "read,add,control,admin"
.br .br
......
...@@ -32,6 +32,6 @@ save_absolute_paths_in_playlists "no" ...@@ -32,6 +32,6 @@ save_absolute_paths_in_playlists "no"
log_level "default" log_level "default"
# when bind_to_address is set to "any", MPD binds all available addresses # when bind_to_address is set to "any", MPD binds all available addresses
bind_to_address "any" bind_to_address "any"
#passwd "passwd@read,add,control,admin" #password "password@read,add,control,admin"
#default_permissions "read,add,control,admin" #default_permissions "read,add,control,admin"
#filesystem_charset "UTF-8" #filesystem_charset "UTF-8"
...@@ -168,7 +168,7 @@ char ** readConf(char * file) { ...@@ -168,7 +168,7 @@ char ** readConf(char * file) {
numberOfArgs = buffer2array(string,&array); numberOfArgs = buffer2array(string,&array);
if(numberOfArgs==0) continue; if(numberOfArgs==0) continue;
if(2!=numberOfArgs) { if(2!=numberOfArgs) {
ERROR("need two args in conf at: %s\n",string); ERROR("improperly formated config line: %s\n",string);
exit(-1); exit(-1);
} }
i = 0; i = 0;
......
...@@ -199,8 +199,9 @@ void decodeSeek(PlayerControl * pc, AudioFormat * af, DecoderControl * dc, ...@@ -199,8 +199,9 @@ void decodeSeek(PlayerControl * pc, AudioFormat * af, DecoderControl * dc,
int decoderInit(PlayerControl * pc, Buffer * cb, AudioFormat *af, int decoderInit(PlayerControl * pc, Buffer * cb, AudioFormat *af,
DecoderControl * dc) { DecoderControl * dc) {
int pid;
decode_pid = &(pc->decode_pid); decode_pid = &(pc->decode_pid);
int pid = fork(); pid = fork();
if(pid==0) { if(pid==0) {
/* CHILD */ /* CHILD */
......
...@@ -69,7 +69,6 @@ unsigned int parsePermissions(char * string) { ...@@ -69,7 +69,6 @@ unsigned int parsePermissions(char * string) {
} }
void initPermissions() { void initPermissions() {
permission_passwords = makeList(free);
char * passwordSets; char * passwordSets;
char * nextSet; char * nextSet;
char * temp; char * temp;
...@@ -78,6 +77,8 @@ void initPermissions() { ...@@ -78,6 +77,8 @@ void initPermissions() {
char * password; char * password;
unsigned int * permission; unsigned int * permission;
permission_passwords = makeList(free);
permission_default = PERMISSION_READ | PERMISSION_ADD | permission_default = PERMISSION_READ | PERMISSION_ADD |
PERMISSION_CONTROL | PERMISSION_ADMIN; PERMISSION_CONTROL | PERMISSION_ADMIN;
......
...@@ -402,17 +402,19 @@ float getPlayerCrossFade() { ...@@ -402,17 +402,19 @@ float getPlayerCrossFade() {
} }
void setPlayerCrossFade(float crossFadeInSeconds) { void setPlayerCrossFade(float crossFadeInSeconds) {
PlayerControl * pc;
if(crossFadeInSeconds<0) crossFadeInSeconds = 0; if(crossFadeInSeconds<0) crossFadeInSeconds = 0;
PlayerControl * pc = &(getPlayerData()->playerControl); pc = &(getPlayerData()->playerControl);
pc->crossFade = crossFadeInSeconds; pc->crossFade = crossFadeInSeconds;
} }
void setPlayerSoftwareVolume(int volume) { void setPlayerSoftwareVolume(int volume) {
PlayerControl * pc;
volume = (volume>100) ? 100 : (volume<0 ? 0 : volume); volume = (volume>100) ? 100 : (volume<0 ? 0 : volume);
PlayerControl * pc = &(getPlayerData()->playerControl); pc = &(getPlayerData()->playerControl);
pc->softwareVolume = volume; pc->softwareVolume = volume;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment