Skip to content

Commit c85b2d3

Browse files
committed
Freeze for release.
1 parent 1406d8a commit c85b2d3

File tree

7 files changed

+4936
-52
lines changed

7 files changed

+4936
-52
lines changed

client/package.json5

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
type: 'module',
4646
version: '0.1.31',
4747
dependencies: {
48+
'@codemirror/commands': '^6.8.1',
4849
'@codemirror/lang-cpp': '^6.0.3',
4950
'@codemirror/lang-css': '^6.3.1',
5051
'@codemirror/lang-go': '^6.0.1',
@@ -58,7 +59,7 @@
5859
'@codemirror/lang-rust': '^6.0.2',
5960
'@codemirror/lang-xml': '^6.1.0',
6061
'@codemirror/state': '^6.5.2',
61-
'@codemirror/view': '^6.38.1',
62+
'@codemirror/view': '^6.38.2',
6263
'@mathjax/mathjax-newcm-font': '4.0.0',
6364
codemirror: '^6.0.2',
6465
'graphviz-webcomponent': '^2.0.0',
@@ -83,7 +84,7 @@
8384
'eslint-config-prettier': '^10.1.8',
8485
'eslint-plugin-import': '^2.32.0',
8586
'eslint-plugin-prettier': '^5.5.4',
86-
mocha: '^11.7.1',
87+
mocha: '^11.7.2',
8788
prettier: '^3.6.2',
8889
typescript: '^5.9.2',
8990
},

client/pnpm-lock.yaml

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

docs/changelog.md

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

25-
* Improved tooling for VSCode extension.
25+
* No changes.
2626

27-
Version 0.1.31 -- 2025-31-Aug
27+
Version 0.1.32 -- 2025-Sep-01
28+
-----------------------------
29+
30+
* Improve tooling for VSCode extension.
31+
* Improve selection handling in the Client.
32+
33+
Version 0.1.31 -- 2025-Aug-31
2834
-----------------------------
2935

3036
* Correct EOL handling on Windows which caused data corruption.
3137

32-
Version 0.1.30 -- 2025-30-Aug
38+
Version 0.1.30 -- 2025-Aug-30
3339
-----------------------------
3440

3541
* Correct ordering of messages sent to and from the Framework to the Client.
3642
* Fix and improve test framework and error reporting.
3743
* Improve MathJax bundling.
3844
* Update PDF viewer.
3945

40-
Version 0.1.29 -- 2025-23-Aug
46+
Version 0.1.29 -- 2025-Aug-23
4147
-----------------------------
4248

4349
* Fix bugs in PDF viewer.
4450
* Fix error when scrolling before a document is loaded.
4551
* Fix debug print statements.
4652

47-
Version 0.1.28 -- 2025-13-Aug
53+
Version 0.1.28 -- 2025-Aug-13
4854
-----------------------------
4955

5056
* Fix navigation in document-only mode.
5157
* Improve errors reporting in the VSCode extension.
5258

53-
Version 0.1.27 -- 2025-05-Aug
59+
Version 0.1.27 -- 2025-Aug-05
5460
-----------------------------
5561

5662
* Correctly handle document-only files.
@@ -60,13 +66,13 @@ Version 0.1.27 -- 2025-05-Aug
6066
Earlier releases
6167
----------------
6268

63-
* v0.1.26, 2025-31-Jul:
69+
* v0.1.26, 2025-Jul-31:
6470
* Additional data corruption fixes when applying edits.
6571
* Add more checks to detect data corruption.
6672
* Update the file watcher to support the diff protocol.
6773
* Send only changed fields when using the diff protocol.
6874
* Provide basic synchronization between the IDE and Client.
69-
* v0.1.25, 2025-29-Jul:
75+
* v0.1.25, 2025-Jul-29:
7076
* Show notifications in Client when errors occur.
7177
* For safety, close the Client if applying edits fails.
7278
* v0.1.24, 2025-Jul-25: 

extensions/VSCode/package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"type": "git",
3131
"url": "https://github.com/bjones1/CodeChat_Editor"
3232
},
33-
"version": "0.1.31",
33+
"version": "0.1.32",
3434
"activationEvents": [
3535
"onCommand:extension.codeChatEditorActivate",
3636
"onCommand:extension.codeChatEditorDeactivate"
@@ -78,27 +78,27 @@
7878
]
7979
},
8080
"dependencies": {
81-
"escape-html": "^1",
82-
"ws": "^8"
81+
"escape-html": "^1.0.3",
82+
"ws": "^8.18.3"
8383
},
8484
"devDependencies": {
85-
"@types/escape-html": "^1",
86-
"@types/vscode": "^1.51.0",
87-
"@types/ws": "^8",
88-
"@typescript-eslint/eslint-plugin": "^8",
89-
"@typescript-eslint/parser": "^8",
90-
"@vscode/vsce": "^3",
85+
"@types/escape-html": "^1.0.4",
86+
"@types/vscode": "^1.103.0",
87+
"@types/ws": "^8.18.1",
88+
"@typescript-eslint/eslint-plugin": "^8.41.0",
89+
"@typescript-eslint/parser": "^8.41.0",
90+
"@vscode/vsce": "^3.6.0",
9191
"esbuild": "^0.25.9",
92-
"eslint": "^9",
93-
"eslint-config-prettier": "^10",
94-
"eslint-plugin-import": "^2",
95-
"eslint-plugin-node": "^11",
96-
"ovsx": "^0.10",
92+
"eslint": "^9.34.0",
93+
"eslint-config-prettier": "^10.1.8",
94+
"eslint-plugin-import": "^2.32.0",
95+
"eslint-plugin-node": "^11.1.0",
96+
"ovsx": "^0.10.5",
9797
"prettier": "^3.6.2",
98-
"typescript": "^5"
98+
"typescript": "^5.9.2"
9999
},
100100
"optionalDependencies": {
101-
"bufferutil": "^4"
101+
"bufferutil": "^4.0.9"
102102
},
103103
"scripts": {
104104
"compile": "cargo run --manifest-path=../../builder/Cargo.toml ext-build",

0 commit comments

Comments
 (0)