Add module state switching to the Module Registry - #373
Closed
moewhite19 wants to merge 8 commits into
Closed
moewhite19 wants to merge 8 commits into
moewhite19 wants to merge 8 commits into
Conversation
- Each installed module can be enabled/disabled as a whole in the Module Registry - Independent Eye Tracking / Facial Tracking sub-toggles per module - Sub-toggles are gated by the module's main enable toggle - Disabled modules are skipped on load; changes take effect after restart - Show a 'Disabled' badge for disabled modules in the module list - Refresh toggle state immediately after a module install
- ModuleEnabledState enum: Enabled / Disabled / EyesOnly / FaceOnly (byte) - Module Registry: single 'Module State' selector instead of 3 independent toggles - Disabled modules are skipped on load; EyesOnly/FaceOnly gate which slot a module may claim - Module list shows the localized state badge (incl. Enabled) instead of '(Installed)' - Badge shows '(old -> new)' while a state change is pending a restart - List badge updates live via INotifyPropertyChanged after toggling
…ext from the enum name
moewhite19
force-pushed
the
mod
branch
3 times, most recently
from
September 6, 2026 08:48
f0e9510 to
ca18a3c
Compare
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.
Adds a per-module state selector to the Module Registry so tracking modules can be mixed or switched without uninstalling.
Each installed module can be set to one of:
Disabled modules are skipped on load; Eyes Only / Face Only restrict which tracking slot a module may claim. The module list shows the current state and marks pending changes until the app is restarted.