Published August 23, 2023
Added
-
Added support to the AV1 video stream.
-
New added a new meeting error code.
-
New meeting error code in the enum
MeetingFailCode
.MEETING_FAIL_UNABLE_TO_JOIN_EXTERNAL_MEETING = 63
-
New added a new value into the enum
RemoteControlStatus
. -
New enum value in
RemoteControlStatus
.Remote_Control_Who_Can_Control_Me
-
New added interface to support showing Zoom push notification service detailed status.
- New enum
SDKNotificationServiceError
.
typedef enum { SDK_Notification_Service_Error_Success = 0, SDK_Notification_Service_Error_Unknown, SDK_Notification_Service_Error_Internal_Error, SDK_Notification_Service_Error_Invalid_Token, SDK_Notification_Service_Error_Multi_Connect, SDK_Notification_Service_Error_Network_Issue, SDK_Notification_Service_Error_Max_Duration, }SDKNotificationServiceError;
- New callback in
IAuthServiceEvent
.
virtual void onNotificationServiceStatus(SDKNotificationServiceStatus status, SDKNotificationServiceError error) = 0;
- New enum
-
New added enum value in the enum
MeetingReminderType
to support displaying the ZOOM IQ summary disclaimer in the customized user interface.- New enum value in
MeetingReminderType
.
TYPE_SMART_SUMMARY_DISCLAIMER
- New enum value in
Changed
- Removed useless enum
OSSessionType
inmeeting_service_interface.h
.
Fixed
- Fixed an issue where the value of IsRemoteControlAllApplicationsEnabled in the user setting might have been incorrect.
- Fixed an issue where cleaning up SDK after direct share caused the app to crash.
- Fixed an issue where SDK could not receive breakout-room-related callbacks when entering the breakout room for the second time.
- Fixed an issue where the
InputMeetingPasswordAndScreenName
function didn't return the correct value. - Fix an issue where the breakout room wouldn't be closed after the host suspended the meeting when the meeting share setting was locked.
- Fixed an issue where the
OnStartViewPureComputerAudio()
callback wouldn't be triggered when sharing pure computer audio. - Fixed an issue where the
onUserJoin
callback would be received more than once when an attendee joined the meeting. - Fixed an issue where the Zoom push notification service returned
SDKPresenceStatus_None
, when the expected return value should beSDKPresenceStatus_UnAvailable
.