7.07.2021

- some changes in data tools structure ('tool_type' to ['data']['tools_mill_job_type])
- some strings changes

4.07.2021

- optimized the Milling Plugin preferences
- added more preferences for v-shape tools in the Milling Plugin Preferences
- deactivated the automatic disable of the Cut Z parameter when selecting a v-shape tool in Milling Plugin
- in Milling Plugin added some protections against receiving signals from widgets without objectName set
- in Milling Plugin made sure that the Custom offset field is displayed only when it is needed (selected from Offset Type combobox)
- added some requirements asked by vispy v0.7.0
- if the generated Gcode is empty then the app will know and will not create a CNCJob object
- modified the Tool Table in Milling Plugin: now the tool type parameter is part of the Tool parameters and no longer in the Tool Table
- working on a Kosy CNC machine preprocessor file
This commit is contained in:
Marius Stanciu
2021-07-07 01:16:15 +03:00
committed by Marius
parent 71206b52f3
commit 4e46eac61c
39 changed files with 47035 additions and 45680 deletions

View File

@@ -314,8 +314,8 @@ class PreferencesUIManager:
# "tools_mill_offset_type": 0, # _('Path')
# "tools_mill_offset": 0.0,
# "tools_mill_job_type": 0, # 'Rough'
# "tools_mill_vtipdia": 0.1,
# "tools_mill_vtipangle": 30,
"tools_mill_vtipdia": self.ui.plugin_pref_form.tools_mill_group.tipdia_entry,
"tools_mill_vtipangle": self.ui.plugin_pref_form.tools_mill_group.tipangle_entry,
"tools_mill_cutz": self.ui.plugin_pref_form.tools_mill_group.cutz_entry,
"tools_mill_travelz": self.ui.plugin_pref_form.tools_mill_group.travelz_entry,
@@ -348,10 +348,6 @@ class PreferencesUIManager:
"tools_mill_area_strategy": self.ui.plugin_pref_form.tools_mill_group.strategy_radio,
"tools_mill_area_overz": self.ui.plugin_pref_form.tools_mill_group.over_z_entry,
# Polish
"tools_mill_polish": self.ui.plugin_pref_form.tools_mill_group.polish_cb,
"geometry_polish_dia": self.ui.plugin_pref_form.tools_mill_group.polish_dia_entry,
"geometry_polish_pressure": self.ui.plugin_pref_form.tools_mill_group.polish_pressure_entry,
"geometry_polish_travelz": self.ui.plugin_pref_form.tools_mill_group.polish_travelz_entry,
"tools_mill_polish_margin": self.ui.plugin_pref_form.tools_mill_group.polish_margin_entry,
"tools_mill_polish_overlap": self.ui.plugin_pref_form.tools_mill_group.polish_over_entry,
"tools_mill_polish_method": self.ui.plugin_pref_form.tools_mill_group.polish_method_combo,