Add Network to plugin info schema (#5492)

This commit is contained in:
2547techno 2024-07-05 19:25:39 -04:00 committed by GitHub
parent 7bfb5ac0a4
commit 0442b7a81b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@
- Minor: Added drop indicator line while dragging in tables. (#5256) - Minor: Added drop indicator line while dragging in tables. (#5256)
- Minor: Add channel points indication for new bits power-up redemptions. (#5471) - Minor: Add channel points indication for new bits power-up redemptions. (#5471)
- Minor: Added `/warn <username> <reason>` command for mods. This prevents the user from chatting until they acknowledge the warning. (#5474) - Minor: Added `/warn <username> <reason>` command for mods. This prevents the user from chatting until they acknowledge the warning. (#5474)
- Minor: Introduce HTTP API for plugins. (#5383) - Minor: Introduce HTTP API for plugins. (#5383, #5492)
- Bugfix: Fixed tab move animation occasionally failing to start after closing a tab. (#5426) - Bugfix: Fixed tab move animation occasionally failing to start after closing a tab. (#5426)
- Bugfix: If a network request errors with 200 OK, Qt's error code is now reported instead of the HTTP status. (#5378) - Bugfix: If a network request errors with 200 OK, Qt's error code is now reported instead of the HTTP status. (#5378)
- Bugfix: Fixed restricted users usernames not being clickable. (#5405) - Bugfix: Fixed restricted users usernames not being clickable. (#5405)

View file

@ -51,7 +51,7 @@
"type": "object", "type": "object",
"properties": { "properties": {
"type": { "type": {
"enum": ["FilesystemRead", "FilesystemWrite"] "enum": ["FilesystemRead", "FilesystemWrite", "Network"]
} }
} }
} }