-
Notifications
You must be signed in to change notification settings - Fork 119
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
Remove unnecessary WSR-specific code #643
Remove unnecessary WSR-specific code #643
Conversation
As before, Nexus.history is not registered if running the tests (when real_merger_config=False).
@Danesprite Testing this would WSR and the For instance if I say the command |
Thanks for testing it. WSR behaves weirdly with recognition observers. It's a dragonfly problem which I've neglected to make a GitHub issue for. Will do that tomorrow. I believe this behaviour would also occur with the |
|
Okay I can't reproduce the error I was talking about. Using git blame, I think I solved it a while ago in dictation-toolbox/dragonfly@e7392d2, although I didn't mention it. In any case this is actually a Caster issue. The Caster/castervoice/lib/dfplus/state/stack.py Lines 66 to 67 in c5a524e
This is no longer necessary. There is another problem I've seen though: the |
I've tested removing the offending code. The record from history command works with both WSR and DNS. I've also verified that the |
Can you see if the main pull allows for edit from maintainers? I'm trying to figure out how to submit changes via push pull in git instead of the github UI. |
Well that's good. 'Allow edits from maintainers' is ticked for me. Is your local repository pointed to It's no big deal if you can't get it working; I should be able to fix this in the next few days, it's just that these sort of changes to Caster take a while to test because of Caster's lengthy load time. |
Thanks for explaining because this is kind of a pain point when contributing to anyone's pull request. I feel like I'm missing something obvious however here is the output of my attempts.
I've added your repository as a remote named "Danesprite" as I reserve origin as a reference to my repository.
|
Hmm okay then. I'm not sure why the # Set the remote URL to use HTTPS.
git remote set-url Danesprite https://github.com/Danesprite/caster.git
# Push to Danesprite/remove-wsr-recog-history
git push Danesprite remove-wsr-recog-history
If you use SSH, then you use |
The issue I was having was related to the default push repository and branch. A bit confusing as it was expressly defined in the git command so that shouldn't matter. However I now know the method for making this work at least within Git Extensions. Thanks for all your advice @Danesprite |
Ah, okay then. No worries, I'm glad you got it sorted out 👍 |
This should close #554.
I've also fixed the
recognize_forever()
call in_caster.py
(while loop not required).