Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 05fd258a33c5cb071658f7e23724d52e > files > 4

xmms-morestate-1.2-12mdv2010.0.i586.rpm

2003-08-20  Leslie Polzer  <leslie.polzer@gmx.net>

	* autoplay.h, autoplay.c, config.c, win_config.c (Feature):
	applied a patch by Arne Becker <arnie@rommel.stw.uni-erlangen.de>
	that adds SIGHUP support 

2003-02-09  David Deephanphongs  <deephan@users.sourceforge.net>

	* autoplay.c, config.c, win_config.c - (Feature) Added a play
	condition setting -- when XMMS starts, it will either: always
	start playing, never start playing, or restore whatever state it
	was in when it was closed.


	* autoplay.c - (FIX) Morestate would wait 50 seconds before noting
	that XMMS had stopped playing (this is partially due to my use of
	the constant '50' in xmms-morestate.c).  I changed the timeout
	time and stop-register time to use constants, and brought the
	delay down to 3 seconds.

	* autoplay.c, misc.c, autoplay.h - (FIX) Morestate thread id 'tid'
	was declared static in the header file.  Unless I'm mistaken, that
	means that each file that references 'tid' has its own instance of
	it -- which means that misc.c and autoplay.c used different values
	of 'tid'.  I renamed 'tid' to 'morestate_tid', declared it
	'extern' in autoplay.h, and defined it in autoplay.c