annotate src/main/macosx/Info.plist.in @ 4170:092c0bc69155 SDL-1.2

Fixed bug #618 Description From Tim Angus 2008-08-30 12:23:56 (-) [reply] As we all know SDL 1.2 doesn't handle dead keys well since one key press potentially equals two (or more) characters. For example, on many layouts, keying <backquote>,<space> results in <no character>,<backquote><space>. Since the unicode member of the SDL_keysym struct only has room for one character, only one can be returned. On Linux, the first character is returned. On Windows however, unless the exact number of characters generated by the keypress is 1, nothing is returned. The following patch addresses this inconsistency. Updated patch which includes a further fix to the handling of the numpad when numlock is on. This further fix is courtesy Amanieu d'Antras.
author Sam Lantinga <slouken@libsdl.org>
date Mon, 13 Apr 2009 08:42:09 +0000
parents ba9e0fcc2ae2
children
rev   line source
176
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
1 <?xml version="1.0" encoding="UTF-8"?>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
2 <!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
3 <plist version="0.9">
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
4 <dict>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
5 <key>CFBundleDevelopmentRegion</key>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
6 <string>English</string>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
7 <key>CFBundleExecutable</key>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
8 <string>@EXECUTABLE_NAME@</string>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
9 <key>CFBundleInfoDictionaryVersion</key>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
10 <string>6.0</string>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
11 <key>CFBundleName</key>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
12 <string>@PACKAGE@</string>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
13 <key>CFBundlePackageType</key>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
14 <string>APPL</string>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
15 <key>CFBundleShortVersionString</key>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
16 <string>@VERSION@</string>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
17 <key>CFBundleSignature</key>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
18 <string>????</string>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
19 <key>NSMainNibFile</key>
194
ba9e0fcc2ae2 Oops, back out that SDL_main -> SDLMain conversion
Sam Lantinga <slouken@libsdl.org>
parents: 191
diff changeset
20 <string>SDLMain.nib</string>
176
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
21 <key>NSPrincipalClass</key>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
22 <string>NSApplication</string>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
23 </dict>
c9bc7f33d56f *** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
diff changeset
24 </plist>