-
Notifications
You must be signed in to change notification settings - Fork 2
docs: 2025.x version coverage, ConfigUiValues callbacks, audit fixes (v1.9.0) #37
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "name": "indigo", | ||
| "version": "1.8.0", | ||
| "version": "1.9.0", | ||
| "description": "Indigo home automation development toolkit \u2014 plugin development, API integration, and control page building", | ||
| "repository": "https://github.com/simons-plugins/indigo-claude-plugin" | ||
| } |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -10,8 +10,8 @@ | |||||
| 4. Implement your plugin logic in the appropriate methods | ||||||
|
|
||||||
| Requirements: | ||||||
| - Indigo 2023.2+ (Python 3.10+) | ||||||
| - ServerApiVersion 3.0 in Info.plist | ||||||
| - Indigo 2023.2+ (Python 3.10–3.13; 2025.2 recommended) | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Replace EN DASH with ASCII hyphen in docstring version range. Line 13 uses Suggested fix- - Indigo 2023.2+ (Python 3.10–3.13; 2025.2 recommended)
+ - Indigo 2023.2+ (Python 3.10-3.13; 2025.2 recommended)📝 Committable suggestion
Suggested change
🧰 Tools🪛 Ruff (0.15.12)[warning] 13-13: Docstring contains ambiguous (RUF002) 🤖 Prompt for AI Agents |
||||||
| - ServerApiVersion 3.0 in Info.plist (declares minimum API; works on all 2023.2+) | ||||||
| """ | ||||||
|
|
||||||
| import indigo | ||||||
|
|
||||||
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.
Add language identifiers to the new fenced code blocks.
The new error-output fences in this section omit language tags, which triggers
MD040.Suggested fix
...
-
+textTypeError: connect() got unexpected keyword argument 'extra_headers'
...
-
+textMatplotlibDeprecationWarning: plot_date was deprecated in 3.9 and will be removed in 3.11. Use plot() instead.
🧰 Tools
🪛 markdownlint-cli2 (0.22.1)
[warning] 352-352: Fenced code blocks should have a language specified
(MD040, fenced-code-language)
[warning] 360-360: Fenced code blocks should have a language specified
(MD040, fenced-code-language)
[warning] 368-368: Fenced code blocks should have a language specified
(MD040, fenced-code-language)
[warning] 376-376: Fenced code blocks should have a language specified
(MD040, fenced-code-language)
🤖 Prompt for AI Agents