Skip to content

Commit 4db7007

Browse files
committed
Freeze for release.
1 parent 665035b commit 4db7007

File tree

9 files changed

+43
-37
lines changed

9 files changed

+43
-37
lines changed

builder/Cargo.lock

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

builder/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ fn run_update() -> io::Result<()> {
359359
cargo update --manifest-path=../builder/Cargo.toml;
360360
cargo update;
361361
)?;
362-
// Simply display outdated dependencies, but don't considert them an error.
362+
// Simply display outdated dependencies, but don't consider them an error.
363363
run_script("npm", &["outdated"], "../client", false)?;
364364
run_script("npm", &["outdated"], "../extensions/VSCode", false)?;
365365
run_cmd!(

client/package-lock.json

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

client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codechat-editor-client",
3-
"version": "0.1.25",
3+
"version": "0.1.26",
44
"description": "The CodeChat Editor Client, part of a web-based literate programming editor (the CodeChat Editor).",
55
"homepage": "https://github.com/bjones1/CodeChat_Editor",
66
"type": "module",
@@ -48,7 +48,7 @@
4848
"graphviz-webcomponent": "^2",
4949
"mermaid": "^11",
5050
"npm-check-updates": "^18",
51-
"pdfjs-dist": "=5.3.93",
51+
"pdfjs-dist": "~5 < 5.4.54 || ~5.4.55",
5252
"tinymce": "^8",
5353
"toastify-js": "^1"
5454
},

docs/changelog.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ Changelog
2121

2222
* [Github master](https://github.com/bjones1/CodeChat_Editor):
2323
* Additional data corruption fixes when applying edits.
24+
* Add more checks to detect data corruption.
25+
* Update the file watcher to support the diff protocol.
26+
* Send only changed fields when using the diff protocol.
27+
* Provide basic synchronization between the IDE and Client.
2428
*  v0.1.25, 2025-29-Jul:
2529
* Show notifications in Client when errors occur.
2630
* For safety, close the Client if applying edits fails.
@@ -131,4 +135,5 @@ Changelog
131135
* Cross-platform fixes.
132136
* v0.1.0, 2024-Oct-16:
133137
* Initial release, with binaries for Windows only. Built with
134-
manually-patched CodeMirror per \[this
138+
manually-patched CodeMirror per [this
139+
issue](https://github.com/bjones1/CodeChat_Editor/issues/27).

extensions/VSCode/package-lock.json

Lines changed: 11 additions & 11 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codechat-editor-client",
3-
"version": "0.1.25",
3+
"version": "0.1.26",
44
"publisher": "CodeChat",
55
"engines": {
66
"vscode": "^1.61.0"

server/Cargo.lock

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

server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ license = "GPL-3.0-only"
3131
name = "codechat-editor-server"
3232
readme = "../README.md"
3333
repository = "https://github.com/bjones1/CodeChat_Editor"
34-
version = "0.1.25"
34+
version = "0.1.26"
3535

3636
# This library allows other packages to use core CodeChat Editor features.
3737
[lib]

0 commit comments

Comments
 (0)