chore: release version bump#7
Merged
Merged
Conversation
c9188ed to
9abb39e
Compare
9abb39e to
4dfe290
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@vemjs/[email protected]
Minor Changes
WorkspaceFsProviderinterface (pickDirectory/pickFile) with the web implementation as the default (createWebFsProvider()); host shells inject native dialogs viaWorkspaceExplorer.setFileSystemProvider().openDirectory(dir)is public so hosts can show a CLI-resolved directory without a picker, andopenFileBuffer's third argument is now a plainsavecallback instead of aFileSystemFileHandle(breaking for direct callers).onDidOpenDirectorycallbacks now receive thePickedDirectoryinstead of the internalFileSystemHandler. A save backend that throws a Vim-styleE##:error gets its message surfaced verbatim in the status line.Patch Changes
:prefix rendering taller than the typed command in the Tauri (WebKitGTK) build. The prefix usedbold 14px monospacewhile the input uses14px monospace; WebKitGTK synthesizes bold monospace with different metrics, so the glyphs didn't line up. The prefix now uses the exact same font as the input — which also matches Vim, whose command line is plain Normal text.VemEditorEntity's keydown handler had noisComposing/'Process'guard, so every intermediate composing keystroke was fed straight into the Vim state machine, corrupting the buffer and breaking composition. Composing keydowns are now ignored, and the committed text is inserted via the'change'event@vectojs/core's a11y projection already emits once a composition ends.