diff --git a/docs/src/gui/gmoccapy.adoc b/docs/src/gui/gmoccapy.adoc index 035be2059c2..fca0cbdcc85 100644 --- a/docs/src/gui/gmoccapy.adoc +++ b/docs/src/gui/gmoccapy.adoc @@ -318,6 +318,7 @@ All you have to take care of, is that you include for every tab or side panel th ** *box_custom_2* (will introduce your glade file left of cooling_frame) ** *box_custom_3* (will introduce your glade file left of spindle_frame) ** *box_custom_4* (will introduce your glade file right of spindle_frame) +** *box_dro_side* (will introduce your glade file right of the DRO) [NOTE] See also the included sample INI files to see the differences. @@ -1129,7 +1130,9 @@ You have three options: * _Start as window_ - If you select start as window the spinboxes to set the position and size will get active. One time set, the GUI will start every time on the place and with the size selected. Nevertheless the user can change the size and position using the mouse, but that will not have any influence on the settings. -* _hide the cursor_ - Does allow to hide the cursor, what is very useful if you use a touch screen. +* _Window decorated_ - Allows the title bar to be hidden. (default: title bar visible) +* _hide cursor_ - Does allow to hide the cursor, what is very useful if you use a touch screen. +* _hide tooltips_ - Does gide the tool tips. .Keyboard diff --git a/docs/src/gui/images/gmoccapy_3_axis.png b/docs/src/gui/images/gmoccapy_3_axis.png index 0e8f0c90af7..b5d92f97aa3 100644 Binary files a/docs/src/gui/images/gmoccapy_3_axis.png and b/docs/src/gui/images/gmoccapy_3_axis.png differ diff --git a/docs/src/gui/images/gmoccapy_3_axis_mid.png b/docs/src/gui/images/gmoccapy_3_axis_mid.png index a8d9731095f..c285ee09243 100644 Binary files a/docs/src/gui/images/gmoccapy_3_axis_mid.png and b/docs/src/gui/images/gmoccapy_3_axis_mid.png differ diff --git a/docs/src/gui/images/gmoccapy_5_axis.png b/docs/src/gui/images/gmoccapy_5_axis.png index 80e79a5c752..22475cebc7b 100644 Binary files a/docs/src/gui/images/gmoccapy_5_axis.png and b/docs/src/gui/images/gmoccapy_5_axis.png differ diff --git a/docs/src/gui/images/gmoccapy_5_axis_mid.png b/docs/src/gui/images/gmoccapy_5_axis_mid.png index 0b12fd3e002..02e3a59f8f6 100644 Binary files a/docs/src/gui/images/gmoccapy_5_axis_mid.png and b/docs/src/gui/images/gmoccapy_5_axis_mid.png differ diff --git a/docs/src/gui/images/gmoccapy_settings_advanced.png b/docs/src/gui/images/gmoccapy_settings_advanced.png index bca251bca64..351ef45d644 100644 Binary files a/docs/src/gui/images/gmoccapy_settings_advanced.png and b/docs/src/gui/images/gmoccapy_settings_advanced.png differ diff --git a/docs/src/gui/images/gmoccapy_settings_appearance.png b/docs/src/gui/images/gmoccapy_settings_appearance.png index 4e7a4e09c3f..b46265a9fee 100644 Binary files a/docs/src/gui/images/gmoccapy_settings_appearance.png and b/docs/src/gui/images/gmoccapy_settings_appearance.png differ diff --git a/docs/src/gui/images/gmoccapy_settings_hardware.png b/docs/src/gui/images/gmoccapy_settings_hardware.png index 68932d1cdfc..b7f4025b481 100644 Binary files a/docs/src/gui/images/gmoccapy_settings_hardware.png and b/docs/src/gui/images/gmoccapy_settings_hardware.png differ diff --git a/src/emc/usr_intf/gmoccapy/gmoccapy.py b/src/emc/usr_intf/gmoccapy/gmoccapy.py index 505f59607ba..77206acb871 100644 --- a/src/emc/usr_intf/gmoccapy/gmoccapy.py +++ b/src/emc/usr_intf/gmoccapy/gmoccapy.py @@ -76,7 +76,7 @@ def excepthook(exc_type, exc_obj, exc_tb): # constants # # gmoccapy #" -_RELEASE = " 3.4.2.1" +_RELEASE = " 3.4.3" _INCH = 0 # imperial units are active _MM = 1 # metric units are active diff --git a/src/emc/usr_intf/gmoccapy/release_notes.txt b/src/emc/usr_intf/gmoccapy/release_notes.txt index 580f617eff1..d2f206d979b 100644 --- a/src/emc/usr_intf/gmoccapy/release_notes.txt +++ b/src/emc/usr_intf/gmoccapy/release_notes.txt @@ -1,3 +1,18 @@ +ver 3.4.3 + +- fix setting of themes +- fix display of logo with "-logo" option +- added embedded tab location "box_dro_side" +- added setting to disable sound +- added setting for "hide title bar" +- replaced deprecated GTK widgets, mostly GtkTable and GtkAlignment +- removed setting MAX_RAPID_OVERRIDE (#2392) +- removed sound for calculator dialogs (except unlock code dialog) +- transparent buttons for cooling and spindle, fixed spindle_stop/spindle_stop_on icon +- fixed buttons in restart dialog (run from line) (side effect from #2381) +- hal_mdihistory: scroll to last line on reload +- fixed virtual keyboard did not expand (#2394) + ver 3.4.2.1 - Replaced deprecated Gtk widgets in GladeVCP library (#2381, thanks phillc54)