Buildbotics CNC Controller Firmware Changelog
=============================================
+## v0.4.16
+ - Improved axis under/over warning tooltip.
+
## v0.4.15
- Set GCode variables ``#5400`` and ``#<_tool>``.
- Added ``#<_timestamp>`` GCode variable.
{
"name": "bbctrl",
- "version": "0.4.15",
+ "version": "0.4.16",
"homepage": "http://buildbotics.com/",
"repository": "https://github.com/buildbotics/bbctrl-firmware",
"license": "CERN-OHL-S v2",
case 'HOMED': title = 'Axis successfuly homed.'; break;
case 'OVER':
- title = 'Tool path would move ' +
- this._length_str(pathMax + off - max) + ' beyond axis bounds.';
+ title = 'Current program would move ' +
+ this._length_str(pathMax + off - max) + ' beyond axis bounds. ' +
+ 'Offsets must be adjusted or soft limits set correctly.';
break;
case 'UNDER':
- title = 'Tool path would move ' +
- this._length_str(min - pathMin - off) + ' below axis bounds.';
+ title = 'Current program would move ' +
+ this._length_str(min - pathMin - off) + ' below axis bounds. ' +
+ 'Offsets must be adjusted of soft limits set correctly.';
break;
case 'NO FIT':