-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathInfo-app.plist
37 lines (37 loc) · 978 Bytes
/
Info-app.plist
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
{
NSPrincipalClass = NSApplication;
CFBundleIdentifier = "com.captemulation.encrypted-text-editor";
"UTExportedTypeDeclarations" = (
{
UTTypeConformsTo = (
"public.data",
);
UTTypeIdentifier = "com.captemulation.aes";
UTTypeIconFile = "icon.icns";
UTTypeDescription = "AES encrypted text file";
"UTTypeTagSpecification" = {
"public.filename-extension" = (
aes,
);
};
},
);
CFBundleIconFile = "icon.icns";
"Bundle creator OS Type code" = "????";
"CFBundleInfoDictionaryVersion" = "6.0";
"LSApplicationCategoryType" = "public.app-category.utilities";
CFBundleExecutable = "Encrypted Text Editor";
CFBundlePackageType = APPL;
"CFBundleGetInfoString" = "Created by CaptEmulation";
"CFBundleDocumentTypes" = (
{
CFBundleTypeName = "AES encrypted text file";
LSItemContentTypes = (
"com.captemulation.aes",
);
CFBundleTypeRole = Editor;
CFBundleTypeIconFile = "icon.icns";
LSHandlerRank = Owner;
},
);
}