-
-
Notifications
You must be signed in to change notification settings - Fork 589
Comparing changes
Open a pull request
base repository: cncjs/cncjs
base: v1.10.3
head repository: cncjs/cncjs
compare: v1.10.4
- 15 commits
- 65 files changed
- 8 contributors
Commits on Oct 7, 2023
-
* 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>
Configuration menu - View commit details
-
Copy full SHA for b1735c1 - Browse repository at this point
Copy the full SHA b1735c1View commit details
Commits on Sep 30, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1387293 - Browse repository at this point
Copy the full SHA 1387293View commit details
Commits on Oct 1, 2024
-
Configuration menu - View commit details
-
Copy full SHA for d22c17f - Browse repository at this point
Copy the full SHA d22c17fView commit details
Commits on Oct 2, 2024
-
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>
Configuration menu - View commit details
-
Copy full SHA for 6f04a2f - Browse repository at this point
Copy the full SHA 6f04a2fView commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for be180f6 - Browse repository at this point
Copy the full SHA be180f6View commit details -
Configuration menu - View commit details
-
Copy full SHA for a2c5649 - Browse repository at this point
Copy the full SHA a2c5649View commit details -
feat(g2core): add
jogCancel
command to cancel jogging using feedhol……d and queue flush (#876)
Configuration menu - View commit details
-
Copy full SHA for 2e70224 - Browse repository at this point
Copy the full SHA 2e70224View commit details
Commits on Oct 4, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 77fe5b0 - Browse repository at this point
Copy the full SHA 77fe5b0View commit details
Commits on Oct 8, 2024
-
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>
Configuration menu - View commit details
-
Copy full SHA for 722106d - Browse repository at this point
Copy the full SHA 722106dView commit details
Commits on Oct 14, 2024
-
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
Configuration menu - View commit details
-
Copy full SHA for 7b68609 - Browse repository at this point
Copy the full SHA 7b68609View commit details
Commits on Oct 15, 2024
-
feat(Grbl): support UART communication without resetting the connecti…
…on upon opening (#880)
Configuration menu - View commit details
-
Copy full SHA for 3e8aa54 - Browse repository at this point
Copy the full SHA 3e8aa54View commit details
Commits on Oct 16, 2024
-
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>
Configuration menu - View commit details
-
Copy full SHA for d51bf99 - Browse repository at this point
Copy the full SHA d51bf99View commit details -
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>
Configuration menu - View commit details
-
Copy full SHA for f798af5 - Browse repository at this point
Copy the full SHA f798af5View commit details
Commits on Oct 17, 2024
-
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
Configuration menu - View commit details
-
Copy full SHA for d3a8124 - Browse repository at this point
Copy the full SHA d3a8124View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4055301 - Browse repository at this point
Copy the full SHA 4055301View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v1.10.3...v1.10.4