@@ -138,12 +138,12 @@
})
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/CDN/js/index.js b/CDN/js/index.js
index 004f5a67..52730208 100755
--- a/CDN/js/index.js
+++ b/CDN/js/index.js
@@ -12,8 +12,8 @@ function websdkready() {
console.log(JSON.stringify(ZoomMtg.checkSystemRequirements()));
// it's option if you want to change the WebSDK dependency link resources. setZoomJSLib must be run at first
- // if (!china) ZoomMtg.setZoomJSLib('https://source.zoom.us/2.9.5/lib', '/av'); // CDN version default
- // else ZoomMtg.setZoomJSLib('https://jssdk.zoomus.cn/2.9.5/lib', '/av'); // china cdn option
+ // if (!china) ZoomMtg.setZoomJSLib('https://source.zoom.us/2.9.7/lib', '/av'); // CDN version default
+ // else ZoomMtg.setZoomJSLib('https://jssdk.zoomus.cn/2.9.7/lib', '/av'); // china cdn option
// ZoomMtg.setZoomJSLib('http://localhost:9999/node_modules/@zoomus/websdk/dist/lib', '/av'); // Local version default, Angular Project change to use cdn version
ZoomMtg.preLoadWasm(); // pre download wasm file to save time.
diff --git a/CDN/js/meeting.js b/CDN/js/meeting.js
index ed5f6154..48d84953 100644
--- a/CDN/js/meeting.js
+++ b/CDN/js/meeting.js
@@ -49,9 +49,9 @@ function websdkready() {
console.log(JSON.stringify(ZoomMtg.checkSystemRequirements()));
// it's option if you want to change the WebSDK dependency link resources. setZoomJSLib must be run at first
- // ZoomMtg.setZoomJSLib("https://source.zoom.us/2.9.5/lib", "/av"); // CDN version defaul
+ // ZoomMtg.setZoomJSLib("https://source.zoom.us/2.9.7/lib", "/av"); // CDN version defaul
if (meetingConfig.china)
- ZoomMtg.setZoomJSLib("https://jssdk.zoomus.cn/2.9.5/lib", "/av"); // china cdn option
+ ZoomMtg.setZoomJSLib("https://jssdk.zoomus.cn/2.9.7/lib", "/av"); // china cdn option
ZoomMtg.preLoadWasm();
ZoomMtg.prepareJssdk();
function beginJoin(signature) {
diff --git a/CDN/meeting.html b/CDN/meeting.html
index 6246a52b..a3817460 100644
--- a/CDN/meeting.html
+++ b/CDN/meeting.html
@@ -3,20 +3,20 @@
Zoom WebSDK
-
-
+
+
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/CDN/package.json b/CDN/package.json
index 63445d4f..3878a90e 100755
--- a/CDN/package.json
+++ b/CDN/package.json
@@ -1,6 +1,6 @@
{
"name": "websdk-cdn",
- "version": "2.9.5",
+ "version": "2.9.7",
"description": "Zoom sample app for web client WebSDK",
"main": "index.js",
"scripts": {
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fa11e93b..801b5750 100755
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,39 @@
# CHANGELOG
+## version 2.9.7
+## General
+### Added
+1. APIs for host and co-host status management. See API reference for details.
+1. “Camera not connected” icon for when the user does not have a camera connected.
+1. Support for recording with Zoom IQ.
+
+## Client View
+### Added
+1. “Optimize for Video Clip” feature, which shares video with higher frames per second (fps).
+1. Network quality indication to active speaker view.
+
+### Fixed
+1. An issue where attendees could submit a poll without adding responses, resulting in a polling error.
+1. Participants not having “Collapse All“ and “Expand All” options when self-selecting a Breakout Room.
+1. Users not being taken correctly to the post-meeting survey URL.
+1. Inability to properly scroll up on the caption language-selection menu when the screen was too small.
+1. Video being displayed in unintentional ways when switching to focus mode.
+1. Participants’ view not reverting to their previous view mode when spotlight is removed.
+1. Webinar attendees being unable to hear audio on mobile browsers in certain cases.
+1. ‘disableJoinAudio’ argument in ‘init()’ function not being properly read.
+
+## Component view
+### Added
+1. API to destroy the Component View client to allow re-creation from scratch.
+1. Event listener API for listening to screen share-related events.
+1. Event listener API for listening to Participant-related events.
+
+### Enhanced
+1. Toolbar to show more icons when in Gallery View.
+1. Chat privilege dropdown menu with a clarifying header.
+
+### Fixed
+1. Incorrect “Email is Blocked by Administrator” errors when joining a meeting or webinar requiring registration in certain cases.
+
## version 2.9.5
## Client View
### Added
@@ -30,7 +65,6 @@
1. Caption, transcription, and translation support.
1. `caption-message`, `recording-change`, and `local-recording-change` events callbacks.
-
## version 2.9.0
## General
### Added
diff --git a/Components/package.json b/Components/package.json
index d7cf5bce..7691a208 100644
--- a/Components/package.json
+++ b/Components/package.json
@@ -1,13 +1,13 @@
{
"name": "websdk-component-demo",
- "version": "2.9.5",
+ "version": "2.9.7",
"private": true,
"dependencies": {
"@ant-design/icons": "^4.6.2",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.8.3",
- "@zoomus/websdk": "2.9.5",
+ "@zoomus/websdk": "2.9.7",
"antd": "^4.14.1",
"classnames": "^2.2.6",
"crypto-js": "^4.0.0",
diff --git a/Components/public/cdn.html b/Components/public/cdn.html
index 4410cee4..5523d232 100644
--- a/Components/public/cdn.html
+++ b/Components/public/cdn.html
@@ -5,9 +5,9 @@
WebSDK Embedded CDN demo
-
-
-
+
+
+
diff --git a/Components/public/nav.html b/Components/public/nav.html
index ef742386..1736e110 100644
--- a/Components/public/nav.html
+++ b/Components/public/nav.html
@@ -3,8 +3,8 @@
Zoom WebSDK Embedded Demo Nav
-
-
+
+
@@ -66,7 +66,7 @@