diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-07-21 10:25:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-21 10:25:26 +0200 |
commit | a9e4eac7b965450234c7a4fb2de1346a23ca67f2 (patch) | |
tree | 4eee1f98891ff019462c5fd78f124e1c84a650ee /misc/dist/macos_template.app/Contents/Info.plist | |
parent | e63ddd9e4f94d6b9a0592bdfd5e32c334c39390f (diff) | |
parent | 8823eae328547991def3b13ee2919291d29a278b (diff) |
Merge pull request #63225 from bruvzg/mac_rename
Diffstat (limited to 'misc/dist/macos_template.app/Contents/Info.plist')
-rw-r--r-- | misc/dist/macos_template.app/Contents/Info.plist | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/misc/dist/macos_template.app/Contents/Info.plist b/misc/dist/macos_template.app/Contents/Info.plist new file mode 100644 index 0000000000..542146cdb8 --- /dev/null +++ b/misc/dist/macos_template.app/Contents/Info.plist @@ -0,0 +1,48 @@ +<?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>English</string> + <key>CFBundleExecutable</key> + <string>$binary</string> + <key>CFBundleName</key> + <string>$name</string> + <key>CFBundleDisplayName</key> + <string>$name</string> + <key>CFBundleIconFile</key> + <string>icon.icns</string> + <key>CFBundleIdentifier</key> + <string>$bundle_identifier</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundlePackageType</key> + <string>APPL</string> + <key>CFBundleShortVersionString</key> + <string>$short_version</string> + <key>CFBundleSignature</key> + <string>$signature</string> + <key>CFBundleVersion</key> + <string>$version</string> +$usage_descriptions + <key>NSHumanReadableCopyright</key> + <string>$copyright</string> + <key>CFBundleSupportedPlatforms</key> + <array> + <string>MacOSX</string> + </array> + <key>NSPrincipalClass</key> + <string>NSApplication</string> + <key>LSApplicationCategoryType</key> + <string>public.app-category.$app_category</string> + <key>LSMinimumSystemVersion</key> + <string>10.12</string> + <key>LSMinimumSystemVersionByArchitecture</key> + <dict> + <key>x86_64</key> + <string>10.12</string> + </dict> + <key>NSHighResolutionCapable</key> +$highres +</dict> +</plist> |