mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-18 03:45:54 +08:00
Fixed missing qoutes
Contributes to CURA-9365
This commit is contained in:
parent
5191d4f9da
commit
4d98ba3540
@ -255,13 +255,11 @@ app = UMBUNDLE(
|
|||||||
'CFBundleExecutable': '{{ name }}',
|
'CFBundleExecutable': '{{ name }}',
|
||||||
'CFBundleInfoDictionaryVersion': '6.0',
|
'CFBundleInfoDictionaryVersion': '6.0',
|
||||||
'CFBundlePackageType': 'APPL',
|
'CFBundlePackageType': 'APPL',
|
||||||
'CFBundleShortVersionString': '{{ short_version }}',
|
'CFBundleShortVersionString': {{ short_version }},
|
||||||
'CFBundleDocumentTypes': [{
|
'CFBundleDocumentTypes': [{
|
||||||
'CFBundleTypeRole': 'Viewer',
|
'CFBundleTypeRole': 'Viewer',
|
||||||
'CFBundleTypeExtensions': ['*'],
|
'CFBundleTypeExtensions': ['*'],
|
||||||
'CFBundleTypeName': 'Model Files',
|
'CFBundleTypeName': 'Model Files',
|
||||||
'LSItemContentTypes': ['com.example.myformat'],
|
|
||||||
'LSHandlerRank': 'Owner'
|
|
||||||
}]
|
}]
|
||||||
},
|
},
|
||||||
){% endif %}
|
){% endif %}
|
||||||
|
@ -203,8 +203,8 @@ class CuraConan(ConanFile):
|
|||||||
strip = False, # This should be possible on Linux and MacOS but, it can also cause issues on some distributions. Safest is to disable it for now
|
strip = False, # This should be possible on Linux and MacOS but, it can also cause issues on some distributions. Safest is to disable it for now
|
||||||
target_arch = "'x86_64'" if self.settings.os == "Macos" else "None", # FIXME: Make this dependent on the settings.arch_target
|
target_arch = "'x86_64'" if self.settings.os == "Macos" else "None", # FIXME: Make this dependent on the settings.arch_target
|
||||||
macos = self.settings.os == "Macos",
|
macos = self.settings.os == "Macos",
|
||||||
version = self.version,
|
version = f"'{self.version}'",
|
||||||
short_version = f"{cura_version.major}.{cura_version.minor}.{cura_version.patch}",
|
short_version = f"'{cura_version.major}.{cura_version.minor}.{cura_version.patch}'",
|
||||||
))
|
))
|
||||||
|
|
||||||
def source(self):
|
def source(self):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user