Spoken symbols, model loading state, and UX fixes - #29
Merged
Merged
Conversation
New replacement rules: "slash" (mid-sentence join and transcript-leading slash-command forms), "back slash" split-compound variant, and bare "pipe". The Spoken symbols toggle's hover InfoBadge is replaced with a click-to-open popover listing every supported phrase, generated at runtime from the live rules via SpokenSymbolsCatalog so the list can't drift, plus the deliberate exclusions (dash, caret) with reasons. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Space-padded rules like "slash " previously fell back to literal
substring matching and could fire mid-word ("reopen", "bracketing").
Now each edge of a find gets \b independently when it's an ASCII word
character, so the word side stays anchored even when the other side is
punctuation or a space.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Transcription and edit-mode AI calls now show three pulsing bars (orange/purple) driven by a 10fps timer, since no observed property ticks while those calls run. Recording and pulsing states share a common bar-drawing path. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
…ings The stuck-down recovery ran after the !isFnKeyDown guard, so the exact case it existed for (macOS dropping the Fn keyUp) could never reach it. Run it before the guard, drop the now-meaningless tap-duration branch on keyUp, and show an error toast instead of silently discarding sub-1s recordings. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Save real file size for failed recordings when audio still exists, record failed transcription language as auto instead of guessing English, and paste after a successful clipboard write without change-count gating.
Only auto-reveal the menu bar popover while the visibility hint is still eligible. Once the user dismisses the hint or it reaches the show limit, launches stay quiet while manual reopen/click behavior still works.
Track transcription model loading with an explicit observable state instead of inferring readiness from provider internals. Report checking, download, preparation, ready, and failed states through the menu bar header, including Parakeet load progress and Whisper download/load progress. This prevents the header from staying on "Loading Model..." after a model is ready and makes load failures visible instead of leaving an indeterminate spinner.
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.
Summary
SpokenSymbolsCatalogthat generates the list from live rules\bindependently on each edge offind, soc++anchors left-only and space-padded rules anchor their word sideisModelLoaded/isModelDownloadingbooleans with aModelLoadStateenum, generation-tagged preload tasks, and phased progress reporting (checking → downloading → preparing)"auto"language in failed recording metadatachangeCountcheck incopyAndPastethat could silently skip the paste stepisMenuBarVisibilityHintAvailablebefore scheduling, so it never fires after the hint is exhaustedTest plan
slash,pipe,back slash,hyphenall convert correctly🤖 Generated with Claude Code