docs(travis): Update protocol.md - d4db0bd [skip ci]

This commit is contained in:
Travis CI
2020-03-12 13:55:33 +00:00
parent d4db0bdfe5
commit a8b00b026e
2 changed files with 8 additions and 1 deletions

View File

@ -2913,7 +2913,8 @@
"{double} `version` OBSRemote compatible API version. Fixed to 1.1 for retrocompatibility.",
"{String} `obs-websocket-version` obs-websocket plugin version.",
"{String} `obs-studio-version` OBS Studio program version.",
"{String} `available-requests` List of available request types, formatted as a comma-separated list string (e.g. : \"Method1,Method2,Method3\")."
"{String} `available-requests` List of available request types, formatted as a comma-separated list string (e.g. : \"Method1,Method2,Method3\").",
"{String} `supported-image-export-formats` List of supported formats for features that use image export (like the TakeSourceScreenshot request type) formatted as a comma-separated list string"
],
"api": "requests",
"name": "GetVersion",
@ -2939,6 +2940,11 @@
"type": "String",
"name": "available-requests",
"description": "List of available request types, formatted as a comma-separated list string (e.g. : \"Method1,Method2,Method3\")."
},
{
"type": "String",
"name": "supported-image-export-formats",
"description": "List of supported formats for features that use image export (like the TakeSourceScreenshot request type) formatted as a comma-separated list string"
}
],
"names": [

View File

@ -1182,6 +1182,7 @@ _No specified parameters._
| `obs-websocket-version` | _String_ | obs-websocket plugin version. |
| `obs-studio-version` | _String_ | OBS Studio program version. |
| `available-requests` | _String_ | List of available request types, formatted as a comma-separated list string (e.g. : "Method1,Method2,Method3"). |
| `supported-image-export-formats` | _String_ | List of supported formats for features that use image export (like the TakeSourceScreenshot request type) formatted as a comma-separated list string |
---