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:
tt2468 2022-11-18 02:14:21 -08:00
parent cb6f0b8986
commit 31f9845b61
3 changed files with 8 additions and 16 deletions

View File

@ -28,10 +28,8 @@ body:
- macOS 10.14
- macOS 10.13
- Ubuntu 22.04 LTS
- Ubuntu 21.04
- Ubuntu 20.10
- Ubuntu 20.04 LTS
- Ubuntu 18.04 LTS
- Other
validations:
required: true
@ -49,16 +47,10 @@ body:
label: OBS Studio Version
description: What version of OBS Studio are you using?
options:
- 28.0.0
- 29.0.x
- 28.1.x
- 28.0.x
- 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
- Other
validations:
@ -76,9 +68,9 @@ body:
label: obs-websocket Version
description: What version of obs-websocket are you using?
options:
- 5.1.0
- 5.0.1
- 5.0.0
- 5.0.0-beta1
- Git
validations:
required: true

View File

@ -1,4 +1,4 @@
project(obs-websocket VERSION 5.0.1)
project(obs-websocket VERSION 5.1.0)
set(OBS_WEBSOCKET_RPC_VERSION 1)
option(ENABLE_WEBSOCKET "Enable building OBS with websocket plugin" ON)

View File

@ -1,5 +1,5 @@
# obs-websocket 5.0.1 Protocol
# obs-websocket 5.1.0 Protocol
## Main Table of Contents
@ -146,7 +146,7 @@ Authentication is required
{
"op": 0,
"d": {
"obsWebSocketVersion": "5.0.1",
"obsWebSocketVersion": "5.1.0",
"rpcVersion": 1,
"authentication": {
"challenge": "+IxH4CnCiqpX1rM9scsNynZzbOe4KhDeYcTNS3PDaeY=",
@ -162,7 +162,7 @@ Authentication is not required
{
"op": 0,
"d": {
"obsWebSocketVersion": "5.0.1",
"obsWebSocketVersion": "5.1.0",
"rpcVersion": 1
}
}