-
-
Notifications
You must be signed in to change notification settings - Fork 18
Fix/duplicate display settings #173
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
Open
ChuckBuilds
wants to merge
12
commits into
main
Choose a base branch
from
fix/duplicate-display-settings
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+427
−28
Open
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
079598b
fix(plugins): Remove compatible_versions requirement from single plug…
5241bbf
fix(7-segment-clock): Update submodule with separator and spacing fixes
6b81873
fix(plugins): Add onchange handlers to existing custom feed inputs
d01c343
Add array-of-objects widget support to web UI
668fadb
Update plugins_manager.js cache-busting version
d7b9c47
Fix: Move array-of-objects detection before file-upload/checkbox checks
a9351f1
Update cache-busting version for array-of-objects fix
7d67495
Remove duplicate array-of-objects check
893436f
Update cache version again
4d7274b
Add array-of-objects widget support to server-side template
6da2059
Use window. prefix for array-of-objects JavaScript functions
b13d680
Fix duplicate display settings in config
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Oops, something went wrong.
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.
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.
🧩 Analysis chain
🏁 Script executed:
Repository: ChuckBuilds/LEDMatrix
Length of output: 4724
Remove
versionanddisplay_modesfrom required_fields only if all dependent code is updated.The
required_fieldshave been reduced to['id', 'name', 'class_name'], removingversionanddisplay_modes. However, these fields are actively used elsewhere:src/plugin_system/state_reconciliation.py:195accessesmanifest.get('version')for plugin state tracking'display_modes' in manifestand access it directly atmanifest['display_modes'][0]Plugins installed without these fields will break test assertions and leave incomplete state records. Either restore these as required fields or update all dependent code to handle their absence gracefully.
🤖 Prompt for AI Agents