Skip to content

Commit c1b6469

Browse files
committed
Freeze for release.
1 parent 3de541d commit c1b6469

File tree

9 files changed

+454
-366
lines changed

9 files changed

+454
-366
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ Changelog
3030
this release.
3131
* Fix failures when trying to edit a doc block which contains only diagrams.
3232
* Fix data corruption bug after sending a re-translation back to the Client.
33+
* Correct incorrect whitespace removal in Graphviz and Mermaid diagrams.
3334

3435
Version 0.1.43 -- 2025-Dec-05
3536
--------------------------------------------------------------------------------

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -111,14 +111,14 @@ Mathematics
111111
--------------------------------------------------------------------------------
112112

113113
The CodeChat Editor uses [MathJax](https://www.mathjax.org/) to support typeset
114-
mathematics. Place the delimiters `$` immediately before and
115-
after in-line mathematics; place `$$` immediately before
116-
and after displayed mathematics. For example,
117-
118-
| Source | Rendered |
119-
| --------------------------------------------- | ------------------------------------------- |
120-
| `$x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$` | $x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$ |
121-
| `$$a^2$$` | $$a^2$$ |
114+
mathematics. Place the delimiters `$` immediately before and after in-line
115+
mathematics; place `$$` immediately before and after displayed mathematics. For
116+
example,
117+
118+
| Source | Rendered |
119+
| ------------------------------------------ | ---------------------------------------- |
120+
| `$x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$` | $x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$ |
121+
| `$$a^2$$` | $$a^2$$ |
122122

123123
See [Latex Mathematics](https://en.wikibooks.org/wiki/LaTeX/Mathematics#Symbols)
124124
for the syntax used to write mathematics expressions.

client/package.json5

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
url: 'https://github.com/bjones1/CodeChat_editor',
4444
},
4545
type: 'module',
46-
version: '0.1.43',
46+
version: '0.1.44',
4747
dependencies: {
4848
'@codemirror/commands': '^6.10.0',
4949
'@codemirror/lang-cpp': '^6.0.3',
@@ -61,7 +61,7 @@
6161
'@codemirror/lang-xml': '^6.1.0',
6262
'@codemirror/lang-yaml': '^6.1.2',
6363
'@codemirror/state': '^6.5.2',
64-
'@codemirror/view': '^6.38.8',
64+
'@codemirror/view': '^6.39.0',
6565
'@hpcc-js/wasm-graphviz': '^1.16.0',
6666
'@mathjax/mathjax-newcm-font': '4.0.0',
6767
codemirror: '^6.0.2',
@@ -76,10 +76,10 @@
7676
'@types/chai': '^5.2.3',
7777
'@types/js-beautify': '^1.14.3',
7878
'@types/mocha': '^10.0.10',
79-
'@types/node': '^24.10.1',
79+
'@types/node': '^24.10.2',
8080
'@types/toastify-js': '^1.12.4',
81-
'@typescript-eslint/eslint-plugin': '^8.48.1',
82-
'@typescript-eslint/parser': '^8.48.1',
81+
'@typescript-eslint/eslint-plugin': '^8.49.0',
82+
'@typescript-eslint/parser': '^8.49.0',
8383
chai: '^6.2.1',
8484
esbuild: '^0.27.1',
8585
eslint: '^9.39.1',

client/pnpm-lock.yaml

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

extensions/VSCode/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ license = "GPL-3.0-only"
3232
name = "codechat-editor-vscode-extension"
3333
readme = "../README.md"
3434
repository = "https://github.com/bjones1/CodeChat_Editor"
35-
version = "0.1.43"
35+
version = "0.1.44"
3636

3737
[lib]
3838
crate-type = ["cdylib"]

extensions/VSCode/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"type": "git",
4141
"url": "https://github.com/bjones1/CodeChat_Editor"
4242
},
43-
"version": "0.1.43",
43+
"version": "0.1.44",
4444
"activationEvents": [
4545
"onCommand:extension.codeChatEditorActivate",
4646
"onCommand:extension.codeChatEditorDeactivate"
@@ -84,10 +84,10 @@
8484
"@napi-rs/cli": "^3.5.0",
8585
"@tybys/wasm-util": "^0.10.1",
8686
"@types/escape-html": "^1.0.4",
87-
"@types/node": "^24.10.1",
87+
"@types/node": "^24.10.2",
8888
"@types/vscode": "1.61.0",
89-
"@typescript-eslint/eslint-plugin": "^8.48.1",
90-
"@typescript-eslint/parser": "^8.48.1",
89+
"@typescript-eslint/eslint-plugin": "^8.49.0",
90+
"@typescript-eslint/parser": "^8.49.0",
9191
"@vscode/vsce": "^3.7.1",
9292
"chalk": "^5.6.2",
9393
"esbuild": "^0.27.1",

0 commit comments

Comments
 (0)