- remade file names in the app
- fixed the issue with factory_defaults being saved every time the app start - fixed the preferences not being saved to a file when the Save button is pressed in Edit -> Preferences - fixed and updated the Transform Tools in the Editors
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
# MIT Licence #
|
||||
##############################################################
|
||||
|
||||
from AppPreProcessor import *
|
||||
from appPreProcessor import *
|
||||
|
||||
|
||||
class Berta_CNC(PreProc):
|
||||
@@ -102,7 +102,7 @@ class Berta_CNC(PreProc):
|
||||
gcode += '(Spindle Speed: %s RPM)\n' % str(p['spindlespeed'])
|
||||
|
||||
gcode += (
|
||||
# This line allow you to sets the machine to METRIC / INCH in the AppGUI
|
||||
# This line allow you to sets the machine to METRIC / INCH in the appGUI
|
||||
'G20\n' if p.units.upper() == 'IN' else 'G21\n') + '\n'
|
||||
# gcode += 'G21\n' # This line sets the machine to METRIC ONLY
|
||||
# gcode += 'G20\n' # This line sets the machine to INCH ONLY
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
# MIT Licence #
|
||||
# ##########################################################
|
||||
|
||||
from AppPreProcessor import *
|
||||
from appPreProcessor import *
|
||||
|
||||
# This post processor is configured to output code that
|
||||
# is compatible with almost any version of Grbl.
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
# MIT Licence #
|
||||
# ##########################################################
|
||||
|
||||
from AppPreProcessor import *
|
||||
from appPreProcessor import *
|
||||
|
||||
|
||||
class ISEL_CNC(PreProc):
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
# MIT Licence #
|
||||
# ##########################################################
|
||||
|
||||
from AppPreProcessor import *
|
||||
from appPreProcessor import *
|
||||
|
||||
|
||||
class ISEL_ICP_CNC(PreProc):
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
# MIT Licence #
|
||||
# ##########################################################
|
||||
|
||||
from AppPreProcessor import *
|
||||
from appPreProcessor import *
|
||||
|
||||
|
||||
class Marlin(PreProc):
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
# License: MIT Licence #
|
||||
# ##########################################################
|
||||
|
||||
from AppPreProcessor import *
|
||||
from appPreProcessor import *
|
||||
|
||||
|
||||
class Marlin_laser_FAN_pin(PreProc):
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
# License: MIT Licence #
|
||||
# ##########################################################
|
||||
|
||||
from AppPreProcessor import *
|
||||
from appPreProcessor import *
|
||||
|
||||
|
||||
class Marlin_laser_Spindle_pin(PreProc):
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
# MIT Licence #
|
||||
# ##########################################################
|
||||
|
||||
from AppPreProcessor import *
|
||||
from appPreProcessor import *
|
||||
|
||||
|
||||
class Paste_1(AppPreProcTools):
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
# MIT Licence #
|
||||
# ##########################################################
|
||||
|
||||
from AppPreProcessor import *
|
||||
from appPreProcessor import *
|
||||
|
||||
|
||||
class Repetier(PreProc):
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
# MIT Licence #
|
||||
# ##########################################################
|
||||
|
||||
from AppPreProcessor import *
|
||||
from appPreProcessor import *
|
||||
|
||||
|
||||
# for Roland Preprocessors it is mandatory for the preprocessor name (python file and class name, both of them must be
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
# MIT Licence #
|
||||
# ##########################################################
|
||||
|
||||
from AppPreProcessor import *
|
||||
from appPreProcessor import *
|
||||
|
||||
|
||||
class Toolchange_Custom(PreProc):
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
# MIT Licence #
|
||||
# ##########################################################
|
||||
|
||||
from AppPreProcessor import *
|
||||
from appPreProcessor import *
|
||||
|
||||
|
||||
class Toolchange_Manual(PreProc):
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
# MIT Licence #
|
||||
# ##########################################################
|
||||
|
||||
from AppPreProcessor import *
|
||||
from appPreProcessor import *
|
||||
|
||||
|
||||
class Toolchange_Probe_MACH3(PreProc):
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
# MIT Licence #
|
||||
# ##########################################################
|
||||
|
||||
from AppPreProcessor import *
|
||||
from appPreProcessor import *
|
||||
|
||||
|
||||
class default(PreProc):
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
# MIT Licence #
|
||||
# ##########################################################
|
||||
|
||||
from AppPreProcessor import *
|
||||
from appPreProcessor import *
|
||||
|
||||
|
||||
class grbl_11(PreProc):
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
# MIT Licence #
|
||||
# ##########################################################
|
||||
|
||||
from AppPreProcessor import *
|
||||
from appPreProcessor import *
|
||||
|
||||
|
||||
# for Roland Preprocessors it is mandatory for the preprocessor name (python file and class name, both of them must be
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
# MIT Licence #
|
||||
# ##########################################################
|
||||
|
||||
from AppPreProcessor import *
|
||||
from appPreProcessor import *
|
||||
|
||||
|
||||
class line_xyz(PreProc):
|
||||
|
||||
Reference in New Issue
Block a user