fix icns generation and bundle display name.
while the icns *can* be generated on linux it is much preferable to generate it on macos it is checked in as a convience this commit fixes the appbundle not displaying the icon corrected and corrects the app being displayed as "python" in the top bar when the bundle is run Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
This commit is contained in:
@@ -462,6 +462,8 @@ def genMacOSPlist():
|
||||
f"<string>{macosBundleIdent}</string>\n"
|
||||
"<key>CFBundleName</key>\n"
|
||||
f"<string>{macosBundleName}</string>\n"
|
||||
"<key>CFBundleDisplayName</key>\n"
|
||||
f"<string>{macosBundleName}</string>\n"
|
||||
"<key>CFBundleInfoDictionaryVersion</key>\n"
|
||||
"<string>6.0</string>\n"
|
||||
"<key>CFBundleShortVersionString</key>\n"
|
||||
@@ -504,6 +506,8 @@ def genMacOSPlist():
|
||||
"</plist>\n"
|
||||
)
|
||||
|
||||
print(f"Writing Info.plist to {outDir}/Info.plist")
|
||||
|
||||
writeFile(f"{outDir}/Info.plist", plistXML)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user