在您的 Distribution.xml 代码中,添加此函数:
function dontDowngrade(prefix) {
if (typeof(my.result) != 'undefined') my.result.message = system.localizedString('ERROR_2');
var bundle = system.files.bundleAtPath(prefix + '/Applications/YOURAPPNAMEHERE');
if (!bundle) {
return true;
}
var bundleKeyValue = bundle['CFBundleShortVersionString'];
if (!bundleKeyValue) {
return true;
}
if (system.compareVersions(bundleKeyValue, '$packageVersion') > 0) {
return false;
}
return true;
}
错误字符串 ERROR_2 在 Localizable.strings 中:
<?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>ERROR_0</key>
<string>This update requires Mac OS X version %@ or later.</string>
<key>ERROR_1</key>
<string>This software is not supported on your system.</string>
<key>ERROR_2</key>
<string>A newer version of this software is already installed. </string>
<key>SU_TITLE</key>
<string>YOURAPPNAMEHERE</string>
</dict>
</plist>
我将所有这些都放在一个 bash 脚本中,并使用一个 here 文档将文本替换为 shell 变量。例如,$packageVersion 是我的应用程序的版本,例如“2.0.0.0”。字符串 YOURAPPNAMEHERE 也可以替换为 shell 变量。
cat <<EOF >"Distribution.xml"
<?xml version="1.0" encoding="utf-8"?>
...other text...
EOF
通过检查 iTunes 安装程序,您可以学到很多东西。下载安装程序,挂载它,将 .pkg 文件拖出并展开:
$ /usr/sbin/pkgutil --expand Install\ iTunes.pkg iTunesExpanded
然后你可以看到代码并四处寻找