File tree Expand file tree Collapse file tree
share/qtvcp/screens/qtplasmac
src/emc/usr_intf/qtplasmac Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- VERSION = '236.299 '
1+ VERSION = '236.300 '
22LCNCVER = '2.9'
33DOCSVER = LCNCVER
44
Original file line number Diff line number Diff line change @@ -26,6 +26,11 @@ <h2>QtPlasmaC Version History - LinuxCNC 2.9</h2>
2626</ table >
2727< br >
2828<!--- ****** ADD NEXT VERSION BELOW THIS LINE ****** --->
29+ < br > < b > < u > 236.300 2023 Nov 07</ u > </ b >
30+ < ul style ="margin:0; ">
31+ < li > fix gcode filter comments error</ li >
32+ </ ul >
33+
2934< br > < b > < u > 236.299 2023 Nov 05</ u > </ b >
3035< ul style ="margin:0; ">
3136 < li > rework versioning due to master branch diverging</ li >
Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ def process_file(self):
199199 if line [0 ] in 'nN' :
200200 line = self .remove_line_numbers (line )
201201 # if any obvious illegal characters then comment the line
202- if self .illegal_character (line ):
202+ if line [ 0 ] != ';' and self .illegal_character (line ):
203203 continue
204204 # check for material edit
205205 if line [:3 ] == '(o=' :
@@ -218,7 +218,7 @@ def process_file(self):
218218 self .gcodeList .append (line )
219219 continue
220220 # full line comments - only remove line numbers
221- if line [0 ] in ';(' and not line [: 3 ] == '(o=) ' :
221+ elif line [0 ] in ';(' :
222222 if len (line ) > 1 :
223223 l0 = line [0 ]
224224 tmp = line [1 :].strip ()
You can’t perform that action at this time.
0 commit comments