Skip to content

Releases: cncjs/cncjs

v1.9.0-rc.1 (broken)

22 Mar 08:11
Compare
Choose a tag to compare
v1.9.0-rc.1 (broken) Pre-release
Pre-release

Broken

  • const re = new RegExp(//, 'g') is not supported on Node.js v4 and earlier versions

Important Bug Fixes

  • Fixed a critical bug in 1.9.0-rc that caused a blank screen if user configuration is not available in the localStorage (62f8630)

v1.9.0-rc (broken)

22 Mar 06:15
Compare
Choose a tag to compare
v1.9.0-rc (broken) Pre-release
Pre-release

Bug Fixes

  • The Z-probe should apply offsets to the active coordinate system (595df4a, #147)
  • Missing checks for Smoothie controller (df3f951)

Improvements

  • Fine tuning the macro widget (b7c8859)

  • Adds macro variables support (d47a809, #136)

    • Supported variables

      • [xmin]
      • [xmax]
      • [ymin]
      • [ymax]
      • [zmin]
      • [zmax]
    • Examples

      Create a macro with the following content:

      ; Traverse around the boundary
      G90
      G0 Z10 ; go to z-safe
      G0 X[xmin] Y[ymin]
      G0 X[xmax]
      G0 Y[ymax]
      G0 X[xmin]
      G0 Y[ymin]
      

      Once a G-code file is loaded, run the macro for perimeter tracing with respect to current G-code boundary.

      image

  • Adds webcam rotation and flip buttons (13812be, 206881d, #148)
    image

  • Adds an option to choose whether to apply the tool length offset for the Z axis (e97bc0d, #147)
    image

Breaking Change

  • Controller commands

    1.8 (deprecated) 1.9.0-rc
    load gcode:load
    unload gcode:unload
    start gcode:start
    stop gcode:stop
    pause gcode:pause
    resume gcode:resume
    loadmacro macro:load
    (n/a) macro:run
    loadfile watchdir:load
  • Events

    1.9.0-alpha (deprecated) 1.9.0-rc
    loadmacro macro:load
    loadfile (removed)

v1.9.0-beta.1

15 Mar 16:14
Compare
Choose a tag to compare
v1.9.0-beta.1 Pre-release
Pre-release

Bug Fixes

  • Fixed a bug that caused feedhold and cycle start buttons not working (e3f713d, resolves #145)

Improvements

  • Creates a separate toolbar for camera control

    image

v1.9.0-beta

13 Mar 14:22
Compare
Choose a tag to compare
v1.9.0-beta Pre-release
Pre-release

Bug Fixes

  • Resolves an issue that may cause 3D visualizer not able to render the scene due to empty width or height (556a027)

Improvements

  • Adds support for more keyboard shortcuts (207d4bb, a0133a0, 9eda845, resolves #143)
    • Select Jog Distance
      ctrl + alt + cmd + d
    • Jog Forward
      ctrl + alt + cmd + f
    • Jog Backward
      ctrl + alt + cmd + b
    • Select A-axis
      ctrl + alt + cmd + a
  • React Router v4 integration (7f8dc0c)

v1.9.0-alpha.5

09 Mar 10:56
Compare
Choose a tag to compare
v1.9.0-alpha.5 Pre-release
Pre-release

Bug Fixes

  • Fixed a bug that cannot move / pan camera using right mouse button (or presss D button and use left mouse button). It has been troubled for a long time...
  • Resolves an issue in the Spindle widget that coolant buttons do not reflect the state of the mist coolant and flood coolant properly (fce3e08, #142)

Improvements

v1.9.0-alpha.4

28 Feb 16:14
Compare
Choose a tag to compare
v1.9.0-alpha.4 Pre-release
Pre-release

Bug Fixes

  • Resolves an issue that UI may stop updating in the middle of job (563905d, #134)

Improvements

  • Adds Event Trigger configuration UI (3bc807e, #84)
  • Adds the "Forgot your password?" link to the sign in page (b067a41)
  • Disables spindle control buttons when running a gcode program (#138)
  • Adds support for displaying current controller state (705de69)
  • Removes react-css-modules dependency and fixes eslint warnings
  • Translation updates (40c0f37)

v1.9.0-alpha.3

18 Feb 05:33
Compare
Choose a tag to compare
v1.9.0-alpha.3 Pre-release
Pre-release

Bug Fixes

  • Resolves Grbl buffer overrun issue (#133)
    • Deduct 8 bytes from the buffer size (324c9cc)
    • Do not change buffer size during gcode sending (5cc01fe)

Improvements

  • Adds preliminary support for event trigger (d8456ed, #84)

v1.8.17

18 Feb 06:05
Compare
Choose a tag to compare

This update contains a hot fix for the 1.8.x releases

Bug Fixes

  • Resolves buffer overrun issue (#133) for Grbl and Smoothie controller
    • Deduct 8 bytes from the buffer size (324c9cc)
    • Do not change buffer size during gcode sending (5cc01fe)

v1.9.0-alpha.2

13 Feb 15:42
Compare
Choose a tag to compare
v1.9.0-alpha.2 Pre-release
Pre-release

Bug Fixes

  • Fixed a bug that will accidentally remove the last connection from the connections array (2461181, resolves #128)

v1.8.16

13 Feb 07:30
Compare
Choose a tag to compare

This update contains a hot fix for the 1.8.x releases

Bug Fixes

  • Fixed a bug that will accidentally remove the last connection from the connections array (4fa67ae, resolves #128)