blob: 7f38d7fa23283f973ca7d258e017f9f83715ff68 (
plain)
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
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeExtensions</key>
<array>
<string>pd</string>
<string>pat</string>
<string>mxt</string>
<string>mxb</string>
<string>help</string>
</array>
<key>CFBundleTypeIconFile</key>
<string>pd-file.icns</string>
<key>CFBundleTypeName</key>
<string>Pure Data Patch</string>
<key>CFBundleTypeRole</key>
<string>Editor</string>
</dict>
</array>
<key>CFBundleExecutable</key>
<string>PD_APP_NAME</string>
<key>CFBundleIconFile</key>
<string>pd.icns</string>
<key>CFBundleIdentifier</key>
<string>org.puredata.pd.wish</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>PD_APP_NAME</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>CFBUNDLESHORTVERSIONSTRING</string>
<key>CFBundleSignature</key>
<string>PdPd</string>
<key>CFBundleVersion</key>
<string>CFBUNDLEVERSION</string>
<key>LSBackgroundOnly</key>
<false/>
<key>LSEnvironment</key>
<dict>
<key>EXAMPLE_ENVIRONMENT_VARIABLE</key>
<string>this is just a test</string>
</dict>
<key>LSUIElement</key>
<integer>0</integer>
<key>LSUIPresentationMode</key>
<integer>0</integer>
<key>UTExportedTypeDeclarations</key>
<array>
<dict>
<key>UTTypeConformsTo</key>
<string>public.plain-text</string>
<key>UTTypeIdentifier</key>
<string>org.puredata.pd-patch</string>
<key>UTTypeTagSpecification</key>
<dict>
<key>public.filename-extension</key>
<array>
<string>pd</string>
</array>
</dict>
</dict>
<dict>
<key>UTTypeConformsTo</key>
<string>public.plain-text</string>
<key>UTTypeIdentifier</key>
<string>org.puredata.max-patch</string>
<key>UTTypeTagSpecification</key>
<dict>
<key>public.filename-extension</key>
<array>
<string>pat</string>
</array>
</dict>
</dict>
</array>
</dict>
</plist>
|