base: Update version to 5.0.1

This commit is contained in:
tt2468 2022-07-25 08:30:34 -07:00
parent e0d322d4cc
commit 1902d7e1a3
3 changed files with 7 additions and 8 deletions

View File

@ -49,6 +49,7 @@ 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
- 27.2.4 - 27.2.4
- 27.2.3 - 27.2.3
- 27.2.2 - 27.2.2
@ -75,11 +76,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.0.1
- 5.0.0
- 5.0.0-beta1 - 5.0.0-beta1
- 5.0.0-alpha3
- 5.0.0-alpha2
- 4.9.1
- 4.9.0
- Git - Git
validations: validations:
required: true required: true

View File

@ -1,4 +1,4 @@
project(obs-websocket VERSION 5.0.0) project(obs-websocket VERSION 5.0.1)
set(OBS_WEBSOCKET_RPC_VERSION 1) set(OBS_WEBSOCKET_RPC_VERSION 1)
if(NOT ENABLE_UI) if(NOT ENABLE_UI)

View File

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