Add WakeWord, AppLauncher, AssistantMode plugins and fix startup crash#174
Open
amorr42 wants to merge 1 commit into
Open
Add WakeWord, AppLauncher, AssistantMode plugins and fix startup crash#174amorr42 wants to merge 1 commit into
amorr42 wants to merge 1 commit into
Conversation
…on startup New plugins: - wake_word: Wake word detection for hands-free activation - cmd_app_launcher: Launch/close apps, media controls, volume management - assistant_mode: Orchestrates wake word + audio input/output into a voice assistant loop Bug fixes: - Fix Windows access violation crash during plugin settings dialog setup caused by excessive Qt widget creation at startup. Introduced lazy initialization pattern: setup_skeleton() creates minimal UI structure at startup, full widget build is deferred to first dialog open - Fix extract_option_tabs null-safe check order and prevent empty tab keys from being added to the keys list - Fix Config.load() and load_base_config() NoneType error with defensive guard - Fix Profile.load() file handle variable shadowing and race condition between exists() and open() Test improvements: - Fix cross-platform path separator usage (os.path.join) - Fix timezone-dependent timestamp test - Fix mock isolation (tmp_path_factory, Profile.init patch, locale reset fixture) - Fix bridge worker tests with proper MetaObj mock - Fix provider tests with filesystem isolation Utilities: - Add normalize_text() for locale-safe, Turkish-compatible text comparison - Add openwakeword and pycaw as optional dependencies
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
setup_skeleton()creates minimal UI at startup, full widget build deferred to first dialog opentmp_path_factorynormalize_text()for locale-safe Turkish character comparisonTest plan