|
82 | 82 | (It now uses the first Z position in the g-code for the z-safe for probe moves before a z position is specified.) |
83 | 83 |
|
84 | 84 | Version 0.21 - Added option to disable the g-code path display (might speed things up for large g-code files |
85 | | - - Fixed handling of G43 commands with G0 moves mixed in on the same line (whos writes g-code like that anyway...) |
| 85 | + - Fixed handling of G43 commands with G0 moves mixed in on the same line (who writes g-code like that anyway...) |
86 | 86 | - Bounding box now displays when in auto-probe mode |
87 | 87 |
|
88 | 88 | Version 0.22 - Added support for DDCS probing to file |
@@ -3435,7 +3435,7 @@ def DoIt(self): |
3435 | 3435 | self.MAXZ=maxz |
3436 | 3436 | self.MINZ=minz |
3437 | 3437 |
|
3438 | | - # Reset Staus Bar and Entry Fields |
| 3438 | + # Reset Status Bar and Entry Fields |
3439 | 3439 |
|
3440 | 3440 | self.entry_set(self.Entry_GscaleXY, self.Entry_GscaleXY_Check() ,1) |
3441 | 3441 | self.entry_set(self.Entry_GscaleZ, self.Entry_GscaleZ_Check() ,1) |
@@ -5482,7 +5482,7 @@ def generate_dxf_write_gcode(self,side,Rapids=True): |
5482 | 5482 | g_code.append("0") |
5483 | 5483 | g_code.append("ENDSEC") |
5484 | 5484 |
|
5485 | | - #This block section is not necessary but apperantly it's good form to include one anyway. |
| 5485 | + #This block section is not necessary but apparently it's good form to include one anyway. |
5486 | 5486 | #The following is an empty block section. |
5487 | 5487 | g_code.append("0") |
5488 | 5488 | g_code.append("SECTION") |
@@ -6129,9 +6129,9 @@ def EXPRESSION_EVAL(self,line): |
6129 | 6129 | ### While there are still brackets "[...]" keep processing ### |
6130 | 6130 | ################################################################# |
6131 | 6131 | while s != -1: |
6132 | | - ############################################################## |
6133 | | - ### Find the first occurence of "]" after the current "[" ### |
6134 | | - ############################################################## |
| 6132 | + ############################################################### |
| 6133 | + ### Find the first occurrence of "]" after the current "[" ### |
| 6134 | + ############################################################### |
6135 | 6135 | e=-1 |
6136 | 6136 | for cnt in range(len(line)-1,s,-1): |
6137 | 6137 | if line[cnt] == ']': |
|
0 commit comments