Files
meatshell/assets/Info.plist
2026-06-19 03:09:53 +08:00

45 lines
1.3 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>
<!-- The executable inside Contents/MacOS/ -->
<key>CFBundleExecutable</key>
<string>meatshell</string>
<!-- Points to Contents/Resources/meatshell.icns (no extension) -->
<key>CFBundleIconFile</key>
<string>meatshell</string>
<key>CFBundleIdentifier</key>
<string>dev.meatshell.meatshell</string>
<key>CFBundleName</key>
<string>meatshell</string>
<key>CFBundleDisplayName</key>
<string>meatshell</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<!-- __VERSION__ is substituted by sed in CI (e.g. "0.2.5") -->
<key>CFBundleShortVersionString</key>
<string>__VERSION__</string>
<key>CFBundleVersion</key>
<string>__VERSION__</string>
<!-- Opt-in to high-DPI Retina rendering -->
<key>NSHighResolutionCapable</key>
<true/>
<!-- macOS 11 Big Sur minimum (matches Apple Silicon support) -->
<key>LSMinimumSystemVersion</key>
<string>11.0</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2024 meatshell contributors. MIT OR Apache-2.0.</string>
</dict>
</plist>