From: Youness Alaoui Date: Fri, 26 Jun 2015 18:04:04 +0000 (-0400) Subject: Do not change mini gantry settings in version upgrade X-Git-Tag: lulzbot-15.02.1-2.01~75 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=68d056f6579383c1f5e9e807ef6ede198c1a4949;p=cura.git 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 --- 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