Finalize v0.4.25 release notes

This commit is contained in:
h3p 2026-02-18 20:21:19 +01:00
parent fa020987b9
commit 044b8f8a39
4 changed files with 16 additions and 11 deletions

View file

@ -7,13 +7,15 @@ The format follows *Keep a Changelog*. Versions use semantic versioning with pre
## [v0.4.25] - 2026-02-18
### Added
- TODO
- Added completion/signpost instrumentation (`os_signpost`) for inline completion, syntax highlighting, and file save paths to support performance profiling.
### Improved
- TODO
- Improved inline code completion responsiveness with trigger-aware scheduling, adaptive debounce, and short-lived context caching.
- Improved editor rendering performance with coalesced highlight refreshes and reduced heavy-feature work on very large documents.
### Fixed
- TODO
- Fixed redundant save writes by skipping unchanged file content saves via content fingerprinting.
- Fixed macOS syntax-highlighting churn during typing by limiting many highlight passes to local edited regions when safe.
## [v0.4.24] - 2026-02-18

View file

@ -358,7 +358,7 @@
CODE_SIGNING_ALLOWED = YES;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 263;
CURRENT_PROJECT_VERSION = 264;
DEAD_CODE_STRIPPING = YES;
DEVELOPMENT_TEAM = CS727NF72U;
ENABLE_APP_SANDBOX = YES;
@ -439,7 +439,7 @@
CODE_SIGNING_ALLOWED = YES;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 263;
CURRENT_PROJECT_VERSION = 264;
DEAD_CODE_STRIPPING = YES;
DEVELOPMENT_TEAM = CS727NF72U;
ENABLE_APP_SANDBOX = YES;

View file

@ -223,9 +223,10 @@ struct WelcomeTourView: View {
title: "Whats New in This Release",
subtitle: "Major changes since v0.4.24:",
bullets: [
"TODO",
"TODO",
"TODO"
"Added completion/signpost instrumentation (`os_signpost`) for inline completion, syntax highlighting, and file save paths to support performance profiling.",
"Improved inline code completion responsiveness with trigger-aware scheduling, adaptive debounce, and short-lived context caching.",
"Improved editor rendering performance with coalesced highlight refreshes and reduced heavy-feature work on very large documents.",
"Fixed redundant save writes by skipping unchanged file content saves via content fingerprinting."
],
iconName: "sparkles.rectangle.stack",
colors: [Color(red: 0.40, green: 0.28, blue: 0.90), Color(red: 0.96, green: 0.46, blue: 0.55)],

View file

@ -130,9 +130,11 @@ If macOS blocks first launch:
### v0.4.25 (summary)
- TODO
- TODO
- TODO
- Added completion/signpost instrumentation (`os_signpost`) for inline completion, syntax highlighting, and file save paths to support performance profiling.
- Improved inline code completion responsiveness with trigger-aware scheduling, adaptive debounce, and short-lived context caching.
- Improved editor rendering performance with coalesced highlight refreshes and reduced heavy-feature work on very large documents.
- Fixed redundant save writes by skipping unchanged file content saves via content fingerprinting.
- Fixed macOS syntax-highlighting churn during typing by limiting many highlight passes to local edited regions when safe.
### v0.4.24 (summary)