Skip to content
Merged

Dev #84

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,18 @@ Changelog

* No changes.

Version 0.1.36 -- 2025-Sep-17
-----------------------------

* The system continues to work after a PC goes to sleep then wakes back up;
communication within previous versions fails after a sleep/wake up cycle.
* Communicate between the VSCode extension and the Server using queues instead
of a websocket and a queue.
* Remove the HTML editor's toolbar, to free up more space on the screen.
* Add a code formatting button to the quick toolbar which appears when tex is
selected in the HTML editor.
* Remove the File entry from the HTML editor's main menu.

Version 0.1.35 -- 2025-Sep-12
-----------------------------

Expand Down
17 changes: 13 additions & 4 deletions builder/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions client/package.json5
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
url: 'https://github.com/bjones1/CodeChat_editor',
},
type: 'module',
version: '0.1.35',
version: '0.1.36',
dependencies: {
'@codemirror/commands': '^6.8.1',
'@codemirror/lang-cpp': '^6.0.3',
Expand All @@ -67,19 +67,19 @@
mermaid: '^11.11.0',
'npm-check-updates': '^18.1.1',
'pdfjs-dist': '^5.4.149',
tinymce: '^8.0.2',
tinymce: '^8.1.1',
'toastify-js': '^1.12.0',
},
devDependencies: {
'@types/chai': '^5.2.2',
'@types/js-beautify': '^1.14.3',
'@types/mocha': '^10.0.10',
'@types/node': '^24.3.3',
'@types/node': '^24.5.1',
'@types/toastify-js': '^1.12.4',
'@typescript-eslint/eslint-plugin': '^8.43.0',
'@typescript-eslint/parser': '^8.43.0',
'@typescript-eslint/eslint-plugin': '^8.44.0',
'@typescript-eslint/parser': '^8.44.0',
chai: '^6.0.1',
esbuild: '^0.25.9',
esbuild: '^0.25.10',
eslint: '^9.35.0',
'eslint-config-prettier': '^10.1.8',
'eslint-plugin-import': '^2.32.0',
Expand Down
Loading
Loading