|
|
@@ -3835,7 +3835,8 @@ class FlatCAMCNCjob(FlatCAMObj, CNCjob):
|
|
|
pass
|
|
|
|
|
|
if marlin is False:
|
|
|
- gcode = '(G-CODE GENERATED BY FLATCAM - www.flatcam.org %s)\n' % str(self.app.version_date) + '\n'
|
|
|
+ gcode = '(G-CODE GENERATED BY FLATCAM v%s - www.flatcam.org - Version Date: %s)\n' % \
|
|
|
+ (str(self.app.version), str(self.app.version_date)) + '\n'
|
|
|
|
|
|
gcode += '(Name: ' + str(self.options['name']) + ')\n'
|
|
|
gcode += '(Type: ' + "G-code from " + str(self.options['type']) + ')\n'
|
|
|
@@ -3847,7 +3848,8 @@ class FlatCAMCNCjob(FlatCAMObj, CNCjob):
|
|
|
gcode += '(Created on ' + time_str + ')\n' + '\n'
|
|
|
|
|
|
else:
|
|
|
- gcode = ';G-CODE GENERATED BY FLATCAM - www.flatcam.org %s\n' % str(self.app.version_date) + '\n'
|
|
|
+ gcode = ';G-CODE GENERATED BY FLATCAM v%s - www.flatcam.org - Version Date: %s\n' % \
|
|
|
+ (str(self.app.version), str(self.app.version_date)) + '\n'
|
|
|
|
|
|
gcode += ';Name: ' + str(self.options['name']) + '\n'
|
|
|
gcode += ';Type: ' + "G-code from " + str(self.options['type']) + '\n'
|