Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cncjs/cncjs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.10.3
Choose a base ref
...
head repository: cncjs/cncjs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.10.4
Choose a head ref
  • 15 commits
  • 65 files changed
  • 8 contributors

Commits on Oct 7, 2023

  1. Add Ukrainian language (#837)

    * Add Ukraine
    
    * Ukrainian language update
    
    * Fix scripts/build.sh
    
    * Ukrainian translation update
    
    * chore: remove `build.sh` from the `scripts` folder
    
    ---------
    
    Co-authored-by: cheton <cheton@gmail.com>
    khvalera and cheton authored Oct 7, 2023
    Configuration menu
    Copy the full SHA
    b1735c1 View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2024

  1. Configuration menu
    Copy the full SHA
    1387293 View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2024

  1. Configuration menu
    Copy the full SHA
    d22c17f View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2024

  1. Update to node 18, webpack 5 (#869)

    * Update packages
    
    * Webpack 5 updates, plugins
    
    * Updates for node-tap
    
    * Switch to `string.substring`
    
    * Fix i18next-scanner warnings for imports
    
    * Replace cli-color with chalk
    
    * Add stream fallback
    
    * Remove unused and deprecated dev server packages, use webpack watch
    
    * Remove IE9 polyfill
    
    * Update css-loader to 3
    
    * Update url/file loaders
    
    * Minimal eslint-loader update
    
    * Maintain ~ vs ^ version limiting
    
    * fixup! Maintain ~ vs ^ version limiting
    
    * Fix missing icon font images
    
    * Fix missing sidebar icons, woff fonts
    
    * ci: upgrade to Node.js v18
    
    * ci: set `--allow-incomplete-coverage` to allow `tap` to pass without return exit code 1
    
    * feat: import chalk from `app/lib/chalk`
    
    * feat: use default `fontSize` option for the console widget
    
    ---------
    
    Co-authored-by: cheton <cheton@gmail.com>
    Billiam and cheton authored Oct 2, 2024
    Configuration menu
    Copy the full SHA
    6f04a2f View commit details
    Browse the repository at this point in the history
  2. Add a Grbl jogCancel command (#512)

    * Add a Grbl jogCancel command
    
    Grbl v1.1 controllers support additional Extended Ascii Realtime
    Comands:
    https://github.com/gnea/grbl/wiki/Grbl-v1.1-Commands#extended-ascii-realtime-command-descriptions
    
    The jogCancel command is sent as the character 0x85, and is useful
    for implementing Grbl v1.1 jogging:
    https://github.com/gnea/grbl/wiki/Grbl-v1.1-Jogging
    
    The 0x85 character cannot be sent over socket.io as an argument to
    the gcode command because it does not form a valid UTF8 byte
    sequence.  Add a jogCancel command that causes CNCjs to send
    the 0x85 character to the Grbl controller.
    
    Since the GRBL jog cancel command (0x85) is a realtime command, it
    will be handled by GRBL as soon as it enters the serial buffer. If
    there are any unparsed jog commands ($J=) in GRBL's serial buffer
    the cancel command will skip ahead of them and cancel any parsed
    commands, but then the unparsed jog command will be parsed and
    one more time.  Make the feeder keep tracked of unacked commands,
    and Wait until all the commands sent by the feeder have been acked
    when sending the jog cancel command to ensure all pending jog
    commands have been parsed.
    
    * feat: check extended-ascii realtime commands
    
    ---------
    
    Co-authored-by: Colin Cross <cncjs@colincross.com>
    Co-authored-by: cheton <cheton@gmail.com>
    3 people authored Oct 2, 2024
    Configuration menu
    Copy the full SHA
    be180f6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a2c5649 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2e70224 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2024

  1. Configuration menu
    Copy the full SHA
    77fe5b0 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2024

  1. chore(deps-dev): bump webpack from 5.93.0 to 5.94.0 (#878)

    Bumps [webpack](https://github.com/webpack/webpack) from 5.93.0 to 5.94.0.
    - [Release notes](https://github.com/webpack/webpack/releases)
    - [Commits](webpack/webpack@v5.93.0...v5.94.0)
    
    ---
    updated-dependencies:
    - dependency-name: webpack
      dependency-type: direct:development
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Oct 8, 2024
    Configuration menu
    Copy the full SHA
    722106d View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2024

  1. feat(Grbl): enhance Grbl parser to resolve issues with specific Grbl …

    …forks that generate incorrect parser state output ($G) (#883)
    
    * feat(Grbl): resolve issues with specific Grbl forks that generate incorrect parser state output ($G)
    
    * test: add a test case for handling invalid Grbl parser state
    
    * refactor: improve the pattern matching for parsing parser state output
    
    * test: update program state for a Grbl test case
    cheton authored Oct 14, 2024
    Configuration menu
    Copy the full SHA
    7b68609 View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2024

  1. Configuration menu
    Copy the full SHA
    3e8aa54 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2024

  1. feat(l10n): upgrade i18next-scanner and refresh translations (#884)

    * feat: bump i18next-scanner to 4.6.0
    
    * chore: pass a function to the `removeUnusedKey` option
    
    * chore: update translations
    
    * Update src/app/i18n/cs/resource.json
    
    Co-authored-by: codiumai-pr-agent-free[bot] <138128286+codiumai-pr-agent-free[bot]@users.noreply.github.com>
    
    * Update src/app/i18n/cs/resource.json
    
    Co-authored-by: codiumai-pr-agent-free[bot] <138128286+codiumai-pr-agent-free[bot]@users.noreply.github.com>
    
    * Update src/app/i18n/es/resource.json
    
    Co-authored-by: codiumai-pr-agent-free[bot] <138128286+codiumai-pr-agent-free[bot]@users.noreply.github.com>
    
    * Update src/app/i18n/es/resource.json
    
    Co-authored-by: codiumai-pr-agent-free[bot] <138128286+codiumai-pr-agent-free[bot]@users.noreply.github.com>
    
    * Update src/app/i18n/es/resource.json
    
    Co-authored-by: codiumai-pr-agent-free[bot] <138128286+codiumai-pr-agent-free[bot]@users.noreply.github.com>
    
    * chore: update language settings and resource files
    
    * Update build.config.js
    
    * Update General.jsx
    
    * docs: update README.md
    
    * Update build.config.js
    
    Co-authored-by: codiumai-pr-agent-free[bot] <138128286+codiumai-pr-agent-free[bot]@users.noreply.github.com>
    
    * feat: add a separate config file to store language options
    
    * feat: sort the display language with localeCompare
    
    ---------
    
    Co-authored-by: codiumai-pr-agent-free[bot] <138128286+codiumai-pr-agent-free[bot]@users.noreply.github.com>
    cheton and codiumai-pr-agent-free[bot] authored Oct 16, 2024
    Configuration menu
    Copy the full SHA
    d51bf99 View commit details
    Browse the repository at this point in the history
  2. chore(deps): bump elliptic from 6.5.4 to 6.5.7 (#882)

    Bumps [elliptic](https://github.com/indutny/elliptic) from 6.5.4 to 6.5.7.
    - [Commits](indutny/elliptic@v6.5.4...v6.5.7)
    
    ---
    updated-dependencies:
    - dependency-name: elliptic
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Oct 16, 2024
    Configuration menu
    Copy the full SHA
    f798af5 View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2024

  1. fix: resolve a regression where api.getState is only accessible onl…

    …y with an authenticated session (#885)
    
    * fix: resolve a regression where `api.getState` is only accessible only with an authenticated session
    
    * refactor: implement error handling for async operations
    cheton authored Oct 17, 2024
    Configuration menu
    Copy the full SHA
    d3a8124 View commit details
    Browse the repository at this point in the history
  2. chore(release): publish 1.10.4

    cheton committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    4055301 View commit details
    Browse the repository at this point in the history
Loading