Skip to content

Commit 26b7df8

Browse files
committed
gmoccapy_3_5_1: update release notes and docs, set version number
1 parent f012b4f commit 26b7df8

File tree

7 files changed

+33
-2
lines changed

7 files changed

+33
-2
lines changed
32.5 KB
Loading
73.3 KB
Loading
5.52 KB
Loading
36.2 KB
Loading
7.11 KB
Loading

src/emc/usr_intf/gmoccapy/gmoccapy.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def excepthook(exc_type, exc_obj, exc_tb):
7676

7777
# constants
7878
# # gmoccapy #"
79-
_RELEASE = " 3.5.0"
79+
_RELEASE = "3.5.1"
8080
_INCH = 0 # imperial units are active
8181
_MM = 1 # metric units are active
8282

@@ -548,7 +548,9 @@ def _startup_message(self):
548548
messages =[ _("<b>3.5.0 (LinuxCNC 2.10.0): Gmoccapy does no longer automatically retain G43 after a toolchange!</b>\n"\
549549
"Automatic reactivation of G43 is possible using a REMAP.\n"\
550550
"Examples can be found in the Gmoccapy sim configurations."),
551-
# _("<b>3.5.1 (LinuxCNC 2.10.1): </b> Example for new feature"),
551+
_("<b>3.5.1 (LinuxCNC 2.10.0)</b>\n• The tool table and offset page uses now the calculator for entering values by default. "\
552+
"This can be changed in the settings/by a button.\n• A button to call the calculator was added in MDI and G-code edit modes."),
553+
# _("<b>3.5.2 (LinuxCNC 2.10.x): </b> Example for new feature"),
552554
]
553555
hide_message = self.prefs.getpref("hide_startup_messsage", 0, int)
554556
if hide_message < len(messages):

src/emc/usr_intf/gmoccapy/release_notes.txt

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
ver 3.5.1 -- LinuxCNC 2.10.0-pre0
2+
- Style velocity/spindle info box (remove S-prefix, add units)
3+
- Add button "refresh dir" in open file page
4+
- Add setting for jog button size + right pane width
5+
- Add icon for continuous jog, change alignment of jog increment button box
6+
- MDI-entry: bigger enter button (with CSS)
7+
- G-code editor:
8+
- Add button to show preview beside editor (split view)
9+
- Add comment/uncomment button for G-code + keybinding
10+
- Re-arrange search and replace bar
11+
- Force display of unlocalized float values in Offset page (Thanks @Sigma1912)
12+
13+
- Fix homing abort on focus out event (#3667, thanks @Sigma1912)
14+
- Use common logger/istat and common/hal_glib. This removes the qt name from the logging and imports. (Thanks @CMorley)
15+
- Move tool table buttons to table frame, add toggle button for calculator use (#3509, thanks @Sigma1912)
16+
- Add button to call calculator in mdi and gcode edit modes (#3496, thanks @Sigma1912)
17+
- Fix several warnings. Thanks @Sigma1912
18+
- Improvements to the calculator widget (#3473, thanks @Sigma1912)
19+
- Use calculator widget to edit numeric values in tooltable (optional with button) (#3472, thanks @Sigma1912)
20+
- Use calculator widget to edit offset values in offsetpage (with setting to disable) (#3457, thanks @Sigma1912)
21+
- Improvements to the offsetpage widget. Especially add column for rotation in offsets G54..G59.3 (#3457, thanks @Sigma1912)
22+
- Fix issues #3447 and #982 (#3454, thanks @Sigma1912)
23+
- Fix the display of very large numbers for spindle speed and 'Vc' in the gui when using G96
24+
- Fix 'spindle.0.speed-out' pins being reset to wrong values when using G96
25+
- Fix wrong spindle speed set when using M1 with optional stop enabled
26+
- The 'Spindle [rpm]' value will now track hal pin 'spindle.0.speed-out'
27+
- The 'S' value in the 'G-Code' frame now tracks 'self.stat.settings[2]'
28+
- Fix external_load function -wrong function name - makes external loading of files possible again (Thanks @CMorley)
29+
130
ver 3.5.0 -- LinuxCNC 2.10.0-pre0
231
- Add startup message to show new features/important hints
332
- Add LinuxCNC version to window title

0 commit comments

Comments
 (0)