Make app an owner of file formats.
Since Cura works with file formats designed for exporting it makes sense to be an Owner of such files, since Cura prints them.
This commit is contained in:
parent
009364ad6a
commit
8ee80a5e34
1 changed files with 3 additions and 3 deletions
6
setup.py
6
setup.py
|
|
@ -18,19 +18,19 @@ if sys.platform.startswith('darwin'):
|
|||
{
|
||||
u'CFBundleTypeRole': u'Viewer',
|
||||
u'LSItemContentTypes': [u'com.pleasantsoftware.uti.stl'],
|
||||
u'LSHandlerRank': u'Alternate',
|
||||
u'LSHandlerRank': u'Owner',
|
||||
},
|
||||
{
|
||||
u'CFBundleTypeRole': u'Viewer',
|
||||
u'LSItemContentTypes': [u'org.khronos.collada.digital-asset-exchange'],
|
||||
u'LSHandlerRank': u'Alternate'
|
||||
u'LSHandlerRank': u'Owner'
|
||||
},
|
||||
{
|
||||
u'CFBundleTypeName': u'Wavefront 3D Object',
|
||||
u'CFBundleTypeExtensions': [u'obj'],
|
||||
u'CFBundleTypeMIMETypes': [u'application/obj-3d'],
|
||||
u'CFBundleTypeRole': u'Viewer',
|
||||
u'LSHandlerRank': u'Alternate'
|
||||
u'LSHandlerRank': u'Owner'
|
||||
}
|
||||
],
|
||||
u'UTImportedTypeDeclarations': [
|
||||
|
|
|
|||
Loading…
Reference in a new issue