1{
2    ApplicationDescription = "Image Editor";
3    ApplicationIcon = Pixen;
4    ApplicationName = Pixen;
5    ApplicationRelease = "0.1";
6    ApplicationURL = "http://www.opensword.org";
7    Authors = ("Andy Matushak");
8    Copyright = "";
9    CopyrightDescription = "Released under the MIT Licence.";
10    FullVersionID = "0.1";
11    NSTypes = (
12    {
13       NSName = "jpg";
14       NSHumanReadableName = "JPEG Image";
15       NSUnixExtensions = (jpg,jpeg,JPG,JPEG);
16       NSDOSExtensions = (jpg);
17       NSMIMETypes = ("image/jpeg");
18       NSRole = Editor;
19       NSDocumentClass = PXDocument;
20    },
21    {
22       NSName = "png";
23       NSHumanReadableName = "PNG Image";
24       NSUnixExtensions = (png,PNG);
25       NSDOSExtensions = (png);
26       NSMIMETypes = ("image/png");
27       NSRole = Editor;
28       NSIcon = FileIcon_png.tiff;
29       NSDocumentClass = PXDocument;
30    },
31    {
32       NSName = "tiff";
33       NSHumanReadableName = "TIFF Image";
34       NSUnixExtensions = (tiff,TIFF,tif,TIF);
35       NSDOSExtensions = (tiff);
36       NSMIMETypes = ("image/tiff");
37       NSRole = Editor;
38       NSIcon = FileIcon_tiff.tiff;
39       NSDocumentClass = PXDocument;
40    },
41    {
42       NSName = "pnm";
43       NSHumanReadableName = "PNM Image";
44       NSUnixExtensions = (pnm,PNM);
45       NSDOSExtensions = (pnm);
46       NSMIMETypes = ("image/pnm");
47       NSRole = Viewer;
48       NSIcon = FileIcon_pnm.tiff;
49       NSDocumentClass = PXDocument;
50    }
51 );
52}
53