mirror of
https://github.com/Palakis/obs-websocket.git
synced 2024-08-30 18:12:16 +00:00
base: Update version to 5.1.0
- Renamed the tools menu button title to `WebSocket Server Settings` - WebSocket session disconnects are now logged with the close code and reason - Fixed a few UI formatting issues - Fixed the `ObsOutputState` enum not being shown in protocol.md - Implemented new reconnect output states to the stream output - `OBS_WEBSOCKET_OUTPUT_RECONNECTING` - `OBS_WEBSOCKET_OUTPUT_RECONNECTED` - Added the `ScreenshotSaved` event for the screenshot hotkey - Fixed a bug where `GetLastReplayBufferFileName` could return an empty string - Documented `CustomEvent` - Various other documentation fixes - Added the following new software and libraries to the README: - Macro Deck - Bitfocus Companion - Kruiz Control - Aitum - OBS Blade - Deckboard - Streamer.bot - OBS-web - obws (Rust) - goobs - obsws-python
This commit is contained in:
16
.github/ISSUE_TEMPLATE/bug_report.yaml
vendored
16
.github/ISSUE_TEMPLATE/bug_report.yaml
vendored
@ -28,10 +28,8 @@ body:
|
|||||||
- macOS 10.14
|
- macOS 10.14
|
||||||
- macOS 10.13
|
- macOS 10.13
|
||||||
- Ubuntu 22.04 LTS
|
- Ubuntu 22.04 LTS
|
||||||
- Ubuntu 21.04
|
|
||||||
- Ubuntu 20.10
|
- Ubuntu 20.10
|
||||||
- Ubuntu 20.04 LTS
|
- Ubuntu 20.04 LTS
|
||||||
- Ubuntu 18.04 LTS
|
|
||||||
- Other
|
- Other
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
@ -49,16 +47,10 @@ body:
|
|||||||
label: OBS Studio Version
|
label: OBS Studio Version
|
||||||
description: What version of OBS Studio are you using?
|
description: What version of OBS Studio are you using?
|
||||||
options:
|
options:
|
||||||
- 28.0.0
|
- 29.0.x
|
||||||
|
- 28.1.x
|
||||||
|
- 28.0.x
|
||||||
- 27.2.4
|
- 27.2.4
|
||||||
- 27.2.3
|
|
||||||
- 27.2.2
|
|
||||||
- 27.2.1
|
|
||||||
- 27.2.0
|
|
||||||
- 27.1.3
|
|
||||||
- 27.1.1
|
|
||||||
- 27.1.0
|
|
||||||
- 27.0.1
|
|
||||||
- Git
|
- Git
|
||||||
- Other
|
- Other
|
||||||
validations:
|
validations:
|
||||||
@ -76,9 +68,9 @@ body:
|
|||||||
label: obs-websocket Version
|
label: obs-websocket Version
|
||||||
description: What version of obs-websocket are you using?
|
description: What version of obs-websocket are you using?
|
||||||
options:
|
options:
|
||||||
|
- 5.1.0
|
||||||
- 5.0.1
|
- 5.0.1
|
||||||
- 5.0.0
|
- 5.0.0
|
||||||
- 5.0.0-beta1
|
|
||||||
- Git
|
- Git
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
project(obs-websocket VERSION 5.0.1)
|
project(obs-websocket VERSION 5.1.0)
|
||||||
set(OBS_WEBSOCKET_RPC_VERSION 1)
|
set(OBS_WEBSOCKET_RPC_VERSION 1)
|
||||||
|
|
||||||
option(ENABLE_WEBSOCKET "Enable building OBS with websocket plugin" ON)
|
option(ENABLE_WEBSOCKET "Enable building OBS with websocket plugin" ON)
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
# obs-websocket 5.0.1 Protocol
|
# obs-websocket 5.1.0 Protocol
|
||||||
|
|
||||||
## Main Table of Contents
|
## Main Table of Contents
|
||||||
|
|
||||||
@ -146,7 +146,7 @@ Authentication is required
|
|||||||
{
|
{
|
||||||
"op": 0,
|
"op": 0,
|
||||||
"d": {
|
"d": {
|
||||||
"obsWebSocketVersion": "5.0.1",
|
"obsWebSocketVersion": "5.1.0",
|
||||||
"rpcVersion": 1,
|
"rpcVersion": 1,
|
||||||
"authentication": {
|
"authentication": {
|
||||||
"challenge": "+IxH4CnCiqpX1rM9scsNynZzbOe4KhDeYcTNS3PDaeY=",
|
"challenge": "+IxH4CnCiqpX1rM9scsNynZzbOe4KhDeYcTNS3PDaeY=",
|
||||||
@ -162,7 +162,7 @@ Authentication is not required
|
|||||||
{
|
{
|
||||||
"op": 0,
|
"op": 0,
|
||||||
"d": {
|
"d": {
|
||||||
"obsWebSocketVersion": "5.0.1",
|
"obsWebSocketVersion": "5.1.0",
|
||||||
"rpcVersion": 1
|
"rpcVersion": 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user