Skip to content

Commit

Permalink
Update packages and changelog (#622)
Browse files Browse the repository at this point in the history
* Update packages and changelog
Prepare 0.6.1 release

* Update another version number
  • Loading branch information
timmydoza committed Dec 17, 2021
1 parent 956497a commit e3f3056
Show file tree
Hide file tree
Showing 4 changed files with 82 additions and 44 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 0.6.1 (December 17, 2021)

### Dependency Upgrades

- `twilio-video` has been upgraded from 2.17.1 to 2.18.2.
- `@twilio/video-room-monitor` has been updated from version `1.0.0-beta.1` to `1.0.0`. The [Twilio Video Room Monitor](https://github.com/twilio/twilio-video-room-monitor.js) is out of beta and is now Generally Available.

### Enhancements

- The Twilio Video Room Monitor can now be used on mobile devices.

## 0.6.0 (September 24, 2021)

### New Feature
Expand Down
74 changes: 56 additions & 18 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "twilio-video-app-react",
"version": "0.6.0",
"version": "0.6.1",
"private": true,
"license": "Apache-2.0",
"dependencies": {
Expand All @@ -9,7 +9,7 @@
"@twilio-labs/plugin-rtc": "^0.8.2",
"@twilio/conversations": "^1.2.3",
"@twilio/video-processors": "^1.0.1",
"@twilio/video-room-monitor": "^1.0.0-beta.1",
"@twilio/video-room-monitor": "^1.0.0",
"@types/d3-timer": "^1.0.9",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
Expand Down Expand Up @@ -43,7 +43,7 @@
"strip-color": "^0.1.0",
"ts-node": "^9.1.1",
"twilio": "^3.63.1",
"twilio-video": "^2.17.1",
"twilio-video": "^2.18.2",
"typescript": "^3.8.3"
},
"devDependencies": {
Expand Down
35 changes: 12 additions & 23 deletions src/components/MenuBar/Menu/Menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,7 @@ import StartRecordingIcon from '../../../icons/StartRecordingIcon';
import StopRecordingIcon from '../../../icons/StopRecordingIcon';
import SearchIcon from '@material-ui/icons/Search';
import SettingsIcon from '../../../icons/SettingsIcon';
import {
Button,
styled,
Theme,
useMediaQuery,
Menu as MenuContainer,
MenuItem,
Typography,
Hidden,
} from '@material-ui/core';
import { Button, styled, Theme, useMediaQuery, Menu as MenuContainer, MenuItem, Typography } from '@material-ui/core';
import { isSupported } from '@twilio/video-processors';

import { useAppState } from '../../../state';
Expand Down Expand Up @@ -130,19 +121,17 @@ export default function Menu(props: { buttonClassName?: string }) {
</MenuItem>
)}

<Hidden smDown>
<MenuItem
onClick={() => {
VideoRoomMonitor.toggleMonitor();
setMenuOpen(false);
}}
>
<IconContainer>
<SearchIcon style={{ fill: '#707578', width: '0.9em' }} />
</IconContainer>
<Typography variant="body1">Room Monitor</Typography>
</MenuItem>
</Hidden>
<MenuItem
onClick={() => {
VideoRoomMonitor.toggleMonitor();
setMenuOpen(false);
}}
>
<IconContainer>
<SearchIcon style={{ fill: '#707578', width: '0.9em' }} />
</IconContainer>
<Typography variant="body1">Room Monitor</Typography>
</MenuItem>

<MenuItem onClick={() => setAboutOpen(true)}>
<IconContainer>
Expand Down

0 comments on commit e3f3056

Please sign in to comment.