mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-10 07:50:19 +00:00
Raised LSMinimumSystemVersion to 11.0. Aligned CFBundleIdentifier with project naming (net.zoite.Zoitechat). Kept version placeholders (@VERSION@) in CFBundleGetInfoString, CFBundleShortVersionString, and CFBundleVersion so they map cleanly via template substitution. Confirmed icon/document declarations still point to zoitechat.icns and zct/hct extensions. Made Info.plist generation deterministic in bundling workflow by updating osx/makebundle.sh: Force script execution from its own directory for stable relative paths. Always render Info.plist from Info.plist.in before bundling. Use a single explicit version source: VERSION env var or fallback to meson.build project version. Use LC_ALL=C substitution and atomic temp-file move for stable output behavior.
47 lines
1.5 KiB
XML
47 lines
1.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>CFBundleDevelopmentRegion</key>
|
|
<string>English</string>
|
|
<key>CFBundleExecutable</key>
|
|
<string>ZoiteChat</string>
|
|
<key>CFBundleGetInfoString</key>
|
|
<string>@VERSION@</string>
|
|
<key>CFBundleIconFile</key>
|
|
<string>zoitechat.icns</string>
|
|
<key>CFBundleIdentifier</key>
|
|
<string>net.zoite.Zoitechat</string>
|
|
<key>CFBundleInfoDictionaryVersion</key>
|
|
<string>6.0</string>
|
|
<key>CFBundlePackageType</key>
|
|
<string>APPL</string>
|
|
<key>CFBundleShortVersionString</key>
|
|
<string>@VERSION@</string>
|
|
<key>CFBundleSignature</key>
|
|
<string>????</string>
|
|
<key>CFBundleVersion</key>
|
|
<string>@VERSION@</string>
|
|
<key>CFBundleDocumentTypes</key>
|
|
<array>
|
|
<dict>
|
|
<key>CFBundleTypeExtensions</key>
|
|
<array>
|
|
<string>zct</string>
|
|
<string>hct</string>
|
|
</array>
|
|
<key>CFBundleTypeIconFile</key>
|
|
<string>zoitechat.icns</string>
|
|
<key>CFBundleTypeName</key>
|
|
<string>ZoiteChat Theme</string>
|
|
<key>CFBundleTypeRole</key>
|
|
<string>Viewer</string>
|
|
</dict>
|
|
</array>
|
|
<key>NSHumanReadableCopyright</key>
|
|
<string></string>
|
|
<key>LSMinimumSystemVersion</key>
|
|
<string>11.0</string>
|
|
</dict>
|
|
</plist>
|