mirror of
https://github.com/h3pdesign/Neon-Vision-Editor
synced 2026-04-21 13:27:16 +00:00
Finalize v0.4.25 release notes
This commit is contained in:
parent
fa020987b9
commit
044b8f8a39
4 changed files with 16 additions and 11 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -223,9 +223,10 @@ struct WelcomeTourView: View {
|
|||
title: "What’s 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)],
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue