chiark / gitweb /
Updated version number to 13.01
[cura.git] / setup.py
index 4a4830107f936092eef6ca64f811ee5e5c039098..b63773397552210755fd646d7dacbddf27168baa 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -6,31 +6,31 @@ if sys.platform.startswith('darwin'):
     from setuptools import setup
 
     APP = ['Cura/cura.py']
-    DATA_FILES = ['Cura/images', 'Cura/LICENSE', 'Cura/stl.ico']
+    DATA_FILES = ['Cura/LICENSE', 'Cura/resources/images', 'Cura/resources/meshes', 'Cura/resources/example', 'Cura/resources/firmware']
     PLIST = {
         u'CFBundleName': u'Cura',
-        u'CFBundleShortVersionString': u'12.11',
-        u'CFBundleVersion': u'12.11',
+        u'CFBundleShortVersionString': u'13.01',
+        u'CFBundleVersion': u'13.01',
         u'CFBundleIdentifier': u'com.ultimaker.Cura',
-        u'LSMinimumSystemVersion': u'10.6',
+        u'LSMinimumSystemVersion': u'10.7',
         u'LSApplicationCategoryType': u'public.app-category.graphics-design',
         u'CFBundleDocumentTypes': [
             {
                 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': [
@@ -51,7 +51,7 @@ if sys.platform.startswith('darwin'):
     }
     OPTIONS = {
         'argv_emulation': True,
-        'iconfile': 'Cura/Cura.icns',
+        'iconfile': 'Cura/resources/Cura.icns',
         'includes': ['objc', 'Foundation'],
         'resources': DATA_FILES,
         'optimize': '2',