- Update input handling to retain SDL_TEXTINPUT after Tab insertion for better platform consistency. - Allow multiple app instances in macOS by modifying `Info.plist`. - Bump version to 1.3.8-alpha.
31 lines
1019 B
XML
31 lines
1019 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>CFBundleDevelopmentRegion</key>
|
|
<string>en</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>kge</string>
|
|
<key>CFBundleIconFile</key>
|
|
<string>@MACOSX_BUNDLE_ICON_FILE@</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>@KGE_BUNDLE_ID@</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundleName</key>
|
|
<string>kge</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>@KTE_VERSION@</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>@KTE_VERSION@</string>
|
|
<key>LSMinimumSystemVersion</key>
|
|
<string>10.13</string>
|
|
<key>NSHighResolutionCapable</key>
|
|
<true/>
|
|
<!-- Allow running multiple instances of the app -->
|
|
<key>LSMultipleInstancesProhibited</key>
|
|
<false/>
|
|
</dict>
|
|
</plist> |