2004-06-25 03:49:35 +02:00
|
|
|
0.12
|
|
|
|
----
|
2004-11-10 23:08:14 +01:00
|
|
|
*) rewrite search, find, locate to tag LocateTagItem pairs
|
2004-11-10 22:58:27 +01:00
|
|
|
|
|
|
|
*) rewrite filename handling
|
|
|
|
*) use memory more efficiently, by iteratively constructing filename
|
|
|
|
*) create a function for creating directory names:
|
|
|
|
*) when creating the string, check that the same directory
|
|
|
|
string wasn't just created (store last Directory * ptr)
|
|
|
|
*) this should be very fast! and save memory
|
2004-11-10 23:08:14 +01:00
|
|
|
*) static char * buffer, that only grows in size during life
|
|
|
|
span
|
|
|
|
*) implement like:
|
|
|
|
static char * buffer = NULL;
|
|
|
|
static int bufferSize = 0;
|
|
|
|
static int lastDirectory * last = NULL;
|
|
|
|
static int pos;
|
|
|
|
|
|
|
|
if(last == thisOne) return buffer[pos];
|
|
|
|
|
|
|
|
pos = bufferSIze;
|
|
|
|
for(parentDir; !rootDir; parent = parent->parent) {
|
|
|
|
pos -= strlen(parent);
|
|
|
|
if(pos < 0) i{
|
|
|
|
realloc(-pos bytes);
|
|
|
|
pos = 0;
|
|
|
|
}
|
|
|
|
/* we don't want to append a '\0', so use
|
|
|
|
strncpy */
|
|
|
|
strncpy(buffer[pos], parent, strlen(parent));
|
|
|
|
}
|
|
|
|
|
|
|
|
return buffer;
|
2004-11-08 21:27:11 +01:00
|
|
|
|
2004-11-09 17:02:22 +01:00
|
|
|
*) implement listener socket protocol as documented here:
|
|
|
|
http://www.musicpd.org/wiki/moin.cgi/MpdListenerProtocol
|
|
|
|
|
2004-11-08 21:27:11 +01:00
|
|
|
*) add support for coverart using freedesktop standard for icons/images
|
|
|
|
|
2004-07-23 18:56:14 +02:00
|
|
|
*) rewrite saved playlist code
|
|
|
|
*) abstract out saved playlists from playlist.c
|
|
|
|
*) command for displaying playlist contents
|
|
|
|
*) command for appending to playlist
|
2004-11-03 17:53:43 +01:00
|
|
|
*) new commands
|
|
|
|
*) clear <playlist> /* synonym for rm */
|
|
|
|
*) add <playlist> <path>
|
|
|
|
*) playlist <playlist> /* displays saved playlist */
|
2004-11-03 17:56:09 +01:00
|
|
|
*) replace <playlist> /* replace current playlist
|
2004-11-03 17:55:49 +01:00
|
|
|
with saved playlist and
|
|
|
|
keep playing */
|
2004-06-21 20:06:29 +02:00
|
|
|
|
2004-11-03 17:07:55 +01:00
|
|
|
*) state
|
|
|
|
*) abstract out state code from playlist.c
|
|
|
|
*) save states of audioOutput devices
|
2004-11-03 21:26:11 +01:00
|
|
|
*) put MPD Version in statefile
|
2004-11-03 17:07:55 +01:00
|
|
|
|
2004-11-05 21:20:06 +01:00
|
|
|
*) add command for inserting songs in a specific position
|
|
|
|
|
2004-11-02 23:13:58 +01:00
|
|
|
*) put more debugging info when failing to read/write db and other similar
|
|
|
|
errors
|
|
|
|
|
2004-11-03 15:34:58 +01:00
|
|
|
*) make libao optional during configure, but check that some form of audioOutput
|
|
|
|
is enabled (either oss, shout, or ao)
|
|
|
|
|
2004-11-03 19:13:45 +01:00
|
|
|
*) Fix id3v1 encoding
|
2004-10-28 13:53:51 +02:00
|
|
|
|
2004-11-03 19:13:45 +01:00
|
|
|
*) Cleanup Config File Code
|
2004-10-28 13:53:51 +02:00
|
|
|
|
2004-11-03 19:13:45 +01:00
|
|
|
*) Optimize read() on clients
|
2004-11-07 15:25:10 +01:00
|
|
|
|
2004-11-09 19:13:42 +01:00
|
|
|
*) Handle mp1 and mp2 files (including mp2's that are disguised as mp3's with
|
|
|
|
a mp3 suffix)
|
2004-11-07 15:25:10 +01:00
|
|
|
|
|
|
|
0.13
|
|
|
|
----
|
|
|
|
*) support for dynamically loading plugins
|