Skip to content

Commit

Permalink
update 1.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ylkjick532428 committed Jun 8, 2021
1 parent 7f1cf0f commit 8989291
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 7 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -69,35 +69,35 @@ China CDN ```jssdk.zoomus.cn```
### Include the source

```
<script src="https://source.zoom.us/zoom-meeting-1.9.5.min.js"></script>
<script src="https://source.zoom.us/zoom-meeting-1.9.6.min.js"></script>
```
### or

```
npm install @zoomus/websdk@1.9.5
npm install @zoomus/websdk@1.9.6
```
### zoomus-jssdk move to @zoomus/websdk
```
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.
```
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)]()
Expand Down

0 comments on commit 8989291

Please sign in to comment.