diff --git a/FlatCAMApp.py b/FlatCAMApp.py index 23e5ad45..f0f70a67 100644 --- a/FlatCAMApp.py +++ b/FlatCAMApp.py @@ -132,7 +132,7 @@ class App(QtCore.QObject): # ################## Version and VERSION DATE ############################## # ########################################################################## version = 8.99 - version_date = "2019/11/30" + version_date = "2019/12/7" beta = True engine = '3D' @@ -4171,8 +4171,8 @@ class App(QtCore.QObject): else: commands_list = "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, " \ "AlignDrillGrid, Bbox, Bounds, ClearShell, CopperClear,\n"\ - "# Cncjob, Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, " \ - "Follow, GeoCutout, GeoUnion, GetNames,\n"\ + "# Cncjob, Cutout, Delete, Drillcncjob, ExportDXF, ExportExcellon, ExportGcode,\n" \ + "ExportGerber, ExportSVG, Exteriors, Follow, GeoCutout, GeoUnion, GetNames,\n"\ "# GetSys, ImportSvg, Interiors, Isolate, JoinExcellon, JoinGeometry, " \ "ListSys, MillDrills,\n"\ "# MillSlots, Mirror, New, NewExcellon, NewGeometry, NewGerber, Nregions, " \ @@ -4187,7 +4187,6 @@ class App(QtCore.QObject): '# %s:\n' % _("FlatCAM commands list") new_source_file += commands_list + '\n' - def initialize(obj, app): obj.source_file = deepcopy(new_source_file) @@ -7683,7 +7682,7 @@ class App(QtCore.QObject): msgbox.setWindowIcon(QtGui.QIcon('share/save_as.png')) bt_yes = msgbox.addButton(_('Yes'), QtWidgets.QMessageBox.YesRole) - bt_no = msgbox.addButton(_('No'), QtWidgets.QMessageBox.NoRole) + msgbox.addButton(_('No'), QtWidgets.QMessageBox.NoRole) msgbox.setDefaultButton(bt_yes) msgbox.exec_() diff --git a/README.md b/README.md index 5d4906f2..9e003511 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ CAD program, and create G-Code for Isolation routing. - added 3 new tcl commands: export dxf, export excellon and export gerber - added a Cancel button in Tools DB when requesting to add a tool in the Geometry Tool Table - modified the default values for the METRIC system; the app now starts in the METRIC units since the majority of the world use the METRIC units system +- small changes, updated the estimated release date 28.11.2019