Skip to content
Merged

Dev #133

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,15 @@ Changelog

* No changes.

Version 0.1.58 -- 2026-Jun-22
-----------------------------

* Load Client components at first use, rather than pre-loading all possible
components.
* Correct math translation from the Client back to the IDE.
* Fix Client bug which caused it to immediately remove newly added empty
paragraphs.

Version 0.1.57 -- 2026-Jun-15
-----------------------------

Expand Down
53 changes: 43 additions & 10 deletions builder/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions client/package.json5
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
url: 'https://github.com/bjones1/CodeChat_editor',
},
type: 'module',
version: '0.1.57',
version: '0.1.58',
dependencies: {
'@codemirror/commands': '^6.10.3',
'@codemirror/lang-cpp': '^6.0.3',
Expand All @@ -63,8 +63,8 @@
'@codemirror/language': '^6.12.3',
'@codemirror/legacy-modes': '^6.5.3',
'@codemirror/state': '^6.6.0',
'@codemirror/view': '6.38.8',
'@hpcc-js/wasm-graphviz': '^1.22.0',
'@codemirror/view': '~6.38.8',
'@hpcc-js/wasm-graphviz': '^1.22.2',
'@mathjax/mathjax-newcm-font': '^4.1.2',
codemirror: '^6.0.2',
mathjax: '^4.1.2',
Expand All @@ -81,8 +81,8 @@
'@types/mocha': '^10.0.10',
'@types/node': '^24.13.2',
'@types/toastify-js': '^1.12.4',
'@typescript-eslint/eslint-plugin': '^8.61.0',
'@typescript-eslint/parser': '^8.61.0',
'@typescript-eslint/eslint-plugin': '^8.61.1',
'@typescript-eslint/parser': '^8.61.1',
chai: '^6.2.2',
esbuild: '^0.28.1',
eslint: '^10.5.0',
Expand All @@ -91,10 +91,10 @@
'eslint-plugin-prettier': '^5.5.6',
globals: '^17.6.0',
mocha: '^11.7.6',
'npm-check-updates': '^22.2.3',
'npm-check-updates': '^22.2.7',
prettier: '^3.8.4',
typescript: '^6.0.3',
'typescript-eslint': '^8.61.0',
'typescript-eslint': '^8.61.1',
},
scripts: {
test: 'echo "Error: no test specified" && exit 1',
Expand Down
Loading
Loading