From ca34fe2d2d7206c9dec550b78d39521d25d97263 Mon Sep 17 00:00:00 2001 From: Joey de l'Arago Date: Wed, 11 Jan 2023 16:47:59 +0100 Subject: [PATCH] Change display now to include enterprise for MacOS Add CFBundleVersionString, this might fix the app not showing up in search. CURA-6867 --- UltiMaker-Cura.spec.jinja | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/UltiMaker-Cura.spec.jinja b/UltiMaker-Cura.spec.jinja index ba5b6e11c2..23ac916c42 100644 --- a/UltiMaker-Cura.spec.jinja +++ b/UltiMaker-Cura.spec.jinja @@ -253,7 +253,7 @@ class UMBUNDLE(BUNDLE): app = UMBUNDLE( coll, - name='{{ name }}.app', + name='{{ display_name }}.app'.replace(" ", "-"), icon={{ icon }}, bundle_identifier={{ osx_bundle_identifier }}, version={{ version }}, @@ -264,6 +264,7 @@ app = UMBUNDLE( 'CFBundleExecutable': '{{ name }}', 'CFBundleInfoDictionaryVersion': '6.0', 'CFBundlePackageType': 'APPL', + 'CFBundleVersionString': {{ version }}, 'CFBundleShortVersionString': {{ short_version }}, 'CFBundleDocumentTypes': [{ 'CFBundleTypeRole': 'Viewer',