Released: 2026-03-25 Updated: 2026-03-27
Summary: Breaking changes - the Meeting SDK for Linux only supports Ubuntu 20 and later as of version 7.0.0, change SetBOOption to return an error when called before a breakout room is created, make OnStartSendShare asynchronous; add support for selecting virtual background in meeting preview.
Breaking changes
-
Starting from version 7.0.0, the Linux SDK only supports Ubuntu 20 (u20) and later.
-
Change the behavior for the function
SetBOOptionso that when it is called before a breakout room is created, the function returns an error.-
Change the return type of function
SetBOOptionfrombooltoSDKError.virtual SDKError SetBOOption(const BOOption& option) = 0; -
New error code.
enum SDKError { // .................................................... /** Returned when attempting to set breakout room options before any breakout room has been created.*/ SDKERR_BREAKOUT_ROOM_NOT_CREATED // ..................................................... };
-
-
Adapt the Zoom client change to make the callback
OnStartSendShareasynchronous.
Added
-
Add support for selecting virtual background in pre-meeting preview.
-
New enum value in
RequiredInfoType.enum RequiredInfoType { // ... REQUIRED_INFO_TYPE_AVPreview, }; -
New interface in class
IMeetingPasswordAndScreenNameHandler.class IMeetingPasswordAndScreenNameHandler { // ... virtual SDKError ConfirmPreview(const zchar_t* screenName, bool videoOn, bool audioOn) = 0; };
-