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 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
{
ApplicationDescription = "GUI for various compressed file formats";
ApplicationName = "Zipper";
ApplicationRelease = "1.5";
ApplicationURL = "http://gap.nongnu.org/zipper/";
NSIcon = "zipper.tiff";
NSMainNibFile = MainMenu.gorm;
NSPrincipalClass = NSApplication;
Authors = ("The GAP Team", "Dirk Olmes <dirk@xanthippe.ping.de>");
Copyright = "Copyright (C) 2008-2013";
CopyrightDescription = "Released under GPLv2 or later";
NSTypes = (
{
NSName = "Ace";
NSHumanReadableName = "Ace Archive";
NSUnixExtensions = ( "ace", "ACE" );
NSIcon = "FileIcon.tiff";
NSDocumentClass = "ZipperDocument";
NSRole = "Editor";
},
{
NSName = "Arj";
NSHumanReadableName = "Arj Archive";
NSUnixExtensions = ( "arj", "ARJ" );
NSIcon = "FileIcon.tiff";
NSDocumentClass = "ZipperDocument";
NSRole = "Editor";
},
{
NSName = "Zoo";
NSHumanReadableName = "Zoo Archive";
NSUnixExtensions = ( "zoo", "ZOO" );
NSIcon = "FileIcon.tiff";
NSDocumentClass = "ZipperDocument";
NSRole = "Editor";
},
{
NSName = "Zip";
NSHumanReadableName = "Zip Archive";
NSUnixExtensions = ( "zip", "ZIP", "jar", "JAR", "ear", "EAR" );
NSIcon = "FileIcon.tiff";
NSDocumentClass = "ZipperDocument";
NSRole = "Editor";
},
{
NSName = "7Zip";
NSHumanReadableName = "7Zip Archive";
NSUnixExtensions = ( "7z", "7Z", "7za", "7ZA" );
NSIcon = "FileIcon.tiff";
NSDocumentClass = "ZipperDocument";
NSRole = "Editor";
},
{
NSName = "Tar";
NSHumanReadableName = "Tar Archive";
NSUnixExtensions = ( "tar", "TAR" );
NSIcon = "FileIcon.tiff";
NSDocumentClass = "ZipperDocument";
NSRole = "Editor";
},
{
NSName = "TarGz";
NSHumanReadableName = "Compressed Tar Archive";
NSUnixExtensions = ( "gz", "GZ", "tgz", "TGZ" );
NSIcon = "FileIcon.tiff";
NSDocumentClass = "ZipperDocument";
NSRole = "Editor";
},
{
NSName = "TarBz2";
NSHumanReadableName = "Compressed Tar Archive";
NSUnixExtensions = ( "bz2", "BZ2", "tbz2", "TBZ2" );
NSIcon = "FileIcon.tiff";
NSDocumentClass = "ZipperDocument";
NSRole = "Editor";
},
{
NSName = "Rar";
NSHumanReadableName = "Rar Archive";
NSUnixExtensions = ( "rar", "RAR" );
NSIcon = "FileIcon.tiff";
NSDocumentClass = "ZipperDocument";
NSRole = "Editor";
},
{
NSName = "Lha";
NSHumanReadableName = "Lha Archive";
NSUnixExtensions = ( "lha", "LHA" );
NSIcon = "FileIcon.tiff";
NSDocumentClass = "ZipperDocument";
NSRole = "Editor";
},
{
NSName = "Lzx";
NSHumanReadableName = "Lzx Archive";
NSUnixExtensions = ( "lzx", "LZX" );
NSIcon = "FileIcon.tiff";
NSDocumentClass = "ZipperDocument";
NSRole = "Editor";
}
);
NSServices = (
{
NSPortName = "Zipper";
NSMessage = "createZooArchive";
NSSendTypes = (NSFilenamesPboardType);
NSMenuItem = {
default = "Zipper/Create zoo archive";
};
},
{
NSPortName = "Zipper";
NSMessage = "create7zArchive";
NSSendTypes = (NSFilenamesPboardType);
NSMenuItem = {
default = "Zipper/Create 7z archive";
};
},
{
NSPortName = "Zipper";
NSMessage = "createLhaArchive";
NSSendTypes = (NSFilenamesPboardType);
NSMenuItem = {
default = "Zipper/Create lha archive";
};
},
{
NSPortName = "Zipper";
NSMessage = "createZipArchive";
NSSendTypes = (NSFilenamesPboardType);
NSMenuItem = {
default = "Zipper/Create zip archive";
};
},
{
NSPortName = "Zipper";
NSMessage = "createTarArchive";
NSSendTypes = (NSFilenamesPboardType);
NSMenuItem = {
default = "Zipper/Create tar archive";
};
},
{
NSPortName = "Zipper";
NSMessage = "createZippedTarArchive";
NSSendTypes = (NSFilenamesPboardType);
NSMenuItem = {
default = "Zipper/Create tar.gz archive";
};
},
{
NSPortName = "Zipper";
NSMessage = "createBZippedTarArchive";
NSSendTypes = (NSFilenamesPboardType);
NSMenuItem = {
default = "Zipper/Create tar.bz2 archive";
};
},
{
NSPortName = "Zipper";
NSMessage = "createXzTarArchive";
NSSendTypes = (NSFilenamesPboardType);
NSMenuItem = {
default = "Zipper/Create tar.xz archive";
};
}
);
}
|