Skip to content

Commit acdaefd

Browse files
committed
Freeze for release.
1 parent 2eef359 commit acdaefd

File tree

9 files changed

+745
-318
lines changed

9 files changed

+745
-318
lines changed

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,14 @@ Changelog
2222
[Github master](https://github.com/bjones1/CodeChat_Editor)
2323
--------------------------------------------------------------------------------
2424

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

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

4250
Version 0.1.46 -- 2025-Dec-15
4351
--------------------------------------------------------------------------------

builder/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json5

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
'@codemirror/lang-sql': '^6.10.0',
6161
'@codemirror/lang-xml': '^6.1.0',
6262
'@codemirror/lang-yaml': '^6.1.2',
63-
'@codemirror/state': '^6.5.2',
63+
'@codemirror/state': '^6.5.3',
6464
'@codemirror/view': '6.38.8',
6565
'@hpcc-js/wasm-graphviz': '^1.17.0',
6666
'@mathjax/mathjax-newcm-font': '^4.1.0',
@@ -80,9 +80,9 @@
8080
'@types/mocha': '^10.0.10',
8181
'@types/node': '^24.10.4',
8282
'@types/toastify-js': '^1.12.4',
83-
'@typescript-eslint/eslint-plugin': '^8.50.0',
84-
'@typescript-eslint/parser': '^8.50.0',
85-
chai: '^6.2.1',
83+
'@typescript-eslint/eslint-plugin': '^8.50.1',
84+
'@typescript-eslint/parser': '^8.50.1',
85+
chai: '^6.2.2',
8686
esbuild: '^0.27.2',
8787
eslint: '^9.39.2',
8888
'eslint-config-prettier': '^10.1.8',
@@ -91,7 +91,7 @@
9191
mocha: '^11.7.5',
9292
prettier: '^3.7.4',
9393
typescript: '^5.9.3',
94-
'typescript-eslint': '^8.50.0',
94+
'typescript-eslint': '^8.50.1',
9595
},
9696
scripts: {
9797
test: 'echo "Error: no test specified" && exit 1',

client/pnpm-lock.yaml

Lines changed: 214 additions & 204 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extensions/VSCode/Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extensions/VSCode/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@
8888
"@types/escape-html": "^1.0.4",
8989
"@types/node": "^24.10.4",
9090
"@types/vscode": "1.61.0",
91-
"@typescript-eslint/eslint-plugin": "^8.50.0",
92-
"@typescript-eslint/parser": "^8.50.0",
91+
"@typescript-eslint/eslint-plugin": "^8.50.1",
92+
"@typescript-eslint/parser": "^8.50.1",
9393
"@vscode/vsce": "^3.7.1",
9494
"chalk": "^5.6.2",
9595
"esbuild": "^0.27.2",
@@ -102,7 +102,7 @@
102102
"ovsx": "^0.10.7",
103103
"prettier": "^3.7.4",
104104
"typescript": "^5.9.3",
105-
"typescript-eslint": "^8.50.0"
105+
"typescript-eslint": "^8.50.1"
106106
},
107107
"optionalDependencies": {
108108
"bufferutil": "^4.1.0"

0 commit comments

Comments
 (0)