all repos — mgba @ master

mGBA Game Boy Advance Emulator

res/info.plist.in (view raw)

 1<?xml version="1.0" encoding="UTF-8"?>
 2<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
 3<plist version="1.0">
 4<dict>
 5	<key>CFBundleDevelopmentRegion</key>
 6	<string>English</string>
 7	<key>CFBundleExecutable</key>
 8	<string>${MACOSX_BUNDLE_EXECUTABLE_NAME}</string>
 9	<key>CFBundleGetInfoString</key>
10	<string>${MACOSX_BUNDLE_INFO_STRING}</string>
11	<key>CFBundleIconFile</key>
12	<string>${MACOSX_BUNDLE_ICON_FILE}</string>
13	<key>CFBundleIdentifier</key>
14	<string>${MACOSX_BUNDLE_GUI_IDENTIFIER}</string>
15	<key>CFBundleInfoDictionaryVersion</key>
16	<string>6.0</string>
17	<key>CFBundleName</key>
18	<string>${MACOSX_BUNDLE_BUNDLE_NAME}</string>
19	<key>CFBundlePackageType</key>
20	<string>APPL</string>
21	<key>CFBundleSignature</key>
22	<string>????</string>
23	<key>CFBundleVersion</key>
24	<string>${MACOSX_BUNDLE_BUNDLE_VERSION}</string>
25	<key>CFBundleShortVersionString</key>
26	<string>${MACOSX_BUNDLE_BUNDLE_VERSION}</string>
27	<key>CSResourcesFileMapped</key>
28	<true/>
29	<key>NSHighResolutionCapable</key>
30	<true/>
31	<key>NSHumanReadableCopyright</key>
32	<string>${MACOSX_BUNDLE_COPYRIGHT}</string>
33	<key>NSSupportsAutomaticGraphicsSwitching</key>
34	<true/>
35	<key>CFBundleDocumentTypes</key>
36	<array>
37		<dict>
38			<key>CFBundleTypeExtensions</key>
39			<array>
40				<string>gba</string>
41			</array>
42			<key>CFBundleTypeName</key>
43			<string>Game Boy Advance ROM Image</string>
44			<key>CFBundleTypeRole</key>
45			<string>Viewer</string>
46		</dict>
47		<dict>
48			<key>CFBundleTypeExtensions</key>
49			<array>
50				<string>gb</string>
51				<string>gbc</string>
52			</array>
53			<key>CFBundleTypeName</key>
54			<string>Game Boy ROM Image</string>
55			<key>CFBundleTypeRole</key>
56			<string>Viewer</string>
57		</dict>
58	</array>
59</dict>
60</plist>