chiark / gitweb /
Separate Mangrove to have its own first print material
authornickthetait <tait@alephobjects.com>
Tue, 24 Nov 2015 18:39:48 +0000 (11:39 -0700)
committernickthetait <tait@alephobjects.com>
Mon, 11 Jan 2016 15:10:18 +0000 (08:10 -0700)
resources/quickprint/lulzbot_TAZ_6_Single_Tilapia/ABS_VP/material.ini
resources/quickprint/lulzbot_TAZ_6_Single_Tilapia/PLA_eSUN/material.ini
scripts/recreate_lulzbot_profiles.py

index e605767d27105d69b7dde8a91dc860d38dee5697..649aec58a9e5adf0137b41dbea38c94b9b427f2b 100644 (file)
@@ -1,5 +1,5 @@
 [info]
 name = ABS (Village Plastics)
-material_types = Intermediate|First Run
-order = 0
+material_types = Intermediate
+order = 10
 url = lulzbot.com/store/filament/abs?pk_campaign=software-cura
index 1f4e59e1ca17b9b7b20d18d1837fd74722c5b67f..df2ae824d52b02ffda3f5a917069056d384963f0 100644 (file)
@@ -1,5 +1,5 @@
 [info]
 name = PLA (eSUN)
-material_types = Beginner
-order = 1
+material_types = Beginner|First Run
+order = 0
 url = lulzbot.com/store/filament/pla-esun?pk_campaign=software-cura
index 7d7603b720be0249c0e8049299db5b1d4f755b4a..3afd203d6d6a9a26308a0b5ef9851494b779ef76 100644 (file)
@@ -321,8 +321,10 @@ def create_machine_type(machine_type, path, dir):
                 order = material_order[material]
                 if material_types.has_key(material):
                     types = material_types[material]
-                    if (material == "HIPS_eSUN" and machine_type.startswith("lulzbot_mini")) or \
-                       (material == "ABS_VP" and machine_type.startswith("lulzbot_TAZ")):
+                    if ((material == "HIPS_eSUN" and machine_type.startswith("lulzbot_mini")) or \
+                        (material == "ABS_VP" and machine_type.startswith("lulzbot_TAZ_4")) or \
+                        (material == "ABS_VP" and machine_type.startswith("lulzbot_TAZ_5")) or \
+                        (material == "PLA_eSUN" and machine_type.startswith("lulzbot_TAZ_6"))):
                         types = types + "|First Run"
                         order = 0
                     f.write("material_types = %s\n" % types)