Skip to content

Commit

Permalink
v0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
davidzhao committed Dec 23, 2021
1 parent e076765 commit b278afa
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ npm install livekit-client --save
Examples below are in TypeScript, if using JS/CommonJS imports replace import with:

```javascript
const LiveKit = require('livekit-client');
const livekit = require('livekit-client');

LiveKit.connect(...);
const room = new livekit.Room(...);
await room.connect(...);
```

### Connecting to a room, publish video & audio
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "livekit-client",
"version": "0.14.3",
"version": "0.15.0",
"description": "JavaScript/TypeScript client SDK for LiveKit",
"main": "dist/index.js",
"source": "src/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/room/track/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export interface TrackPublishDefaults {
audioBitrate?: number;

/**
* dtx (Discontinuous Tranmission of audio), defaults to true
* dtx (Discontinuous Transmission of audio), defaults to true
*/
dtx?: boolean;

Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export const version = '0.14.3';
export const version = '0.15.0';
export const protocolVersion = 5;

0 comments on commit b278afa

Please sign in to comment.