github cncjs/cncjs v1.9.0-rc
v1.9.0-rc (broken)

latest releases: v1.10.3, v1.10.2, v1.10.1...
pre-release7 years ago

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)

Don't miss a new cncjs release

NewReleases is sending notifications on new releases.