From 68d056f6579383c1f5e9e807ef6ede198c1a4949 Mon Sep 17 00:00:00 2001 From: Youness Alaoui Date: Fri, 26 Jun 2015 14:04:04 -0400 Subject: [PATCH] Do not change mini gantry settings in version upgrade This is because the print-one-at-a-time feature is incomplete and has been temporarily disabled --- Cura/util/profile.py | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/Cura/util/profile.py b/Cura/util/profile.py index 733a9537..8cb87ba5 100644 --- a/Cura/util/profile.py +++ b/Cura/util/profile.py @@ -1359,22 +1359,4 @@ def getAlterationFileContents(filename, extruderCount = 1): return unicode(prefix + re.sub("(.)\{([^\}]*)\}", replaceTagMatch, alterationContents).rstrip() + '\n' + postfix).strip().encode('utf-8') + '\n' def performVersionUpgrade(): - for n in xrange(0, getMachineCount()): - # This is a hack around an issue where the machine type in the wizard - # changed and causes some people to have it set to lulzbot_TAZ and some - # people have it set to lulzbot_TAZ_4. - if getMachineSetting('machine_type', n) == 'lulzbot_TAZ': - putMachineSetting('machine_type', 'lulzbot_TAZ_4', n) - - # Upgrade gantry settings for Lulzbot Mini if untouched by user - if getMachineSetting('machine_type', n) == 'lulzbot_mini' and \ - getMachineSetting('extruder_head_size_min_x', n) == '0.0' and \ - getMachineSetting('extruder_head_size_max_x', n) == '0.0' and \ - getMachineSetting('extruder_head_size_min_y', n) == '0.0' and \ - getMachineSetting('extruder_head_size_max_y', n) == '0.0' and \ - getMachineSetting('extruder_head_size_height', n) == '0.0': - putMachineSetting('extruder_head_size_min_x', '40', n) - putMachineSetting('extruder_head_size_max_x', '75', n) - putMachineSetting('extruder_head_size_min_y', '25', n) - putMachineSetting('extruder_head_size_max_y', '55', n) - putMachineSetting('extruder_head_size_height', '17', n) + pass -- 2.30.2