Skip to content
Open
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
9 changes: 8 additions & 1 deletion server/.cargo/config.toml → .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,15 @@
# See also the
# [cargo config docs](https://doc.rust-lang.org/cargo/reference/config.html#configuration-format)
# for environment variable setting.
#
# This file sits at the workspace root rather than in `server/` because Cargo
# discovers configuration by walking up from the *current* directory: once a
# command runs from the repository root, a `server/.cargo/config.toml` is never
# read and `ts-rs` silently writes its output elsewhere. `relative = true`
# resolves against this file's parent directory, so the path holds no matter
# which member directory Cargo was invoked from.
[env]
TS_RS_EXPORT_DIR = { value = "../client/src/rust-types", relative = true }
TS_RS_EXPORT_DIR = { value = "client/src/rust-types", relative = true }
# Set the extension for the imported files: import JavaScript (`.js`) files, per
# TypeScript's convention.
TS_RS_IMPORT_EXTENSION = "ts"
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,9 @@ jobs:
RELEASE_COMMIT: "${{ github.sha }}"
APP_VERSION: ${{ fromJson(needs.plan.outputs.val).releases[0].app_version }}
VSCE_PRERELEASE_FLAG: "${{ fromJson(steps.host.outputs.manifest).announcement_is_prerelease && '--pre-release' || '' }}"
VSCE_ARGS: --changelog-path docs/changelog.md
# The changelog moved to the repository root so `dist` auto-detects
# it; `vsce` needs the path spelled out.
VSCE_ARGS: --changelog-path CHANGELOG.md
run: |
npm install -g @vscode/vsce
# vsce doesn't support prerelease portions of a semver, so strip that
Expand Down
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (C) 2026 Bryan A. Jones.
<span id="_mce_caret"></span>Copyright (C) 2026 Bryan A. Jones.

This file is part of the CodeChat Editor.

Expand All @@ -24,10 +24,17 @@ Changelog

* No changes.

Version 0.2.4 -- 2026-Sep-11
----------------------------

* Fixed bug: Windows UNC paths now work correctly.
* Restored mangled contents of [README](README.md).

Version 0.2.3 -- 2026-Sep-10
----------------------------

* Alpha: added support for <xref ref="cc-TRCKclsxwW"></xref> and <xref ref="cc-swJ6a-FiK3"></xref>.
* Alpha: added support for <xref ref="cc-TRCKclsxwW"></xref> and
<xref ref="cc-swJ6a-FiK3"></xref>.
* Improved Client editing experience -- fewer places exist where starting a new
heading, list item, etc. is removed immediately after creation.
* Improved accessibility; added accessibility documentation to the
Expand Down
3 changes: 1 addition & 2 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ All build commands must be executed from the `server/` directory.

* To build the entire project, execute `./bt build`.
* To format and lint the entire project, execute `./bt flint`.
* To build (bundle) only the Client, execute `./bt client-build`.
* To run tests, execute `cargo test`.
* To run all tests, execute `./bt test`.

Commenting guide
----------------
Expand Down
Loading
Loading