Skip to content

Commit

Permalink
update 1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ylkjick532428 committed Aug 24, 2020
1 parent 98d479f commit b8c179f
Show file tree
Hide file tree
Showing 11 changed files with 59 additions and 37 deletions.
20 changes: 10 additions & 10 deletions CDN/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<head>
<title>Zoom WebSDK</title>
<meta charset="utf-8" />
<link type="text/css" rel="stylesheet" href="https://source.zoom.us/1.7.10/css/bootstrap.css" />
<link type="text/css" rel="stylesheet" href="https://source.zoom.us/1.7.10/css/react-select.css" />
<link type="text/css" rel="stylesheet" href="https://source.zoom.us/1.8.0/css/bootstrap.css" />
<link type="text/css" rel="stylesheet" href="https://source.zoom.us/1.8.0/css/react-select.css" />
<meta name="format-detection" content="telephone=no">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">

Expand Down Expand Up @@ -62,7 +62,7 @@
<div id="navbar" class="websdktest">
<form class="navbar-form navbar-right" id="meeting_form">
<div class="form-group">
<input type="text" name="display_name" id="display_name" value="1.7.10#CDN" maxLength="100"
<input type="text" name="display_name" id="display_name" value="1.8.0#CDN" maxLength="100"
placeholder="Name" class="form-control" required>
</div>
<div class="form-group">
Expand Down Expand Up @@ -140,14 +140,14 @@
})
</script>

<script src="https://source.zoom.us/1.7.10/lib/vendor/react.min.js"></script>
<script src="https://source.zoom.us/1.7.10/lib/vendor/react-dom.min.js"></script>
<script src="https://source.zoom.us/1.7.10/lib/vendor/redux.min.js"></script>
<script src="https://source.zoom.us/1.7.10/lib/vendor/redux-thunk.min.js"></script>
<script src="https://source.zoom.us/1.7.10/lib/vendor/jquery.min.js"></script>
<script src="https://source.zoom.us/1.7.10/lib/vendor/lodash.min.js"></script>
<script src="https://source.zoom.us/1.8.0/lib/vendor/react.min.js"></script>
<script src="https://source.zoom.us/1.8.0/lib/vendor/react-dom.min.js"></script>
<script src="https://source.zoom.us/1.8.0/lib/vendor/redux.min.js"></script>
<script src="https://source.zoom.us/1.8.0/lib/vendor/redux-thunk.min.js"></script>
<script src="https://source.zoom.us/1.8.0/lib/vendor/jquery.min.js"></script>
<script src="https://source.zoom.us/1.8.0/lib/vendor/lodash.min.js"></script>

<script src="https://source.zoom.us/zoom-meeting-1.7.10.min.js"></script>
<script src="https://source.zoom.us/zoom-meeting-1.8.0.min.js"></script>
<script src="js/tool.js"></script>
<script src="js/vconsole.min.js"></script>
<script src="js/index.js"></script>
Expand Down
4 changes: 2 additions & 2 deletions CDN/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
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.7.10/lib', '/av'); // CDN version default
// else ZoomMtg.setZoomJSLib('https://jssdk.zoomus.cn/1.7.10/lib', '/av'); // china cdn option
// if (!china) ZoomMtg.setZoomJSLib('https://source.zoom.us/1.8.0/lib', '/av'); // CDN version default
// else ZoomMtg.setZoomJSLib('https://jssdk.zoomus.cn/1.8.0/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();

Expand Down
4 changes: 2 additions & 2 deletions CDN/js/meeting.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@
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/1.7.10/lib", "/av"); // CDN version defaul
// ZoomMtg.setZoomJSLib("https://source.zoom.us/1.8.0/lib", "/av"); // CDN version defaul
if (meetingConfig.china)
ZoomMtg.setZoomJSLib("https://jssdk.zoomus.cn/1.7.10/lib", "/av"); // china cdn option
ZoomMtg.setZoomJSLib("https://jssdk.zoomus.cn/1.8.0/lib", "/av"); // china cdn option
ZoomMtg.preLoadWasm();
ZoomMtg.prepareJssdk();
function beginJoin(signature) {
Expand Down
2 changes: 0 additions & 2 deletions CDN/js/zoom-meeting-1.7.9.1.min.js

This file was deleted.

18 changes: 9 additions & 9 deletions CDN/meeting.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@
<head>
<title>Zoom WebSDK</title>
<meta charset="utf-8" />
<link type="text/css" rel="stylesheet" href="https://source.zoom.us/1.7.10/css/bootstrap.css" />
<link type="text/css" rel="stylesheet" href="https://source.zoom.us/1.7.10/css/react-select.css" />
<link type="text/css" rel="stylesheet" href="https://source.zoom.us/1.8.0/css/bootstrap.css" />
<link type="text/css" rel="stylesheet" href="https://source.zoom.us/1.8.0/css/react-select.css" />
<meta name="format-detection" content="telephone=no">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
</head>

<body>
<script src="https://source.zoom.us/1.7.10/lib/vendor/react.min.js"></script>
<script src="https://source.zoom.us/1.7.10/lib/vendor/react-dom.min.js"></script>
<script src="https://source.zoom.us/1.7.10/lib/vendor/redux.min.js"></script>
<script src="https://source.zoom.us/1.7.10/lib/vendor/redux-thunk.min.js"></script>
<script src="https://source.zoom.us/1.7.10/lib/vendor/jquery.min.js"></script>
<script src="https://source.zoom.us/1.7.10/lib/vendor/lodash.min.js"></script>
<script src="https://source.zoom.us/zoom-meeting-1.7.10.min.js"></script>
<script src="https://source.zoom.us/1.8.0/lib/vendor/react.min.js"></script>
<script src="https://source.zoom.us/1.8.0/lib/vendor/react-dom.min.js"></script>
<script src="https://source.zoom.us/1.8.0/lib/vendor/redux.min.js"></script>
<script src="https://source.zoom.us/1.8.0/lib/vendor/redux-thunk.min.js"></script>
<script src="https://source.zoom.us/1.8.0/lib/vendor/jquery.min.js"></script>
<script src="https://source.zoom.us/1.8.0/lib/vendor/lodash.min.js"></script>
<script src="https://source.zoom.us/zoom-meeting-1.8.0.min.js"></script>
<script src="js/tool.js"></script>
<script src="js/vconsole.min.js"></script>
<script src="js/meeting.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion CDN/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "websdk-cdn",
"version": "1.7.10",
"version": "1.8.0",
"description": "Zoom sample app for web client WebSDK",
"main": "index.js",
"dependencies": {},
Expand Down
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,28 @@
# CHANGELOG
## version 1.8.0
## Add
1. Webinar Panelist/Host support
2. Webinar promote/depromote
3. Multi participant sharing
4. Search box for attendee list
5. meeting/webinar co-host
6. Registration Webinar
7. Webinar attendee Allow to talk
8. Merge attendee's phone call and video
9. Start Webinar(role=1, require host/alternative email), other email try to start will show "Not allow to start webinar from web."
10. inMeetingServiceListener API
12. Support Play Chime for Enter/Exit and Chat Message/Raise Hand
13. ajax call use axios(dependence)

## Bug Fixes
1. Reconnecting uses a different participant id
2. Black screen when Web SDK user is spotlighted

## Enhancements
1. fix with noise
2. Simd support import performance(https://developers.chrome.com/origintrials/#/trials/active)
3. Waiting room notice(sound and browser notice)

## version 1.7.10
## Bug Fixes
1. Fixed random video black screen in meeting.
Expand Down
2 changes: 1 addition & 1 deletion Local/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<div id="navbar" class="websdktest">
<form class="navbar-form navbar-right" id="meeting_form">
<div class="form-group">
<input type="text" name="display_name" id="display_name" value="1.7.10#Local" maxLength="100"
<input type="text" name="display_name" id="display_name" value="1.8.0#Local" maxLength="100"
placeholder="Name" class="form-control" required>
</div>
<div class="form-group">
Expand Down
4 changes: 2 additions & 2 deletions Local/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ 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.7.10/lib', '/av'); // CDN version default
// else ZoomMtg.setZoomJSLib('https://jssdk.zoomus.cn/1.7.10/lib', '/av'); // china cdn option
// if (!china) ZoomMtg.setZoomJSLib('https://source.zoom.us/1.8.0/lib', '/av'); // CDN version default
// else ZoomMtg.setZoomJSLib('https://jssdk.zoomus.cn/1.8.0/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();
Expand Down
4 changes: 2 additions & 2 deletions Local/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "http://json.schemastore.org/coffeelint",
"name": "websdk-local",
"version": "1.7.10",
"version": "1.8.0",
"description": "Zoom sample app for web client WebSDK",
"main": "index.js",
"scripts": {
Expand All @@ -19,7 +19,7 @@
"author": "Jack Yang",
"license": "ISC",
"dependencies": {
"@zoomus/websdk": "^1.7.10",
"@zoomus/websdk": "^1.8.0",
"jquery": "^3.4.1",
"lodash": "^4.17.14",
"react": "16.8.6",
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,35 +38,35 @@ China CDN ```jssdk.zoomus.cn```
### Include the source

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

```
npm install @zoomus/websdk@1.7.10
npm install @zoomus/websdk@1.8.0
```
### zoomus-jssdk move to @zoomus/websdk
```
import { ZoomMtg } from 'zoomus-jssdk';
change to
import { ZoomMtg } from '@zoomus/websdk';
```
Please notice, 1.7.10 release with two ways, the normal way and npm way(need babel and webpack).
Please notice, 1.8.0 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.7.10/lib', '/av'); // CDN version default
// else ZoomMtg.setZoomJSLib('https://jssdk.zoomus.cn/1.7.10/lib', '/av'); // china cdn option
// if (!china) ZoomMtg.setZoomJSLib('https://source.zoom.us/1.8.0/lib', '/av'); // CDN version default
// else ZoomMtg.setZoomJSLib('https://jssdk.zoomus.cn/1.8.0/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.7.10
Go to see sample web app (CDN version) how to update 1.8.0


[![sample](https://zoom.github.io/sample-app-web/img/participent-joined-meeting.png)]()
Expand Down

0 comments on commit b8c179f

Please sign in to comment.