2005-03-12 17:41  jesus c. meyendriesch <jesus@qplay.org>

	* created revision 0.7.3

2005-03-12 17:30  jesus c. meyendriesch <jesus@qplay.org>

	* qplay.c (main): fixed problem with reading directories in
		the background
	
	* modules/mpg321.c: adds ftp support

2005-03-09 21:09  jesus c. meyendriesch <jesus@qplay.org>

	* parser.[hc]: parser functions got their own file

  * actions.c (_newEntry): fixed a problems with parser
		(cmd_search): enabled to search in parsed string
	
	* qplay.c (redraw): parses status line now

2005-03-08 13:19  jesus c. meyendriesch <jesus@qplay.org>

	* actions.c (cmd_move): problem with moving over the playing
		song solved

2005-03-08 12:57  jesus c. meyendriesch <jesus@qplay.org>

	* qplay.c (parse_op, parseit): format line parameters can have
		a prefix like "%02d" now

2005-03-07 21:25  jesus c. meyendriesch <jesus@qplay.org>

	* new keymap concept: you can use bind in combination with
		meta-key now (e.g. bind M-u ..)

2005-03-06 17:05  jesus c. meyendriesch <jesus@qplay.org>

	* actions.c (cmd_del): can remove files from list
		(cmd_search): searches string in the filenames

	* read-m3u.c: enabled m3u-list support again

	* qplay.c: new option -u to delete fifo
		reads ~/.qplayrc file for configurations

	* modules: realized HTTP support

2005-03-06 01:36  jesus c. meyendriesch <jesus@qplay.org>

	* edit-list.c (addToFileList): old stuff - removed it
		(addToList): now the list can become randomized by adding
			new entries
	  (removeFromList): sets inqueue only if the file is not anymore
	  	in list

	* actions.c: new format string system

	* qplay.c: new parser for format string
			reads files in background

	* modules: starts module programs with execvp instead of execlp
			this is more flexible to use parameters
			btw: seeking through the song is now enabled again

2005-03-01 16:03  jesus c. meyendriesch <jesus@qplay.org>

	* ChangeLog: changed mail addresses to jesus@qplay.org and
		alex@qplay.org

	* dist.sh: made t-parameter to create a svn-tag
			added gz-parameter to create also a gzip-tar-ball

	* AUTHORS: added matzel

2005-02-27 21:41  Alexander Fieroch <alex@qplay.org>

	* created revision 0.7.0

2005-02-19 00:52  jesus c. meyendriesch <jesus@qplay.org>

	* ./dist.sh: fixed up one more problem with the version-sed in
			good hope

2005-02-19 00:31  jesus c. meyendriesch <jesus@qplay.org>

	* ./dist.sh: forgot to change the url from the test mode.. :-)

2005-02-19 00:17  jesus c. meyendriesch <jesus@qplay.org>

	* ./dist.sh: created this file in order to set a revision version

	* include, modules: removed old directories

2005-02-17 01:50  jesus c. meyendriesch <jesus@qplay.org>

	* release 0.7: branches/jesus to branches/unstable merged

2005-02-16 12:20  jesus c. meyendriesch <jesus@qplay.org>

	* configure.ac: don't use libhistory, we decided to use our own
			herstory implementation.

	* actions.c (cmd_set): tried to use a split format string,
			not yet ready
		(cmd_stop): only clears remote file descriptor from fd_set for
			select if it is greater than zero, can resolve some problems
		(cmd_play): adds only remote file descriptor to fd_set
			if it is also greater than zero
		(cmd_osd): for now, it does nothing

	* qplay.c (sign_quit): ends ncurses and unlinks the fifo 
		(main): extra parameter to read config-file, not finished now
			only starts, if no fifo is present

	* src/Makefile.am: removed version.h from the compilers dependence

2005-02-06 21:50  jesus c. meyendriesch <jesus@qplay.org>

	* Makefile.am (clean-local): now removes autom4te.cache by
			"make clean"
		(indent): can indent the source-code (use "make indent")

	* configure.ac: now build-version can be set in AC_INIT

	* actions.c (cmd_pause): pauses a given song
		(cmd_set): sets a variable, up to now only format (formats a line) is
			implemented
		(cmd_segv): sends a segfault-signal to the process,
			is only enabled in debug mode
		(cmd_add): adds a file to the filelist, now we can add only files,
			directory support coming soon.. :)
		(cmd_play): cleans remote from fd_set only if it is
			greater than zero
		(cmd_quit): implemented, cleans also resources like fifo

	* globals.c, globals.h: format-string to format list line added

	* module|mpg321.c: added some more comments
		(mpg321_init): player binary is search by using PATH-variable
		(mpg321_check): now reads id3-TAG
		(mpg321_getstr): now use id3-TAG :)
			now returns more than only the filename
		(mpg321_play): now player command is called directly, no more over the
			shell, this resolves the '-problem

	* module|ogg123.c (ogg123_check): now also reads vorbis-header
		(ogg123_getstr): can return information such as TITLE, ARTIST etc.

	* qplay.c (redraw): parse the format-string to print out a list-line
		(main): added --command|-c parameter to send a command to the fifo
			creates fifo-file as remote control
			sets segfault-handler to stop player on signal
		(init_qplay): sets standard keymap and format-string

2005-01-22 02:10  jesus c. meyendriesch <jesus@qplay.org>

	* configure.ac, configure, src/config.h.in: added some header and library
		checks

	* src/modules/mpg321.c (mpg321_getstr): removed '\n' at the end
		of returned string

	* doc/qplay.1 (SEE ALSO): removed ','

2005-01-21 10:13  jesus c. meyendriesch <jesus@qplay.org>

	* TODO: removed some old TODO entries

	* edit-list.c, actions.c, edit-list.h, actions.h, qplay.c, modules,
	read-dir.c, ..: moved source to src

	* doc/qplay.1: created small first man-page (FIXIT)

	* Makefile.am, configure.ac, src/Makefile.am: added
		gnu-automake-system

	* Makefile, modules/Makefile: removed old makefiles

	* src/version.h: releases and other versions file

	* src/actions.c (command): new command system, now instructions
		like "select next" can be called now by command("select next")
		(add_keybinding): keybinding-able
		(cmd_input): even a input function is implemented
		(cmd_seek): fixed fd_set segfault
		(cmd_add): addes file to list (dummy)
		(cmd_stop): stops a song
		(cmd_play): plays a song
		(cmd_randomize): randomize the filelist
		(cmd_sort): sort the filelist
		(cmd_select): set the filelist selection
		(cmd_input): get input line
		(cmd_clear): force redrawing screen
		(cmd_bind): bind a action to key
		(cmd_unbind): unbind a key
		(cmd_quit): quit the player
		(cmd_unimp): unimplemented function

	* src/qplay.c (main): inital new keybinding system
		- moved all functions like randomize to actions.c

	* src/globals.c, src/globals.h: some global variables exported
		for easier import

	* ChangeLog: added changelog-file in order to make log entries
		maybe we can replace it and generate it from svn log

2005-01-16 15:12  Alexander Fieroch <alex@qplay.org>

	* edit-list.c: queuelist now fully implemented

	* qplay.c: queuelist now fully implemented
		coredump if in debugmode

	* qplay.h: debugmode differs in debuglevel

2005-01-14 00:04  Alexander Fieroch <alex@qplay.org>

	* qplay.c: queuelist implemented, but yet not finished
		variablename changes and song-counter increased
		qplay version changed from revision 50 (svn) to 0.6.0

2005-01-13 10:55  jesus c. meyendriesch <jesus@qplay.org>

	* branches/jesus: created jesus branch for testing some new
		features by me

2005-01-13 10:43  jesus c. meyendriesch <jesus@qplay.org>

	* tags/0.1, tags/0.2, tags/0.3, tags/0.4, tags/0.5, tags/0.6:
		added some tags (in the future it is to be maintained on the fly)

2004-12-28 11:51  jesus c. meyendriesch <jesus@qplay.org>

	* ogg123.c, mpg321.c: completed renaming of modules (svn can't
		rename files which were already modified)

2004-12-28 11:44  jesus c. meyendriesch <jesus@qplay.org>

	* ogg.c: renamed ogg-module to ogg123

	* mp3.c: renamed mp3-module to mpg321

	* mpg321.c: made mpg321 to default player for mp3-files mpg123 has
		problems with some mp3s, so there is a hack in order to fix this,
		but mpg321 works also fine

	* qplay.c: new keys HOME and END added to jump faster
		prepared test-mode to call the player with test-parameter (-t)

2004-12-27 17:17  jesus c. meyendriesch <jesus@qplay.org>

	* qplay.c: * implemented functions like randomize, shuffle and
		repeat seems to work fine but I'm not happy about the shuffle
		function

2004-12-27 12:33  jesus c. meyendriesch <jesus@qplay.org>

	* qplay.c: fixed last-song-problem, now it stops at the end of
		the list

	* edit-list.c: fixed a little playlist problem

2004-12-27 02:31  jesus c. meyendriesch <jesus@qplay.org>

	* qplay.c: forgot to remove the line which breaks off after
		created the list

2004-12-27 02:21  jesus c. meyendriesch <jesus@qplay.org>

	* read-dir.c: optimized file and path listings, so it is a
		little faster

2004-12-26 19:07  jesus c. meyendriesch <jesus@qplay.org>

	* qplay.c: fixed playlist navigation problem
 		changed some variable names

	* mp3.c, ogg.c: renamed size to total

2004-12-26 04:00  jesus c. meyendriesch <jesus@qplay.org>

	* read-dir.c, qplay.c: renamed filelist and fileentry
		so structs in lower case and typedefs in upper ones

	* bash-version/rplay: removed old stuff like bash-version

	* qplay.c: renamed filelist and fileentry
		added some dummy command-parameter
		added some comments
		removed signal-handling

	* mp3.c, ogg.c: created init functions for modules

	* mp3.c: fixed broken-mp3-problem but can't seek

2004-12-25 17:48  jesus c. meyendriesch <jesus@qplay.org>

	* mp3.c, ogg.c: remove pause problem in both modules (mp3 & ogg)

	* qplay.c: make check-functions more module like
		with array of function

2004-12-25 15:40  jesus c. meyendriesch <jesus@qplay.org>

	* qplay.c: add --version parameter

2004-12-25 15:18  jesus c. meyendriesch <jesus@qplay.org>

	* branches/unstable: cleaning up code with ./scripts/cleanup
		(make cleanup)

2004-12-25 15:08  jesus c. meyendriesch <jesus@qplay.org>

	* qplay.c: create skip function for both modules
		resolved next song problem

2004-12-25 13:30  jesus c. meyendriesch <jesus@qplay.org>

	* ogg.c, ogg.h: ogg-support similarly as mp3 added

2004-12-25 03:02  jesus c. meyendriesch <jesus@qplay.org>

	* Makefile: forgot modules/Makefile

2004-12-25 02:53  jesus c. meyendriesch <jesus@qplay.org>

	* modules: wrong direcotry for include-files

2004-12-25 02:51  jesus c. meyendriesch <jesus@qplay.org>

	* modules: modules dirctory for more clearness and some Makefile
		changes for it

2004-12-25 01:36  jesus c. meyendriesch <jesus@qplay.org>

	* branches/unstable: 'I' of $Id$-line should be in upper case :-/

2004-12-25 01:28  jesus c. meyendriesch <jesus@qplay.org>

	* branches/unstable: add some $Id-lines
		create parameter support
		added options: --recursive --help --debug

2004-12-25 00:10  jesus c. meyendriesch <jesus@qplay.org>

	* modules: module like system create external file mp3.c to
		handle mp3-files
		new list system
		refer to module-Functions from list
		getting all extra information (like time) from these function
		read directories recursive

2004-12-23 23:56  jesus c. meyendriesch <jesus@qplay.org>

	* branches/testing, branches/unstable: create new branches
		testing and unstable

2004-12-23 23:19  Alexander Fieroch <alex@qplay.org>

	* trunk/qplay.c: better and faster seek

2004-12-23 23:09  Alexander Fieroch <alex@qplay.org>

	* trunk/BUGS, trunk/TODO: BUGS and TODO files updated

	* trunk/qplay.c: queuelist implemented, add files with insert-key
		ESC does not quit anymore
		renamed variables: play -> playingSongID, first -> theQueueList,
		entry -> songEntry, list -> songlist

2004-12-16 22:21  Alexander Fieroch <alex@qplay.org>

	* trunk/qplay.c: renamed idx to songindex

	* trunk/BUGS, trunk/TODO: added files TODO and BUGS, which should
		be kept up to date by everyone

2004-12-06 23:08  Alexander Fieroch <alex@qplay.org>

	* trunk/qplay.c: added page up key
		fixed page down key
		fixed position of playing songname and timestamp while scrolling
		fixed help line

2004-11-02 22:58  Alexander Fieroch <alex@qplay.org>

	* trunk/qplay.c: scrolling up and down implemented, page down
		still buggy
		set shuffle and repeat mode with "S" and "R"

2004-10-31 21:23  Alexander Fieroch <alex@qplay.org>

	* trunk/qplay.c: fixed helpline
		added shuffle & replay dummy
		more source documentation

2004-10-31 19:49  Alexander Fieroch <alex@qplay.org>

	* trunk/qplay.c: fixed printed songnames, color and elapsed time
		for songs not playing
		dummy for page up and down... currently working on it

2004-10-28 21:49  Alexander Fieroch <alex@qplay.org>

	* trunk/qplay.c: forward & backward seek implemented

2004-10-28 21:02  Alexander Fieroch <alex@qplay.org>

	* trunk/qplay.c: fixes segmentation fault, when 'n' or 'b' exeeds
		last respectively first element

2004-10-03 00:34  jesus c. meyendriesch <jesus@qplay.org>

	* svnhooks: umlaut-problem resolved by encoding to utf8

2004-10-02 23:44  jesus c. meyendriesch <jesus@qplay.org>

	* svnhooks: error in svn-jabber system
		log entries with umlaut are not sent by jabber
		test: 

2004-09-29 00:36  jesus c. meyendriesch <jesus@qplay.org>

	* branches/test-version/qplay.c: only a test..
		can compile but doesn't work

2004-09-29 00:32  jesus c. meyendriesch <jesus@qplay.org>

	* branches/test-version: created new branch: branches/test-version

2004-09-29 00:31  jesus c. meyendriesch <jesus@qplay.org>

	* trunk, branches, tags: created trunk, branches and tags

2004-09-29 00:12  jesus c. meyendriesch <jesus@qplay.org>

	* qplay.c: used ncurses now
		can read output from mpg123

	* Makefile: add linker option -lncurses

	* cleanup: used /usr/bin/indent instead of indent

2004-09-28 13:09  jesus c. meyendriesch <jesus@qplay.org>

	* qplay.c: nicer indent

2004-09-28 13:01  jesus c. meyendriesch <jesus@qplay.org>

	* Makefile, qplay.c, rplay.c: rplay is now renamed to qplay

2004-09-26 20:24  Alexander Fieroch <alex@qplay.org>

	* rplay.c: limit lists navigation at the end and beginning of the list

2004-09-23 00:07  jesus c. meyendriesch <jesus@qplay.org>

	* bash-version/rplay: added $Id-line

	* rplay.c: LOAD at the end of list[idx] no more with for and act

2004-09-22 18:54  Alexander Fieroch <alex@qplay.org>

	* rplay.c: new keys: p to pause, s to stop, n for next song and b for
		previous

2004-09-22 16:15  Alexander Fieroch <alex@qplay.org>

	* rplay.c: quits rplay with q

2004-09-22 16:04  Alexander Fieroch <alex@qplay.org>

	* rplay.c: changed source comments: deutsch -> englisch

2004-09-22 08:22  jesus c. meyendriesch <jesus@qplay.org>

	* bash-version/rplay: old bash version - release 0.3

2004-09-22 08:21  jesus c. meyendriesch <jesus@qplay.org>

	* bash-version/rplay: old bash version - release 0.2

2004-09-22 08:19  jesus c. meyendriesch <jesus@qplay.org>

	* bash-version/rplay: old bash version - release 0.1

2004-09-21 22:02  Alexander Fieroch <alex@qplay.org>

	* rplay.c: bugfix: read from stdin

2004-09-20 23:32  jesus c. meyendriesch <jesus@qplay.org>

	* Makefile, rplay.c, scripts/cleanup: the first $Id-lines

2004-09-20 22:46  jesus c. meyendriesch <jesus@qplay.org>

	* Makefile, rplay.c: Erste Version release - 0.0.1

	* scripts/cleanup: to cleanup the source code if necessary
