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
|
Version 0.3.1
=============
08/25/08
* Added support for big-endian machines.
* If drive supports media change detection it will be used
in addition to the old method.
* Fixed segfaults when properties "path" or "command" are
not defined in the config file.
* Other minor fixes.
Version 0.3.0
=============
08/23/08
* Updated documentation files.
* Bumped version to 0.3.0.
Version 0.2.1
=============
08/22/08
* First release at SourceForge!
* New maintainer: Stanislav Maslovski <stanislav.maslovski@gmail.com>.
* Various automake and compilation fixes.
* Use system() instead of execvp() to start external commands.
* Use strdup() instead of substr() where possible.
* Code of string.c:replace() rewritten.
* Functions substr(), indexof(), trim(), trim_destruct() from string.c
removed as not needed anymore.
Version 0.2.0
=============
11/17/04
* Made CDDE into a daemon. All output besides command-line errors are sent via
syslog
* Sometime since last year libxml changed it's aclocal file so I had to update
the required version to 2.6.13 (what I happen to have on my system)
Version 0.1.0
=============
10/24/03
* Changed config file format. It is NOT backwards-compatible. Sorry about that.
Now you can different commands for each drive. I also got rid of a couple of
tags, so the format is much simpler.
10/21/03
* Added man pages. See cdde(1) and cdde.xml(5)
Thanks Grant Sewell <g.sewell@thymox.uklinux.net>!
* Added command-line option to run commands for discs already in drive.
Thanks Pete Shinners <pete@shinners.org>!
* Fixed polling delay so it wouldn't sleep initially.
* Added a batch mode. Will check all drives once then exit immediately.
Use the '-b' command-line option.
Version 0.0.7
=============
1/05/03
* Increased default wait time while polling
* Added SVCD support
Thanks Piergiorgio Ghezzo <PJ@piggei.com>!
* Changed how disc_has_dir works. It doesn't use mount, so the program no longer
needs to be setuid root!
Thanks Charles Vaughn <charlesv@mfos.org>!
Version 0.0.6
=============
12/05/02
* Made it remove a drive from the list when it can't access a drive.
Thanks Martin Rasp <martin.rasp@nettwork.com>!
Version 0.0.5
=============
11/13/02
* I forgot to malloc() something in 0.0.4 causing it to crash whenever you
insert a data (including dvd/vcd) disc. I fixed this.
Thanks Martin Rasp <martin.rasp@nettwork.com>!
* lowered libxml dependency to 2.4.19 because I got reports of it working on
debian 3.0
Version 0.0.4
=============
11/12/02
* added command-line options (now can specify alternate config file)
* drops root privilidges before creating config file
(wasn't a big security issue before because you couldn't specify the config file's path)
11/11/02
* added ability to specify polling delay in config file
11/08/02
* added vcd and blank cdr support
Version 0.0.3
=============
11/06/02
* added tags (%mnt%, %dev%) to do actions based on the drive that had a disc inserted
11/05/02
* added support for multiple drives
* added support for multiple commands
* added SIGHUP handler to reread config file
* made it so it didnt run commands on discs in drive at startup
Version 0.0.2
=============
10/28/02
* fixed sigchld handler not getting installed
thanks Martin Bammer <martin@tuwien.ac.at>!
* now does more checking when trying to read config file, and if it doesn't exist, it creates
one for you.
* fixed nasty bug where i didnt allocate enough memory for the \0 at the end of the config filename
Version 0.0.1
=============
10/27/02
* Initial release
|