feat(viewer,build,ui,docs): add expression curve viewer, spec-based b…#25
Merged
NewComer00 merged 2 commits intomainfrom Apr 1, 2026
Merged
feat(viewer,build,ui,docs): add expression curve viewer, spec-based b…#25NewComer00 merged 2 commits intomainfrom
NewComer00 merged 2 commits intomainfrom
Conversation
…uild, and closable tabs feat(viewer): add `expressive-viewer` — real-time expression curve visualisation tool; multiple instances can run simultaneously, each independently displaying relay data; curves produced by `expressive` and `expressive-gui` are streamed to all running instances in real time feat(ui): add ClosableTabs component extending ui.tabs with per-tab close buttons; supports left/right button position, on_close callback guard, and smart focus fallback to nearest neighbour on close feat(build): replace inline PyInstaller flags with `build/expressive.spec`; update artifact name from `Expressive-GUI` to `Expressive` across packaging workflow and release asset paths; update .gitignore to track `build/*.spec` while ignoring root-level specs refactor(wavtool): defer heavy imports (sklearn, skimage, soundfile, scipy) to call sites to reduce top-level import cost; migrate cache path from `CACHE_DIR` to `APP_CACHE_DIR` via `utils.fs` refactor(worker): change `lang` field type from `str` to `str | List[str] | None` with default `["en_US", "en"]` for proper locale fallback chain docs(README,README.en): add Data Viewer screenshot alongside workflow screenshot; add second demo video; document `expressive-viewer` command and multi-instance usage; add language override tip with PowerShell and shell examples; remove `--lang` flag from GUI launch instructions; mark expression curve visualisation as completed in feature checklist Co-authored-by: Claude <claude@anthropic.com>
… compatibility
patch("ctypes.windll") raises AttributeError on Linux because the
attribute does not exist on non-Windows builds of ctypes; create=True
instructs unittest.mock to create the attribute if absent, allowing
the four win32 simulation tests to run on Linux CI runners.
also remove redundant per-method normalize_locale imports — the symbol
is already imported at module level.
Codecov Report❌ Patch coverage is
📢 Thoughts on this report? Let us know! |
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.
…uild, and closable tabs
feat(viewer): add
expressive-viewer— real-time expression curve visualisation tool; multiple instances can run simultaneously, each independently displaying relay data; curves produced byexpressiveandexpressive-guiare streamed to all running instances in real timefeat(ui): add ClosableTabs component extending ui.tabs with per-tab close buttons; supports left/right button position, on_close callback guard, and smart focus fallback to nearest neighbour on close
feat(build): replace inline PyInstaller flags with
build/expressive.spec; update artifact name fromExpressive-GUItoExpressiveacross packaging workflow and release asset paths; update .gitignore to trackbuild/*.specwhile ignoring root-level specsrefactor(wavtool): defer heavy imports (sklearn, skimage, soundfile, scipy) to call sites to reduce top-level import cost; migrate cache path from
CACHE_DIRtoAPP_CACHE_DIRviautils.fsrefactor(worker): change
langfield type fromstrtostr | List[str] | Nonewith default["en_US", "en"]for proper locale fallback chaindocs(README,README.en): add Data Viewer screenshot alongside workflow screenshot; add second demo video; document
expressive-viewercommand and multi-instance usage; add language override tip with PowerShell and shell examples; remove--langflag from GUI launch instructions; mark expression curve visualisation as completed in feature checklist