v5.0.0 #290
t2t2
announced in
Announcements
v5.0.0
#290
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
v5 is made for obs-websocket versions 5.x that uses a completely new protocol and isn't backwards compatible with 4.x. If you're planning to build something for 4.x, consider upgrading (as all releases for future obs versions will be based on v5) or use the latest/last v4 version.
Breaking changes
async connect(args = {})
has been changed toasync connect(address = 'ws://localhost:4444', password?: string, options?: IdentifyMessageFields)
send(type, data)
has been replaced withcall(type, data)
, aligning with simpleobswssend
calls anyway to match the new request namessendCallback
has been removed, use the promise chain if you want to keep callback syntax (.send(...).then((res) => { ... }, (error) => { ... })
)This discussion was created from the release v5.0.0.
Beta Was this translation helpful? Give feedback.
All reactions