diff --git a/CHANGELOG.md b/CHANGELOG.md index 076bfcd52..adcce7fb5 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,19 @@ # CHANGELOG +## version 1.9.6 +## Added +1. Active Apps Notifier. + +When someone in a meeting or webinar is utilizing any app that has access to real-time content or personal information during a meeting, participants are given real-time notice of usage. Details of which apps have access and which participant is using the app are displayed. Clicking the app opens the Marketplace page to provide more information. + +Note: This feature is dependent on a web release scheduled for June 16, 2021, and will not work until then. + +## Enhanced +1. Panelists can join webinars by entering the tk token value in a dialog box + +## Fixed +1. Removed the assistant Breakout Room button +2. Support for attendees joining via new registration flow, where attendees are required to verify their email via correct tk + ## version 1.9.5 ## Added 1. Support language interpretation for participants. diff --git a/README.md b/README.md index f6dd8b054..372a59e68 100755 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Use of this SDK is subject to our [Terms of Use](https://zoom.us/docs/en-us/zoom ## Please note on Jul 20, Chrome 92 will release. Start from chrome92, [SharedArrayBuffer](https://web.dev/coop-coep/) only work for cross-origin isolation. it make WebSDK broken if you don't do any thing when user use Chrome 91. 1. Apply `SharedArrayBuffers` [origintrials](https://developer.chrome.com/origintrials/#/trials/active) for you domain, it works until Chrome 94 release. -2. Seting you WebSDK/VideoSDK web isolation and update to >= 1.9.5. +2. Seting you WebSDK/VideoSDK web isolation and update to >= 1.9.6. Zoom offers a web based HTML5 client that is used in environments where the end users cannot download zoom desktop clients due to internal IT restrictions or in very low bandwidth environments. @@ -69,12 +69,12 @@ China CDN ```jssdk.zoomus.cn``` ### Include the source ``` - + ``` ### or ``` -npm install @zoomus/websdk@1.9.5 +npm install @zoomus/websdk@1.9.6 ``` ### zoomus-jssdk move to @zoomus/websdk ``` @@ -82,7 +82,7 @@ import { ZoomMtg } from 'zoomus-jssdk'; change to import { ZoomMtg } from '@zoomus/websdk'; ``` -Please notice, 1.9.5 release with two ways, the normal way and npm way(need babel and webpack). +Please notice, 1.9.6 release with two ways, the normal way and npm way(need babel and webpack). At first, you invoke those three API to init jssdk. ``` @@ -90,14 +90,14 @@ console.log('checkSystemRequirements'); 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/1.9.5/lib', '/av'); // CDN version default -// else ZoomMtg.setZoomJSLib('https://jssdk.zoomus.cn/1.9.5/lib', '/av'); // china cdn option +// if (!china) ZoomMtg.setZoomJSLib('https://source.zoom.us/1.9.6/lib', '/av'); // CDN version default +// else ZoomMtg.setZoomJSLib('https://jssdk.zoomus.cn/1.9.6/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(); ZoomMtg.prepareJssdk(); ``` -Go to see sample web app (CDN version) how to update 1.9.5 +Go to see sample web app (CDN version) how to update 1.9.6 [![sample](https://zoom.github.io/sample-app-web/img/participent-joined-meeting.png)]()