1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
2003-11-29 Mike Oliphant <grip@nostatic.org>
* mp3db.c: removed last mysql_connect
* configure.in/digitaldj.spec: upped version to 0.7.5
2003-10-31 Mike Oliphant <oliphant@gtk.org>
* ddj.c/playlist.c: fixed bug causing overwriting playlists not to
update the song count
* ddj.c: automatically create a user on auto db install
* ddj.c/mp3db.c: don't close root mysql
* configure.in/digitaldj.spec: upped version to 0.7.4
2003-04-30 Mike Oliphant <oliphant@gtk.org>
* ddj.c/mp3db.c: got rid of use of deprecated mysql client
routines (Adam Hooper)
* configure.in/digitaldj.spec: upped version to 0.7.3
2002-10-19 Mike Oliphant <oliphant@gtk.org>
* ddj.c: get version from config.h
* ddj.c: display album art in Edit window
* listgui.c: fixed a bug that caused the current song in a
playlist not to revert properly on recall
* ddj.c: broke playlist control buttons up into two rows
* ddj.c/playlist.c: added saving/loading of artist and disc lists
* dblist.c: don't choke on empty queries
* ddj.c: load album art from pasted url
* lirc.c: fixed crash on exit
* ddj.c: load album art from pasted filename
* fileutil.c/h: added
* configure.in/digitaldj.spec: upped version to 0.7.2
2002-10-17 Mike Oliphant <oliphant@gtk.org>
* lirc.c/h: added lirc support
* perl/DDJDB.pm: made db/host/user/password configurable
* perl/googlecovers.pl: a new script to grab cover art via google
image search
* various: converted build process to GNU configure
* configure.in/digitaldj.spec: upped version to 0.7.1
2002-10-15 Mike Oliphant <oliphant@gtk.org>
* mp3insert.c: fixed a quoting bug (thanks to Gunnar Hilling for this)
* ddj.c: improved handling of child process (pause/resume/kill)
* playlist.c/h: new playlist routines
* idlist.c/h: new functionality for representing lists of ids
* dblist.c/h: routines for storing idlists in a database
* song.c/h: new routines for managing song lists
* artist.c/h: new rotuines for managing artist lists
* disc.c/h: new routines for managing disc lists
* listgui.c/h: routines to manage idlists in clist widgets
* x10.c/h: interface to x10 remote controls
* mixer.c/h: mixer interface routines
* ddj.c: added interactive display interface designed for tv
output
* mp3db.c: added routine to update database schema
* ddj.h/Makefile: upped version to 0.7.0
v0.6 -- November 7th, 1999
--------------------------
o removed "save configuration" button -- config now saved on exit
o added panes to the query window (thanks to Brian J. Murrell for this)
o got rid of ddj's .rc file. the current implementation of themes makes it
all but impossible to have application-specific .rc files handled
intelligently
o overhauled the way input widgets work (lots of effort for no difference
to the end-user, but it was the right thing to do...)
o filenames are now stored in the database, rather than calculated
o *** The database format has changed -- this version is *not* backward
compatible. sorry... :-(
v0.5 -- June 28th, 1999
-----------------------
o track number in mp3 file format is now correct
o fixed crash if query got too long
o added %A switch for disc artist
o fixed "flickering" in disc clist when artist selection changed
o hitting the "previous track" button only goes back a song if playback
is less than a second in (otherwise it restarts the current track)
o fixed a problem that caused a hang if you quit or stopped while paused
o the window now moves if it gets resized off of the screen
o critical colors now done internally rather than through a gtkrc
file. this was necessary because themes (brokenly) override application
rc files
v0.4 -- June 4th, 1999
----------------------
o added a database re-scan button
o ~ now supported in filenames
o clists now use "extended" instead of "multiple" select
o %% now translates as % in switch translation
o ddj is can now insert records even if the user has added database
fields (thanks to John Hoffmann for the patch)
o RPM now installs mp3insert (DOH!)
v0.3 -- May 26th, 1999
----------------------
o disc and song tables now created properly
o year field now supported by mp3insert
o year field now editable in DigitalDJ
o reorganized the server config again
o fixed a problem ddj had in handling blank string fields
v0.2 -- May 24th, 1999
----------------------
o clicking on a song now plays it if there is currently another song
playing
o fixed a problem creating a user account on a remote server
o added a play time indicator
o added an "about" page
o MP3 player is now configurable
o ddj now keeps track of how many times a song/artist/disc has been played,
and when the last time was
o quotes in artist/disc/genre names now escaped properly
o updating of song information now done throuth SQL "update"
o redesigned the BPM calculation interface
o clicking on the LCD display now give "super-condensed" mode
o separated config into "client" and "server"
o made the server config more user-friendly
o a message now pops up at startup if the database does not yet exist
v0.1 -- May 12th, 1999
----------------------
o first beta release
|