mirror of
https://github.com/mehah/otclient
synced 2026-08-15 16:29:06 -04:00
New Features: - Native macOS app with Cocoa windowing, OpenGL view, improved input, clipboard and cursor handling. - Platform-aware keyboard and shortcut behavior with clearer primary/meta/control semantics and normalized key combos. Bug Fixes: - Expanded detection for "connection refused" network errors. Chores: - macOS build/bundle and packaging improvements; new dependency overlay added; CI now runs macOS build when relevant. Tests: - AddressSanitizer support added for test builds.
32 lines
1.2 KiB
XML
32 lines
1.2 KiB
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>CFBundleDisplayName</key>
|
|
<string>@MACOSX_BUNDLE_DISPLAY_NAME@</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>@MACOSX_BUNDLE_EXECUTABLE_NAME@</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>@MACOSX_BUNDLE_IDENTIFIER@</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundleName</key>
|
|
<string>@MACOSX_BUNDLE_BUNDLE_NAME@</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>@MACOSX_BUNDLE_SHORT_VERSION_STRING@</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>@MACOSX_BUNDLE_VERSION@</string>
|
|
<key>CFBundleIconFile</key>
|
|
<string>@MACOSX_BUNDLE_ICON_FILE@</string>
|
|
<key>LSMinimumSystemVersion</key>
|
|
<string>@MACOSX_BUNDLE_MINIMUM_SYSTEM_VERSION@</string>
|
|
<key>NSHumanReadableCopyright</key>
|
|
<string>@MACOSX_BUNDLE_COPYRIGHT@</string>
|
|
<key>NSPrincipalClass</key>
|
|
<string>NSApplication</string>
|
|
</dict>
|
|
</plist>
|