Published October 24, 2023
Added
-
New parameter
meetingId
to improve meeting transfer feature.- New parameter in struct
InMeetingDeviceInfo
.struct InMeetingDeviceInfo { ... const zchar_t* meetingId;///<meeting id ... };
- New parameter in struct
-
New enum value for enum type
AuthResult
.enum AuthResult { ... AUTHRET_LIMIT_EXCEEDED_EXCEPTION, ... };
-
New interface to check whether the desktop screen sharing is disabled.
- New interface in class
MeetingShareController
.class IMeetingShareController { ... virtual bool IsDesktopSharingEnabled() = 0; ... };
- New interface in class
-
New interfaces to support smart summary.
-
New class
ISmartSummaryPrivilegeHandler
.virtual SDKError Accept() = 0; virtual SDKError Decline() = 0; virtual SDKError Ignore() = 0;
-
New class
IMeetingSmartSummaryControllerEvent
virtual void onSmartSummaryStatusChange(bool isStarted) = 0; virtual void onSmartSummaryPrivilegeRequested(unsigned int senderId, ISmartSummaryPrivilegeHandler* handler) = 0; virtual void onSmartSummaryStartReqResponse(bool timeout, bool decline) = 0; virtual void onEnableSmartSummary() = 0;
-
New class
IMeetingSmartSummaryController
.virtual void SetEvent(IMeetingSmartSummaryControllerEvent* event) = 0; virtual bool IsSmartSummarySupported() = 0; virtual bool IsSmartSummaryEnabled() = 0; virtual SDKError CanEnableSmartSummaryFeature() = 0; virtual SDKError EnableSmartSummaryFeature() = 0; virtual SDKError CanStartSmartSummary() = 0; virtual SDKError StartSmartSummary() = 0; virtual SDKError StopSmartSummary() = 0; virtual bool IsSmartSummaryStarted() = 0; virtual SDKError CanRequestEnableSmartSummaryFeature() = 0; virtual SDKError RequestEnableSmartSummaryFeature() = 0; virtual SDKError CanRequestStartSmartSummary() = 0; virtual SDKError RequestStartSmartSummary() = 0;
-
New interface in
IMeetingService
.virtual IMeetingSmartSummaryController* GetMeetingSmartSummaryController() = 0;
-
New value in enum
MeetingReminderType
.enum MeetingReminderType { ... TYPE_ENABLE_SMART_SUMMARY_REMINDER, ... };
-
Fixed
- Fixed an issue where the raised hand does not appear in the customized user interface.
- Fix an issue that gets the wrong user ID when the screen-sharing user changes.
- Fix an issue where if a user accepts the meeting invitation and then immediately leaves the meeting, when inviting that specific user again, the other attendees may not receive a callback.
- Fix an issue where the user is unable to share raw data when another screen sharing is active.