|
6 | 6 |
|
7 | 7 | # Getting Started |
8 | 8 |
|
9 | | -[Bower](http://bower.io) package for [SendBird.com](https://sendbird.com) JavaScript SDK |
| 9 | +[bower](http://bower.io) package for [SendBird](https://sendbird.com) JavaScript SDK |
10 | 10 |
|
11 | 11 | bower install sendbird |
12 | 12 |
|
13 | | -[npm](https://www.npmjs.com/package/sendbird) module for [SendBird.com](https://sendbird.com) JavaScript SDK |
| 13 | +[npm](https://www.npmjs.com/package/sendbird) module for [SendBird](https://sendbird.com) JavaScript SDK |
14 | 14 |
|
15 | 15 | npm install sendbird --save |
16 | 16 |
|
17 | | -[download](https://github.com/sendbird/SendBird-SDK-JavaScript) for [SendBird.com](https://sendbird.com) JavaScript SDK |
| 17 | +[Download](https://github.com/sendbird/SendBird-SDK-JavaScript) for [SendBird](https://sendbird.com) JavaScript SDK if you wish to use it without a package manager. |
| 18 | + |
| 19 | +> NOTICE! You should also add [axios](https://github.com/axios/axios) library into the `script` tag before the SendBird library inclusion since `v3.0.127`. You can host the library by your own, or utilize the CDN as the library refers to it. The below is an example. |
| 20 | +
|
| 21 | +```html |
| 22 | +<script src="https://unpkg.com/axios/dist/axios.min.js"></script> |
| 23 | +<script src="/your-own-path-to-sendbird/SendBird.min.js"></script> |
| 24 | +``` |
18 | 25 |
|
19 | 26 | # TypeScript |
20 | 27 |
|
@@ -45,12 +52,15 @@ Check out [Basic Sample with SyncManager](https://github.com/sendbird/SendBird-J |
45 | 52 |
|
46 | 53 | # [Documentation](https://docs.sendbird.com/javascript) |
47 | 54 |
|
48 | | -## v3.0.126(JUN 16, 2020) |
| 55 | +## v3.0.127(JUN 26, 2020) |
49 | 56 |
|
50 | 57 | If you want to check the record of other version, go to [Change Log](https://github.com/sendbird/SendBird-SDK-JavaScript/blob/master/CHANGELOG.md). |
51 | 58 |
|
52 | | -- Bug-fixes in message threading. |
53 | | -- Improved stability. |
| 59 | +- Added a dependency for `axios` and `form-data`. |
| 60 | + - Please add [axios](https://github.com/axios/axios) to the `script` tag if you're using SendBird by copy-and-paste the `SendBird.min.js` file. |
| 61 | +- Added `getUnreadMemberCount()` and `getUndeliveredMemberCount()` in `GroupChannel`. |
| 62 | + - Deprecated `getReadReceipt()` and `getDeliveryReceipt()` in `GroupChannel`. |
| 63 | +- Bug-fix in updating operators in `GroupChannel`. |
54 | 64 |
|
55 | 65 | ## [Change Log](https://github.com/sendbird/SendBird-SDK-JavaScript/blob/master/CHANGELOG.md) |
56 | 66 |
|
|
0 commit comments