feat: timeline arrow key navigation, animation inspector phase fix & Windows IPC fixes - #51
Open
Tlousky wants to merge 1 commit into
Open
feat: timeline arrow key navigation, animation inspector phase fix & Windows IPC fixes#51Tlousky wants to merge 1 commit into
Tlousky wants to merge 1 commit into
Conversation
- Add timeline frame stepping with Left/Right arrow keys when nothing is selected - Add jump to previous/next edit boundary with Up/Down arrow keys when nothing is selected - Enable key repeat on arrow navigation - Fix phase selector bug in animation inspector - Fix Windows named pipe IPC handshake and streaming in CLI client/server - Fix AuthGate rendering in headless mode - Fix type reference for wicg-file-system-access
|
@Tlousky is attempting to deploy a commit to the Diffusion Studio Team on Vercel. A member of the Team first needs to authorize it. |
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.
Description
This PR introduces keyboard navigation improvements, fixes an inspector UI bug, and enhances Windows CLI IPC compatibility.
Summary of Changes
Timeline Keyboard Navigation (when selection is empty):
←/→): Step backward / forward by 1 frame (10 frames with Shift).↑/↓): Jump playhead to the previous / next cut / item boundary in the active scene.Animation Inspector Phase Selector Fix:
Select<boolean>inanimations.tsxto use structuredPhaseOptionobjects ({ value: 'in' | 'out', label: 'In' | 'Out' }) withoptionValueandoptionTextValue.Windows IPC Handshake & CLI Stability:
cli-client.tsandcli-server.tsto prevent premature socket close on Windows named pipes.AuthGateinapp.tsxso headless/CLI sessions do not overlay the login screen whenauth.headless()is active.Types & Build Hygiene:
/// <reference types="@types/wicg-file-system-access" />inpackages/assets/src/browser.ts.threedevDependencies to ensure examples passtsccleanly.projects/local project directory in.gitignore.