1// PikoPixel Info property list for GNUstep
2{
3    ApplicationDescription = "Pixel-art image editor";
4    ApplicationName = PikoPixel;
5    ApplicationRelease = "1.0 BETA10";
6    Authors = ( "Developed by Josh Freeman ",
7                "Twilight Edge Software ",
8                "http://twilightedge.com ",
9                "pikopixel@twilightedge.com ",
10                " ",
11                "Contributors: ",
12                "Fred Kiefer, Riccardo Mottola ",
13                " ",
14                "Thank you: ",
15                "• GNUstep framework developers ",
16                "• Gürkan Myczko, Yavor Doganov (Debian package) ",
17                "• David Chisnall, Edwin Ancaer, Steve Wills (FreeBSD port) ",
18                "• Bernard Cafarelli (Gentoo package) ",
19                "• Carsten Teibes (AUR package) ",
20                "• Kira Patton (Void Linux package) ");
21    Copyright = "Copyright (C) 2013-2018,2020 Josh Freeman";
22    CopyrightDescription = "Released under the GNU Affero General Public License v3";
23    NSExecutable = "PikoPixel";
24    NSMainNibFile = "MainMenu.nib";
25    NSPrincipalClass = PPApplication;
26    NSRole = Application;
27    FreeDesktopCategories = ("Graphics", "2DGraphics", "RasterGraphics", "X-GNUstep");
28    NSTypes =
29    (
30    	{
31    	    NSHumanReadableName = "PikoPixel Document";
32    	    NSName = "PikoPixel Document";
33    	    NSUnixExtensions = ("piko", "piko-gif", "piko-jpg", "piko-jpeg", "piko-png",
34    	        	        	"piko-tif", "piko-tiff", "piko-bmp");
35    	    NSRole = Editor;
36    	    NSDocumentClass = PPDocument;
37            NSMIMETypes = ("image/piko", "image/x-piko");
38    	},
39    	{
40    	    NSHumanReadableName = "PikoPixel Background Patterns Archive";
41    	    NSName = "PikoPixel Background Patterns Archive";
42    	    NSUnixExtensions = ("pikopatr");
43    	    NSRole = None;
44    	},
45    	{
46    	    NSHumanReadableName = "PikoPixel Grid Patterns Archive";
47    	    NSName = "PikoPixel Grid Patterns Archive";
48    	    NSUnixExtensions = ("pikogrid");
49    	    NSRole = None;
50    	},
51    	{
52    	    NSHumanReadableName = "GIF Graphic";
53    	    NSName = "GIF Graphic";
54    	    NSUnixExtensions = ("gif");
55    	    NSRole = Editor;
56    	    NSDocumentClass = PPDocument;
57            NSMIMETypes = ("image/gif");
58    	},
59    	{
60    	    NSHumanReadableName = "JPEG Graphic";
61    	    NSName = "JPEG Graphic";
62    	    NSUnixExtensions = ("jpg", "jpeg");
63    	    NSRole = Editor;
64    	    NSDocumentClass = PPDocument;
65            NSMIMETypes = ("image/jpeg");
66    	},
67    	{
68    	    NSHumanReadableName = "PNG Graphic";
69    	    NSName = "PNG Graphic";
70    	    NSUnixExtensions = ("png");
71    	    NSRole = Editor;
72    	    NSDocumentClass = PPDocument;
73            NSMIMETypes = ("image/png", "image/x-png");
74    	},
75    	{
76    	    NSHumanReadableName = "TIFF Graphic";
77    	    NSName = "TIFF Graphic";
78    	    NSUnixExtensions = ("tif", "tiff");
79    	    NSRole = Editor;
80    	    NSDocumentClass = PPDocument;
81            NSMIMETypes = ("image/tiff");
82    	},
83    	{
84    	    NSHumanReadableName = "BMP Graphic";
85    	    NSName = "BMP Graphic";
86    	    NSUnixExtensions = ("bmp");
87    	    NSRole = Editor;
88    	    NSDocumentClass = PPDocument;
89            NSMIMETypes = ("image/bmp");
90    	}
91    );
92}
93