Skip to content
Merged

Dev #97

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
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,14 @@ Changelog
[Github master](https://github.com/bjones1/CodeChat_Editor)
--------------------------------------------------------------------------------

* No changes.
* Re-translate Markdown documents as necessary. This causes math written in the
Client to immediately be rendered, instead of needing to switch to the IDE and
perform an edit.
* Ignore re-translations if the Client contents is dirty; overwrite Client
contents when dirty when an IDE update arrives. This prevents data corruption.
* Correctly mark Client contents as clean after sending an update to the IDE,
instead of waiting until the IDE's response arrives. This prevents cases where
the Client edits didn't update IDE text.

Version 0.1.47 -- 2025-Dec-19
--------------------------------------------------------------------------------
Expand All @@ -37,7 +44,8 @@ Version 0.1.47 -- 2025-Dec-19
* Prevent editing the `<span>` that wraps math expressions.
* Automatically re-sync Client with IDE when out of sync.
* Update to latest release of MathJax.
* Add support for [Loci](https://github.com/EdwardALuke/loci) files.
* Add support for
[Loci](https://www.simcenter.msstate.edu/software/luke/loci/index.html) files.

Version 0.1.46 -- 2025-Dec-15
--------------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions builder/Cargo.lock

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

10 changes: 5 additions & 5 deletions client/package.json5
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
'@codemirror/lang-sql': '^6.10.0',
'@codemirror/lang-xml': '^6.1.0',
'@codemirror/lang-yaml': '^6.1.2',
'@codemirror/state': '^6.5.2',
'@codemirror/state': '^6.5.3',
'@codemirror/view': '6.38.8',
'@hpcc-js/wasm-graphviz': '^1.17.0',
'@mathjax/mathjax-newcm-font': '^4.1.0',
Expand All @@ -80,9 +80,9 @@
'@types/mocha': '^10.0.10',
'@types/node': '^24.10.4',
'@types/toastify-js': '^1.12.4',
'@typescript-eslint/eslint-plugin': '^8.50.0',
'@typescript-eslint/parser': '^8.50.0',
chai: '^6.2.1',
'@typescript-eslint/eslint-plugin': '^8.50.1',
'@typescript-eslint/parser': '^8.50.1',
chai: '^6.2.2',
esbuild: '^0.27.2',
eslint: '^9.39.2',
'eslint-config-prettier': '^10.1.8',
Expand All @@ -91,7 +91,7 @@
mocha: '^11.7.5',
prettier: '^3.7.4',
typescript: '^5.9.3',
'typescript-eslint': '^8.50.0',
'typescript-eslint': '^8.50.1',
},
scripts: {
test: 'echo "Error: no test specified" && exit 1',
Expand Down
418 changes: 214 additions & 204 deletions client/pnpm-lock.yaml

Large diffs are not rendered by default.

Loading