Skip to content

Commit 1da6a71

Browse files
committed
Freeze for release.
1 parent efbb3da commit 1da6a71

File tree

12 files changed

+4514
-149
lines changed

12 files changed

+4514
-149
lines changed

CHANGELOG.md

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

25+
* No changes.
26+
27+
Version 0.1.35 -- 2025-Sep-12
28+
-----------------------------
29+
2530
* Embed the CodeChat Editor Server inside the VSCode extension, rather than
2631
running it as a standalone binary.
32+
* Fixes to the build process.
2733

2834
Version 0.1.34 -- 2025-Sep-08
2935
-----------------------------

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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@
4343
url: 'https://github.com/bjones1/CodeChat_editor',
4444
},
4545
type: 'module',
46-
version: '0.1.34',
46+
version: '0.1.35',
4747
dependencies: {
4848
'@codemirror/commands': '^6.8.1',
4949
'@codemirror/lang-cpp': '^6.0.3',
5050
'@codemirror/lang-css': '^6.3.1',
5151
'@codemirror/lang-go': '^6.0.1',
52-
'@codemirror/lang-html': '^6.4.9',
52+
'@codemirror/lang-html': '^6.4.10',
5353
'@codemirror/lang-java': '^6.0.2',
5454
'@codemirror/lang-javascript': '^6.2.4',
5555
'@codemirror/lang-json': '^6.0.2',
@@ -65,7 +65,7 @@
6565
'graphviz-webcomponent': 'github:bjones1/graphviz-webcomponent#dist',
6666
mathjax: '4.0.0',
6767
mermaid: '^11.11.0',
68-
'npm-check-updates': '^18.1.0',
68+
'npm-check-updates': '^18.1.1',
6969
'pdfjs-dist': '^5.4.149',
7070
tinymce: '^8.0.2',
7171
'toastify-js': '^1.12.0',
@@ -74,7 +74,7 @@
7474
'@types/chai': '^5.2.2',
7575
'@types/js-beautify': '^1.14.3',
7676
'@types/mocha': '^10.0.10',
77-
'@types/node': '^24.3.1',
77+
'@types/node': '^24.3.3',
7878
'@types/toastify-js': '^1.12.4',
7979
'@typescript-eslint/eslint-plugin': '^8.43.0',
8080
'@typescript-eslint/parser': '^8.43.0',

client/pnpm-lock.yaml

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

extensions/VSCode/.gitignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,10 @@
2323
node_modules/
2424
out/
2525

26-
# Server
27-
server/
26+
# Server support files
27+
log4rs.yml
28+
hashLocations.json
29+
static/
2830

2931
# NAPI-RS
3032
src/index.d.ts

extensions/VSCode/.vscodeignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,19 @@ node_modules/
3131
# Omit VSCode config.
3232
.vscode/**
3333

34+
# Omit Rust build / intermediate files.
35+
target/**
36+
3437
# Omit target-specific binaries. (Comment out when publishing for a specific
3538
# target.)
3639
#server/**
3740

3841
# Misc files not needed in a package.
3942
.eslintrc.yml
4043
.gitignore
44+
build.rs
45+
Cargo.lock
46+
Cargo.toml
4147
contents.md
4248
developer.md
4349
jsconfig.json

0 commit comments

Comments
 (0)