Files
vibe3_physics/release/Info.plist
Sergio Valor ec1700b439 chore: Sincronizar versión mínima de macOS a 12.0 (Monterey)
**Problema:** Inconsistencia entre Makefile y Info.plist
- Info.plist declaraba 10.15 (Catalina)
- Makefile compilaba para 11.0 (Big Sur) en Apple Silicon
- Makefile compilaba para 10.15 en Intel

**Solución:** Unificar todo a macOS 12.0 (Monterey, 2021)
- Info.plist: LSMinimumSystemVersion 10.15 → 12.0
- Makefile arm64: -target arm64-apple-macos11 → macos12
- Makefile x86_64: -target x86_64-apple-macos10.15 → macos12

**Resultado:**
 Ambos archivos sincronizados (declaran 12.0)
 Elimina soporte para macOS 10.15 y 11.0
 Optimizaciones del compilador para Monterey+
 Warning cambiará a "building for macOS-12.0"

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-19 09:07:16 +02:00

43 lines
1.2 KiB
Plaintext

<?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>es</string>
<key>CFBundleDisplayName</key>
<string>ViBe3 Physics</string>
<key>CFBundleExecutable</key>
<string>vibe3_physics</string>
<key>CFBundleIconFile</key>
<string>icon</string>
<key>CFBundleIconName</key>
<string>icon</string>
<key>CFBundleIdentifier</key>
<string>net.jailgames.vibe3_physics</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>vibe3_physics</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>CSResourcesFileMapped</key>
<true/>
<key>LSMinimumSystemVersion</key>
<string>12.0</string>
<key>NSHighResolutionCapable</key>
<true/>
<key>NSHumanReadableCopyright</key>
<string>Copyright 2025 JailDesigner</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>SUPublicDSAKeyFile</key>
<string>dsa_pub.pem</string>
</dict>
</plist>