-
-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix:no wait for ready #56
Conversation
dont wait for mycroft.ready message, display homescreen ASAP
WalkthroughThe changes involve modifications to the Changes
Possibly related PRs
Suggested labels
Suggested reviewers
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
this only reason this was there was to allow setup skill (pairing) to handle the screen before this stage, but that skill has been deprecated for a long time |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Outside diff range and nitpick comments (1)
ovos_gui/homescreen.py (1)
Issue Identified: The
set_mycroft_ready
method is still being called inovos_gui/service.py
but its definition has been removed.
ovos_gui/service.py: self.extension_manager.homescreen_manager.set_mycroft_ready(resp)
🔗 Analysis chain
Line range hint
1-93
: Verify Removal ofmycroft_ready
References in CodebaseWith the removal of the
mycroft_ready
attribute and its associated logic, please verify that there are no remaining references tomycroft_ready
in the codebase that might cause errors or unintended behavior.Run the following script to confirm:
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Search for any remaining references to `mycroft_ready` in the codebase. # Test: Find any occurrences of `mycroft_ready` in Python files. rg 'mycroft_ready' --glob '*.py'Length of output: 130
Script:
#!/bin/bash # Description: Find the definition and usage of `set_mycroft_ready` in the codebase. rg 'def set_mycroft_ready' --glob '*.py'Length of output: 42
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
📒 Files selected for processing (2)
- ovos_gui/homescreen.py (1 hunks)
- test/unittests/test_homescreen.py (0 hunks)
💤 Files with no reviewable changes (1)
- test/unittests/test_homescreen.py
🧰 Additional context used
🔇 Additional comments (1)
ovos_gui/homescreen.py (1)
30-30
: Ensuring Immediate Homescreen Display Upon StartupThe addition of
self.show_homescreen()
in therun
method ensures that the homescreen is displayed immediately when theHomescreenManager
thread starts, aligning with the PR objective to display the homescreen without waiting for Mycroft readiness.
dont wait for mycroft.ready message, display homescreen ASAP
dont wait for mycroft.ready message, display homescreen ASAP
dont wait for mycroft.ready message, display homescreen ASAP
Summary by CodeRabbit
New Features
Bug Fixes
Tests