From 0442b7a81bbd839ace038c34fa851d5e26cc0fe3 Mon Sep 17 00:00:00 2001 From: 2547techno <109011672+2547techno@users.noreply.github.com> Date: Fri, 5 Jul 2024 19:25:39 -0400 Subject: [PATCH] Add `Network` to plugin info schema (#5492) --- CHANGELOG.md | 2 +- docs/plugin-info.schema.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa05a4478..0e902bab6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,7 @@ - Minor: Added drop indicator line while dragging in tables. (#5256) - Minor: Add channel points indication for new bits power-up redemptions. (#5471) - Minor: Added `/warn ` 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: 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) diff --git a/docs/plugin-info.schema.json b/docs/plugin-info.schema.json index 464201002..07c1a29f9 100644 --- a/docs/plugin-info.schema.json +++ b/docs/plugin-info.schema.json @@ -51,7 +51,7 @@ "type": "object", "properties": { "type": { - "enum": ["FilesystemRead", "FilesystemWrite"] + "enum": ["FilesystemRead", "FilesystemWrite", "Network"] } } }