Hi dkork

I've included ca, tape, 7" vinyl, 10" vinyl and 12" vinyl in updated versions of CrispPlay (1.45) and CrispPlus (2.04) (--> [url]http://ocd.juventas.net[/url]).

To edit a dax-file, use DAXEDIT.EXE, which you should find in your OCD program folder (default = c:\program files\orangecd).

Adding another format requires the following three lines (under the 'Album page' tab):

Code:
case "<format name>":
useSplitList = true;
break;
Example - adding the 'tape' format, would look like this:

Code:
case "tape":
useSplitList = true;
break;
Now search for 'lp box set' (<CTRL>+ <F>) under the 'Album page' tab in DaxEdit. Place the cursor after 'break;', hit <Enter> and then write your three lines of code.

Voila!